blob: b66f77d814094a59751f17d64d5993d0824d27c9 [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 Tarreauf279a2f2023-05-30 15:42:35 +020078 int idle_start; /* date of the last time the connection went idle (no stream + empty mbuf), or the start of current http req */
Willy Tarreau22892322024-01-17 16:57:23 +010079
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 Tarreau22892322024-01-17 16:57:23 +010084 int glitches; /* total number of glitches on this connection */
85
Willy Tarreau0b37d652018-10-03 10:33:02 +020086 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +010087 struct task *task; /* timeout management task */
Amaury Denoyellec92697d2020-10-27 17:16:01 +010088 struct h2_counters *px_counters; /* h2 counters attached to proxy */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020089 struct eb_root streams_by_id; /* all active streams by their ID */
90 struct list send_list; /* list of blocked streams requesting to send */
91 struct list fctl_list; /* list of streams blocked by connection's fctl */
Willy Tarreau9edf6db2019-10-02 10:49:59 +020092 struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */
Willy Tarreau44e973f2018-03-01 17:49:30 +010093 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +020094 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020095};
96
Willy Tarreau2c249eb2019-05-13 18:06:17 +020097
Willy Tarreau18312642017-10-11 07:57:07 +020098/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
Christopher Fauletfafd1b02020-11-03 18:25:52 +010099 * it is being processed in the internal HTTP representation (HTX).
Willy Tarreau18312642017-10-11 07:57:07 +0200100 */
101struct h2s {
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200102 struct sedesc *sd;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100103 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200104 struct h2c *h2c;
Willy Tarreau18312642017-10-11 07:57:07 +0200105 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200106 int32_t id; /* stream ID */
107 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200108 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200109 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
110 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200111 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100112 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200113 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Willy Tarreau4596fe22022-05-17 19:07:51 +0200114 struct wait_event *subs; /* recv wait_event the stream connector associated is waiting on (via h2_subscribe) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200115 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Willy Tarreau5723f292020-01-10 15:16:57 +0100116 struct tasklet *shut_tl; /* deferred shutdown tasklet, to retry to send an RST after we failed to,
117 * in case there's no other subscription to do it */
Amaury Denoyelle74162742020-12-11 17:53:05 +0100118
119 char upgrade_protocol[16]; /* rfc 8441: requested protocol on Extended CONNECT */
Willy Tarreau18312642017-10-11 07:57:07 +0200120};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200121
Willy Tarreauc6405142017-09-21 20:23:50 +0200122/* descriptor for an h2 frame header */
123struct h2_fh {
124 uint32_t len; /* length, host order, 24 bits */
125 uint32_t sid; /* stream id, host order, 31 bits */
126 uint8_t ft; /* frame type */
127 uint8_t ff; /* frame flags */
128};
129
Willy Tarreau12ae2122019-08-08 18:23:12 +0200130/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200131static void h2_trace(enum trace_level level, uint64_t mask, \
132 const struct trace_source *src,
133 const struct ist where, const struct ist func,
134 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200135
136/* The event representation is split like this :
137 * strm - application layer
138 * h2s - internal H2 stream
139 * h2c - internal H2 connection
140 * conn - external connection
141 *
142 */
143static const struct trace_event h2_trace_events[] = {
144#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200145 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200146#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200147 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200148#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200149 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200150#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200151 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200152#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200153 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200154#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200155 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200156#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200157 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200158#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200159 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200160#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200161 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200162#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200163 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200164#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200165 { .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 +0200166#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200167 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200168#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200169 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200170#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200171 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200172#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200173 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200174#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200175 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200176#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200177 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200178#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200179 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200180#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200181 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200182#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200183 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200184#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200185 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200186#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200187 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200188#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200189 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200190#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200191 { .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 +0200192#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200193 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200194#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200195 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200196#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200197 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200198#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200199 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200200#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200201 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200202#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200203 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200204#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200205 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200206#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200207 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200208#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200209 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200210#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200211 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200212#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200213 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200214#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200215 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200216#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200217 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200218#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200219 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200220#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200221 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200222#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200223 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200224#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200225 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200226#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200227 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200228#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200229 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200230#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200231 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200232#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200233 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200234#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200235 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200236#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200237 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200238#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200239 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200240#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200241 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200242#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200243 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200244#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200245 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200246#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200247 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200248 { }
249};
250
251static const struct name_desc h2_trace_lockon_args[4] = {
252 /* arg1 */ { /* already used by the connection */ },
253 /* arg2 */ { .name="h2s", .desc="H2 stream" },
254 /* arg3 */ { },
255 /* arg4 */ { }
256};
257
258static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200259#define H2_VERB_CLEAN 1
260 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
261#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200262 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200263#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200264 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200265#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200266 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200267#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200268 { .name="complete", .desc="add full data dump when available" },
269 { /* end */ }
270};
271
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200272static struct trace_source trace_h2 __read_mostly = {
Willy Tarreau12ae2122019-08-08 18:23:12 +0200273 .name = IST("h2"),
274 .desc = "HTTP/2 multiplexer",
275 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200276 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200277 .known_events = h2_trace_events,
278 .lockon_args = h2_trace_lockon_args,
279 .decoding = h2_trace_decoding,
280 .report_events = ~0, // report everything by default
281};
282
283#define TRACE_SOURCE &trace_h2
284INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
285
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100286/* h2 stats module */
287enum {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100288 H2_ST_HEADERS_RCVD,
289 H2_ST_DATA_RCVD,
290 H2_ST_SETTINGS_RCVD,
291 H2_ST_RST_STREAM_RCVD,
292 H2_ST_GOAWAY_RCVD,
293
Amaury Denoyellea8879232020-10-27 17:16:03 +0100294 H2_ST_CONN_PROTO_ERR,
295 H2_ST_STRM_PROTO_ERR,
296 H2_ST_RST_STREAM_RESP,
297 H2_ST_GOAWAY_RESP,
298
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100299 H2_ST_OPEN_CONN,
300 H2_ST_OPEN_STREAM,
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100301 H2_ST_TOTAL_CONN,
302 H2_ST_TOTAL_STREAM,
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100303
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100304 H2_STATS_COUNT /* must be the last member of the enum */
305};
306
307static struct name_desc h2_stats[] = {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100308 [H2_ST_HEADERS_RCVD] = { .name = "h2_headers_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100309 .desc = "Total number of received HEADERS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100310 [H2_ST_DATA_RCVD] = { .name = "h2_data_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100311 .desc = "Total number of received DATA frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100312 [H2_ST_SETTINGS_RCVD] = { .name = "h2_settings_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100313 .desc = "Total number of received SETTINGS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100314 [H2_ST_RST_STREAM_RCVD] = { .name = "h2_rst_stream_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100315 .desc = "Total number of received RST_STREAM frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100316 [H2_ST_GOAWAY_RCVD] = { .name = "h2_goaway_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100317 .desc = "Total number of received GOAWAY frames" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100318
319 [H2_ST_CONN_PROTO_ERR] = { .name = "h2_detected_conn_protocol_errors",
320 .desc = "Total number of connection protocol errors" },
321 [H2_ST_STRM_PROTO_ERR] = { .name = "h2_detected_strm_protocol_errors",
322 .desc = "Total number of stream protocol errors" },
323 [H2_ST_RST_STREAM_RESP] = { .name = "h2_rst_stream_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100324 .desc = "Total number of RST_STREAM sent on detected error" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100325 [H2_ST_GOAWAY_RESP] = { .name = "h2_goaway_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100326 .desc = "Total number of GOAWAY sent on detected error" },
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100327
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100328 [H2_ST_OPEN_CONN] = { .name = "h2_open_connections",
329 .desc = "Count of currently open connections" },
330 [H2_ST_OPEN_STREAM] = { .name = "h2_backend_open_streams",
331 .desc = "Count of currently open streams" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100332 [H2_ST_TOTAL_CONN] = { .name = "h2_total_connections",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100333 .desc = "Total number of connections" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100334 [H2_ST_TOTAL_STREAM] = { .name = "h2_backend_total_streams",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100335 .desc = "Total number of streams" },
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100336};
337
338static struct h2_counters {
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100339 long long headers_rcvd; /* total number of HEADERS frame received */
340 long long data_rcvd; /* total number of DATA frame received */
341 long long settings_rcvd; /* total number of SETTINGS frame received */
342 long long rst_stream_rcvd; /* total number of RST_STREAM frame received */
343 long long goaway_rcvd; /* total number of GOAWAY frame received */
Amaury Denoyellea8879232020-10-27 17:16:03 +0100344
345 long long conn_proto_err; /* total number of protocol errors detected */
346 long long strm_proto_err; /* total number of protocol errors detected */
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100347 long long rst_stream_resp; /* total number of RST_STREAM frame sent on error */
348 long long goaway_resp; /* total number of GOAWAY frame sent on error */
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100349
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100350 long long open_conns; /* count of currently open connections */
351 long long open_streams; /* count of currently open streams */
352 long long total_conns; /* total number of connections */
353 long long total_streams; /* total number of streams */
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100354} h2_counters;
355
356static void h2_fill_stats(void *data, struct field *stats)
357{
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100358 struct h2_counters *counters = data;
359
360 stats[H2_ST_HEADERS_RCVD] = mkf_u64(FN_COUNTER, counters->headers_rcvd);
361 stats[H2_ST_DATA_RCVD] = mkf_u64(FN_COUNTER, counters->data_rcvd);
362 stats[H2_ST_SETTINGS_RCVD] = mkf_u64(FN_COUNTER, counters->settings_rcvd);
363 stats[H2_ST_RST_STREAM_RCVD] = mkf_u64(FN_COUNTER, counters->rst_stream_rcvd);
364 stats[H2_ST_GOAWAY_RCVD] = mkf_u64(FN_COUNTER, counters->goaway_rcvd);
Amaury Denoyellea8879232020-10-27 17:16:03 +0100365
366 stats[H2_ST_CONN_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->conn_proto_err);
367 stats[H2_ST_STRM_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->strm_proto_err);
368 stats[H2_ST_RST_STREAM_RESP] = mkf_u64(FN_COUNTER, counters->rst_stream_resp);
369 stats[H2_ST_GOAWAY_RESP] = mkf_u64(FN_COUNTER, counters->goaway_resp);
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100370
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100371 stats[H2_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
372 stats[H2_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
373 stats[H2_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
374 stats[H2_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100375}
376
377static struct stats_module h2_stats_module = {
378 .name = "h2",
379 .fill_stats = h2_fill_stats,
380 .stats = h2_stats,
381 .stats_count = H2_STATS_COUNT,
382 .counters = &h2_counters,
383 .counters_size = sizeof(h2_counters),
384 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
385 .clearable = 1,
386};
387
388INITCALL1(STG_REGISTER, stats_register_module, &h2_stats_module);
389
Willy Tarreau8ceae722018-11-26 11:58:30 +0100390/* the h2c connection pool */
391DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
392
393/* the h2s stream pool */
394DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
395
Willy Tarreaudc572362018-12-12 08:08:05 +0100396/* The default connection window size is 65535, it may only be enlarged using
397 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
398 * we'll pretend we already received the difference between the two to send
399 * an equivalent window update to enlarge it to 2G-1.
400 */
401#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
402
Willy Tarreau455d5682019-05-24 19:42:18 +0200403/* maximum amount of data we're OK with re-aligning for buffer optimizations */
404#define MAX_DATA_REALIGN 1024
405
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200406/* a few settings from the global section */
407static int h2_settings_header_table_size = 4096; /* initial value */
Willy Tarreau9d7abda2023-04-17 15:04:34 +0200408static int h2_settings_initial_window_size = 65536; /* default initial value */
409static int h2_be_settings_initial_window_size = 0; /* backend's default initial value */
410static int h2_fe_settings_initial_window_size = 0; /* frontend's default initial value */
Willy Tarreauca1027c2023-04-18 15:57:03 +0200411static unsigned int h2_settings_max_concurrent_streams = 100; /* default value */
412static unsigned int h2_be_settings_max_concurrent_streams = 0; /* backend value */
413static unsigned int h2_fe_settings_max_concurrent_streams = 0; /* frontend value */
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100414static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200415
Willy Tarreau4869ed52023-10-13 18:11:59 +0200416/* other non-protocol settings */
417static unsigned int h2_fe_max_total_streams = 0; /* frontend value */
418
Willy Tarreaub22b5f02022-05-10 14:57:16 +0200419/* a dummy closed endpoint */
Willy Tarreauea59b022022-05-17 17:53:22 +0200420static const struct sedesc closed_ep = {
Willy Tarreauc1054922022-05-18 07:43:52 +0200421 .sc = NULL,
Willy Tarreaub605c422022-05-17 17:04:55 +0200422 .flags = SE_FL_DETACHED,
Willy Tarreaub22b5f02022-05-10 14:57:16 +0200423};
424
Willy Tarreau2a856182017-05-16 15:20:39 +0200425/* a dmumy closed stream */
426static const struct h2s *h2_closed_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200427 .sd = (struct sedesc *)&closed_ep,
Willy Tarreau2a856182017-05-16 15:20:39 +0200428 .h2c = NULL,
429 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100430 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100431 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200432 .id = 0,
433};
434
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100435/* a dmumy closed stream returning a PROTOCOL_ERROR error */
436static const struct h2s *h2_error_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200437 .sd = (struct sedesc *)&closed_ep,
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100438 .h2c = NULL,
439 .st = H2_SS_CLOSED,
440 .errcode = H2_ERR_PROTOCOL_ERROR,
441 .flags = 0,
442 .id = 0,
443};
444
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100445/* a dmumy closed stream returning a REFUSED_STREAM error */
446static const struct h2s *h2_refused_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200447 .sd = (struct sedesc *)&closed_ep,
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100448 .h2c = NULL,
449 .st = H2_SS_CLOSED,
450 .errcode = H2_ERR_REFUSED_STREAM,
451 .flags = 0,
452 .id = 0,
453};
454
Willy Tarreau2a856182017-05-16 15:20:39 +0200455/* and a dummy idle stream for use with any unannounced stream */
456static const struct h2s *h2_idle_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200457 .sd = (struct sedesc *)&closed_ep,
Willy Tarreau2a856182017-05-16 15:20:39 +0200458 .h2c = NULL,
459 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100460 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200461 .id = 0,
462};
463
Willy Tarreaude4a5382023-10-17 08:25:19 +0200464
Willy Tarreau144f84a2021-03-02 16:09:26 +0100465struct task *h2_timeout_task(struct task *t, void *context, unsigned int state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200466static int h2_send(struct h2c *h2c);
467static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200468static int h2_process(struct h2c *h2c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100469/* h2_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100470struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100471static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Willy Tarreau7cfbb812023-01-26 16:02:01 +0100472static 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 +0100473static int h2_frt_transfer_data(struct h2s *h2s);
Willy Tarreau144f84a2021-03-02 16:09:26 +0100474struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state);
Willy Tarreau36c22322022-05-27 10:41:24 +0200475static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct stconn *sc, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100476static void h2s_alert(struct h2s *h2s);
Willy Tarreaude4a5382023-10-17 08:25:19 +0200477static inline void h2_remove_from_list(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200478
Willy Tarreau7be4ee02022-05-18 07:31:41 +0200479/* returns the stconn associated to the H2 stream */
480static forceinline struct stconn *h2s_sc(const struct h2s *h2s)
481{
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200482 return h2s->sd->sc;
Willy Tarreau7be4ee02022-05-18 07:31:41 +0200483}
484
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200485/* the H2 traces always expect that arg1, if non-null, is of type connection
486 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
487 * that arg3, if non-null, is either of type htx for tx headers, or of type
488 * buffer for everything else.
489 */
490static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
491 const struct ist where, const struct ist func,
492 const void *a1, const void *a2, const void *a3, const void *a4)
493{
494 const struct connection *conn = a1;
495 const struct h2c *h2c = conn ? conn->ctx : NULL;
496 const struct h2s *h2s = a2;
497 const struct buffer *buf = a3;
498 const struct htx *htx;
499 int pos;
500
501 if (!h2c) // nothing to add
502 return;
503
Willy Tarreau17104d42019-08-30 07:12:55 +0200504 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200505 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
506
Willy Tarreau8e6f7492021-06-16 17:47:24 +0200507 if (mask & H2_EV_H2C_NEW) // inside h2_init, otherwise it's hard to match conn & h2c
508 conn_append_debug_info(&trace_buf, conn, " : ");
509
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100510 if (h2c->errcode)
511 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
512
Willy Tarreau22892322024-01-17 16:57:23 +0100513 if (h2c->glitches)
514 chunk_appendf(&trace_buf, " glitches=%d", h2c->glitches);
515
Willy Tarreau0f458712022-08-18 11:19:57 +0200516 if (h2c->flags & H2_CF_DEM_IN_PROGRESS && // frame processing has started, type and length are valid
Willy Tarreau73db4342019-09-25 07:28:44 +0200517 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
Willy Tarreau8520d872020-09-18 07:39:29 +0200518 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 +0200519 }
520
521 if (h2s) {
522 if (h2s->id <= 0)
523 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
Willy Tarreauf9f44992023-02-20 16:57:47 +0100524 if (h2s == h2_idle_stream)
525 chunk_appendf(&trace_buf, " h2s=IDL");
Willy Tarreau4ba6f9e2023-10-20 17:32:13 +0200526 else if (h2s != h2_closed_stream && h2s != h2_refused_stream && h2s != h2_error_stream)
Willy Tarreauf9f44992023-02-20 16:57:47 +0100527 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreau4ba6f9e2023-10-20 17:32:13 +0200528 else if (h2c->dsi > 0) // don't show that before sid is known
529 chunk_appendf(&trace_buf, " h2s=CLO");
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100530 if (h2s->id && h2s->errcode)
531 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200532 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200533 }
534
535 /* Let's dump decoded requests and responses right after parsing. They
536 * are traced at level USER with a few recognizable flags.
537 */
538 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
539 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
540 htx = htxbuf(buf); // recv req/res
541 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
542 htx = a3; // send req/res
543 else
544 htx = NULL;
545
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200546 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200547 const struct htx_blk *blk = htx_get_blk(htx, pos);
548 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
549 enum htx_blk_type type = htx_get_blk_type(blk);
550
551 if (type == HTX_BLK_REQ_SL)
552 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200553 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200554 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
555 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
556 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
557 else if (type == HTX_BLK_RES_SL)
558 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200559 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200560 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
561 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
562 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
563 }
564}
565
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200566
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100567/* Detect a pending read0 for a H2 connection. It happens if a read0 was
568 * already reported on a previous xprt->rcvbuf() AND a frame parser failed
569 * to parse pending data, confirming no more progress is possible because
570 * we're facing a truncated frame. The function returns 1 to report a read0
571 * or 0 otherwise.
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200572 */
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100573static inline int h2c_read0_pending(struct h2c *h2c)
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200574{
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100575 return !!(h2c->flags & H2_CF_END_REACHED);
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200576}
577
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200578/* returns true if the connection is allowed to expire, false otherwise. A
Willy Tarreau34395832022-03-18 14:59:54 +0100579 * connection may expire when it has no attached streams. As long as streams
580 * are attached, the application layer is responsible for timeout management,
581 * and each layer will detach when it doesn't want to wait anymore. When the
582 * last one leaves, the connection must take over timeout management.
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200583 */
584static inline int h2c_may_expire(const struct h2c *h2c)
585{
Willy Tarreau36c22322022-05-27 10:41:24 +0200586 return !h2c->nb_sc;
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200587}
588
Willy Tarreauca1027c2023-04-18 15:57:03 +0200589/* returns the number of max concurrent streams permitted on a connection,
590 * depending on its side (frontend or backend), falling back to the default
591 * h2_settings_max_concurrent_streams. It may even be zero.
592 */
593static inline int h2c_max_concurrent_streams(const struct h2c *h2c)
594{
595 int ret;
596
597 ret = (h2c->flags & H2_CF_IS_BACK) ?
598 h2_be_settings_max_concurrent_streams :
599 h2_fe_settings_max_concurrent_streams;
600
601 ret = ret ? ret : h2_settings_max_concurrent_streams;
602 return ret;
603}
604
Willy Tarreauf0279f62024-03-11 07:35:19 +0100605/* report one or more glitches on the connection. That is any unexpected event
606 * that may occasionally happen but if repeated a bit too much, might indicate
607 * a misbehaving or completely bogus peer.
Willy Tarreau22892322024-01-17 16:57:23 +0100608 */
Willy Tarreauf0279f62024-03-11 07:35:19 +0100609static inline void h2c_report_glitch(struct h2c *h2c, int increment)
Willy Tarreau22892322024-01-17 16:57:23 +0100610{
Willy Tarreauf0279f62024-03-11 07:35:19 +0100611 h2c->glitches += increment;
Willy Tarreau22892322024-01-17 16:57:23 +0100612}
Willy Tarreauca1027c2023-04-18 15:57:03 +0200613
Willy Tarreau15a47332022-03-18 15:57:34 +0100614/* update h2c timeout if needed */
615static void h2c_update_timeout(struct h2c *h2c)
616{
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200617 int is_idle_conn = 0;
618
Willy Tarreau15a47332022-03-18 15:57:34 +0100619 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
620
621 if (!h2c->task)
622 goto leave;
623
624 if (h2c_may_expire(h2c)) {
625 /* no more streams attached */
Willy Tarreaud38d8c62023-05-15 11:28:48 +0200626 if (br_data(h2c->mbuf)) {
Willy Tarreau15a47332022-03-18 15:57:34 +0100627 /* pending output data: always the regular data timeout */
628 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
Willy Tarreaud38d8c62023-05-15 11:28:48 +0200629 } else {
630 /* no stream, no output data */
631 if (!(h2c->flags & H2_CF_IS_BACK)) {
632 int to;
Willy Tarreau86b08a32022-04-13 17:40:28 +0200633
Willy Tarreaud38d8c62023-05-15 11:28:48 +0200634 if (h2c->max_id > 0 && !b_data(&h2c->dbuf) &&
635 tick_isset(h2c->proxy->timeout.httpka)) {
636 /* idle after having seen one stream => keep-alive */
637 to = h2c->proxy->timeout.httpka;
638 } else {
639 /* before first request, or started to deserialize a
640 * new req => http-request.
641 */
642 to = h2c->proxy->timeout.httpreq;
643 }
Willy Tarreau86b08a32022-04-13 17:40:28 +0200644
Willy Tarreaud38d8c62023-05-15 11:28:48 +0200645 h2c->task->expire = tick_add_ifset(h2c->idle_start, to);
646 is_idle_conn = 1;
647 }
648
649 if (h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED)) {
650 /* GOAWAY sent (or failed), closing in progress */
651 int exp = tick_add_ifset(now_ms, h2c->shut_timeout);
652
653 h2c->task->expire = tick_first(h2c->task->expire, exp);
654 is_idle_conn = 1;
655 }
656
657 /* if a timeout above was not set, fall back to the default one */
658 if (!tick_isset(h2c->task->expire))
659 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
Willy Tarreau15a47332022-03-18 15:57:34 +0100660 }
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200661
662 if ((h2c->proxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) &&
663 is_idle_conn && tick_isset(global.close_spread_end)) {
664 /* If a soft-stop is in progress and a close-spread-time
665 * is set, we want to spread idle connection closing roughly
666 * evenly across the defined window. This should only
667 * act on idle frontend connections.
668 * If the window end is already in the past, we wake the
669 * timeout task up immediately so that it can be closed.
670 */
671 int remaining_window = tick_remain(now_ms, global.close_spread_end);
672 if (remaining_window) {
673 /* We don't need to reset the expire if it would
674 * already happen before the close window end.
675 */
676 if (tick_isset(h2c->task->expire) &&
677 tick_is_le(global.close_spread_end, h2c->task->expire)) {
678 /* Set an expire value shorter than the current value
679 * because the close spread window end comes earlier.
680 */
681 h2c->task->expire = tick_add(now_ms, statistical_prng_range(remaining_window));
682 }
683 }
684 else {
685 /* We are past the soft close window end, wake the timeout
686 * task up immediately.
687 */
688 task_wakeup(h2c->task, TASK_WOKEN_TIMER);
689 }
690 }
691
Willy Tarreau15a47332022-03-18 15:57:34 +0100692 } else {
693 h2c->task->expire = TICK_ETERNITY;
694 }
695 task_queue(h2c->task);
696 leave:
697 TRACE_LEAVE(H2_EV_H2C_WAKE);
698}
699
Olivier Houchard7a977432019-03-21 15:47:13 +0100700static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200701h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100702{
703 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
Christopher Fauletff7925d2022-10-11 19:12:40 +0200704 ((h2c->flags & H2_CF_ERROR) || /* errors close immediately */
Christopher Faulet21fb6bd2023-03-28 12:16:53 +0200705 (h2c->flags & H2_CF_ERR_PENDING && h2c->st0 < H2_CS_FRAME_H) || /* early error during connect */
Olivier Houchard7a977432019-03-21 15:47:13 +0100706 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
707 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200708 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Christopher Fauletff7925d2022-10-11 19:12:40 +0200709 ((h2c->flags & H2_CF_RCVD_SHUT) ||
Olivier Houchard7a977432019-03-21 15:47:13 +0100710 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
711 return 1;
712
713 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100714}
715
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200716/*****************************************************/
717/* functions below are for dynamic buffer management */
718/*****************************************************/
719
Willy Tarreau315d8072017-12-10 22:17:57 +0100720/* indicates whether or not the we may call the h2_recv() function to attempt
721 * to receive data into the buffer and/or demux pending data. The condition is
722 * a bit complex due to some API limits for now. The rules are the following :
723 * - if an error or a shutdown was detected on the connection and the buffer
724 * is empty, we must not attempt to receive
725 * - if the demux buf failed to be allocated, we must not try to receive and
726 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100727 * - if no flag indicates a blocking condition, we may attempt to receive,
728 * regardless of whether the demux buffer is full or not, so that only
729 * de demux part decides whether or not to block. This is needed because
730 * the connection API indeed prevents us from re-enabling receipt that is
731 * already enabled in a polled state, so we must always immediately stop
732 * as soon as the demux can't proceed so as never to hit an end of read
733 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100734 * - otherwise must may not attempt
735 */
736static inline int h2_recv_allowed(const struct h2c *h2c)
737{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200738 if (b_data(&h2c->dbuf) == 0 &&
Christopher Fauletff7925d2022-10-11 19:12:40 +0200739 ((h2c->flags & (H2_CF_RCVD_SHUT|H2_CF_ERROR)) || h2c->st0 >= H2_CS_ERROR))
Willy Tarreau315d8072017-12-10 22:17:57 +0100740 return 0;
741
742 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100743 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100744 return 1;
745
746 return 0;
747}
748
Willy Tarreau47b515a2018-12-21 16:09:41 +0100749/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200750static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100751{
752 if (!h2_recv_allowed(h2c))
753 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200754 if ((!consider_buffer || !b_data(&h2c->dbuf))
755 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100756 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200757 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100758}
759
760
Willy Tarreau4596fe22022-05-17 19:07:51 +0200761/* returns true if the front connection has too many stream connectors attached */
Willy Tarreau36c22322022-05-27 10:41:24 +0200762static inline int h2_frt_has_too_many_sc(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200763{
Willy Tarreauca1027c2023-04-18 15:57:03 +0200764 return h2c->nb_sc > h2c_max_concurrent_streams(h2c);
Willy Tarreauf2101912018-07-19 10:11:38 +0200765}
766
Willy Tarreau44e973f2018-03-01 17:49:30 +0100767/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
768 * flags are used to figure what buffer was requested. It returns 1 if the
769 * allocation succeeds, in which case the connection is woken up, or 0 if it's
770 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200771 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100772static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200773{
774 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100775 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200776
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100777 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc(&h2c->dbuf)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200778 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200779 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200780 return 1;
781 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200782
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100783 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc(br_tail(h2c->mbuf))) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100784 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200785
786 if (h2c->flags & H2_CF_DEM_MROOM) {
787 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200788 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200789 }
Willy Tarreau14398122017-09-22 14:26:04 +0200790 return 1;
791 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100792
793 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
Willy Tarreau7be4ee02022-05-18 07:31:41 +0200794 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s_sc(h2s) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100795 b_alloc(&h2s->rxbuf)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100796 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200797 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100798 return 1;
799 }
800
Willy Tarreau14398122017-09-22 14:26:04 +0200801 return 0;
802}
803
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200804static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200805{
806 struct buffer *buf = NULL;
807
Willy Tarreau2b718102021-04-21 07:32:39 +0200808 if (likely(!LIST_INLIST(&h2c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100809 unlikely((buf = b_alloc(bptr)) == NULL)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100810 h2c->buf_wait.target = h2c;
811 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreaub4e34762021-09-30 19:02:18 +0200812 LIST_APPEND(&th_ctx->buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200813 }
814 return buf;
815}
816
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200817static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200818{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200819 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100820 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100821 offer_buffers(NULL, 1);
Willy Tarreau14398122017-09-22 14:26:04 +0200822 }
823}
824
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200825static inline void h2_release_mbuf(struct h2c *h2c)
826{
827 struct buffer *buf;
828 unsigned int count = 0;
829
830 while (b_size(buf = br_head_pick(h2c->mbuf))) {
831 b_free(buf);
832 count++;
833 }
834 if (count)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100835 offer_buffers(NULL, count);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200836}
837
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100838/* returns the number of allocatable outgoing streams for the connection taking
839 * the last_sid and the reserved ones into account.
840 */
841static inline int h2_streams_left(const struct h2c *h2c)
842{
843 int ret;
844
845 /* consider the number of outgoing streams we're allowed to create before
846 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
847 * nb_reserved is the number of streams which don't yet have an ID.
848 */
849 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
850 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
851 if (ret < 0)
852 ret = 0;
853 return ret;
854}
855
Willy Tarreau00f18a32019-01-26 12:19:01 +0100856/* returns the number of streams in use on a connection to figure if it's
Willy Tarreau36c22322022-05-27 10:41:24 +0200857 * idle or not. We check nb_sc and not nb_streams as the caller will want
Willy Tarreau00f18a32019-01-26 12:19:01 +0100858 * to know if it was the last one after a detach().
859 */
860static int h2_used_streams(struct connection *conn)
861{
862 struct h2c *h2c = conn->ctx;
863
Willy Tarreau36c22322022-05-27 10:41:24 +0200864 return h2c->nb_sc;
Willy Tarreau00f18a32019-01-26 12:19:01 +0100865}
866
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100867/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100868static int h2_avail_streams(struct connection *conn)
869{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100870 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100871 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100872 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100873
Willy Tarreau6afec462019-01-28 06:40:19 +0100874 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
875 * streams on the connection.
876 */
877 if (h2c->last_sid >= 0)
878 return 0;
879
Willy Tarreauc61966f2019-10-31 15:10:03 +0100880 if (h2c->st0 >= H2_CS_ERROR)
881 return 0;
882
Willy Tarreau86949782019-01-31 10:42:05 +0100883 /* note: may be negative if a SETTINGS frame changes the limit */
884 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100885
886 /* we must also consider the limit imposed by stream IDs */
887 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100888 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100889 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100890 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
891 ret1 = MIN(ret1, ret2);
892 }
893 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100894}
895
Ilya Shipitsin07be66d2023-04-01 12:26:42 +0200896/* Unconditionally produce a trace of the header. Please do not call this one
Willy Tarreau11e8a8c2023-01-24 19:43:11 +0100897 * and use h2_trace_header() instead which first checks if traces are enabled.
898 */
899void _h2_trace_header(const struct ist hn, const struct ist hv,
900 uint64_t mask, const struct ist trc_loc, const char *func,
901 const struct h2c *h2c, const struct h2s *h2s)
902{
903 struct ist n_ist, v_ist;
904 const char *c_str, *s_str;
905
906 chunk_reset(&trash);
907 c_str = chunk_newstr(&trash);
908 if (h2c) {
909 chunk_appendf(&trash, "h2c=%p(%c,%s) ",
910 h2c, (h2c->flags & H2_CF_IS_BACK) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
911 }
912
913 s_str = chunk_newstr(&trash);
914 if (h2s) {
915 if (h2s->id <= 0)
916 chunk_appendf(&trash, "dsi=%d ", h2s->h2c->dsi);
917 chunk_appendf(&trash, "h2s=%p(%d,%s) ", h2s, h2s->id, h2s_st_to_str(h2s->st));
918 }
919 else if (h2c)
920 chunk_appendf(&trash, "dsi=%d ", h2c->dsi);
921
922 n_ist = ist2(chunk_newstr(&trash), 0);
923 istscpy(&n_ist, hn, 256);
924 trash.data += n_ist.len;
925 if (n_ist.len != hn.len)
926 chunk_appendf(&trash, " (... +%ld)", (long)(hn.len - n_ist.len));
927
928 v_ist = ist2(chunk_newstr(&trash), 0);
929 istscpy(&v_ist, hv, 1024);
930 trash.data += v_ist.len;
931 if (v_ist.len != hv.len)
932 chunk_appendf(&trash, " (... +%ld)", (long)(hv.len - v_ist.len));
933
934 TRACE_PRINTF_LOC(TRACE_LEVEL_USER, mask, trc_loc, func,
Christopher Fauletc2545162023-01-30 08:26:09 +0100935 (h2c ? h2c->conn : 0), 0, 0, 0,
Willy Tarreau11e8a8c2023-01-24 19:43:11 +0100936 "%s%s%s %s: %s", c_str, s_str,
937 (mask & H2_EV_TX_HDR) ? "sndh" : "rcvh",
938 n_ist.ptr, v_ist.ptr);
939}
940
941/* produce a trace of the header after checking that tracing is enabled */
942static inline void h2_trace_header(const struct ist hn, const struct ist hv,
943 uint64_t mask, const struct ist trc_loc, const char *func,
944 const struct h2c *h2c, const struct h2s *h2s)
945{
946 if ((TRACE_SOURCE)->verbosity >= H2_VERB_ADVANCED &&
947 TRACE_ENABLED(TRACE_LEVEL_USER, mask, h2c ? h2c->conn : 0, h2s, 0, 0))
948 _h2_trace_header(hn, hv, mask, trc_loc, func, h2c, h2s);
949}
950
951/* hpack-encode header name <hn> and value <hv>, possibly emitting a trace if
952 * currently enabled. This is done on behalf of function <func> at <trc_loc>
953 * passed as ist(TRC_LOC), h2c <h2c>, and h2s <h2s>, all of which may be NULL.
954 * The trace is only emitted if the header is emitted (in which case non-zero
955 * is returned). The trash is modified. In the traces, the header's name will
956 * be truncated to 256 chars and the header's value to 1024 chars.
957 */
958static inline int h2_encode_header(struct buffer *buf, const struct ist hn, const struct ist hv,
959 uint64_t mask, const struct ist trc_loc, const char *func,
960 const struct h2c *h2c, const struct h2s *h2s)
961{
962 int ret;
963
964 ret = hpack_encode_header(buf, hn, hv);
965 if (ret)
966 h2_trace_header(hn, hv, mask, trc_loc, func, h2c, h2s);
967
968 return ret;
969}
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200970
Willy Tarreau62f52692017-10-08 23:01:42 +0200971/*****************************************************************/
972/* functions below are dedicated to the mux setup and management */
973/*****************************************************************/
974
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200975/* Initialize the mux once it's attached. For outgoing connections, the context
976 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200977 * connections from the fact that the context is still NULL (even during mux
978 * upgrades). <input> is always used as Input buffer and may contain data. It is
979 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200980 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200981static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
982 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200983{
984 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100985 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200986 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200987
Christopher Fauletf81ef032019-10-04 15:19:43 +0200988 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200989
Willy Tarreaubafbe012017-11-24 17:34:44 +0100990 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200991 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200992 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200993
Christopher Faulete9b70722019-04-08 10:46:02 +0200994 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200995 h2c->flags = H2_CF_IS_BACK;
996 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
997 if (tick_isset(prx->timeout.serverfin))
998 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100999
1000 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
1001 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +02001002 } else {
1003 h2c->flags = H2_CF_NONE;
1004 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
1005 if (tick_isset(prx->timeout.clientfin))
1006 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +01001007
1008 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
1009 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +02001010 }
Willy Tarreau3f133572017-10-31 19:21:06 +01001011
Willy Tarreau0b37d652018-10-03 10:33:02 +02001012 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +01001013 h2c->task = NULL;
Willy Tarreau389ab0d2023-03-20 19:16:04 +01001014 h2c->wait_event.tasklet = NULL;
Willy Tarreau15a47332022-03-18 15:57:34 +01001015 h2c->idle_start = now_ms;
Willy Tarreau3f133572017-10-31 19:21:06 +01001016 if (tick_isset(h2c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02001017 t = task_new_here();
Willy Tarreau3f133572017-10-31 19:21:06 +01001018 if (!t)
1019 goto fail;
1020
1021 h2c->task = t;
1022 t->process = h2_timeout_task;
1023 t->context = h2c;
1024 t->expire = tick_add(now_ms, h2c->timeout);
1025 }
Willy Tarreauea392822017-10-31 10:02:25 +01001026
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001027 h2c->wait_event.tasklet = tasklet_new();
1028 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +02001029 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001030 h2c->wait_event.tasklet->process = h2_io_cb;
1031 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001032 h2c->wait_event.events = 0;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001033 if (!conn_is_back(conn)) {
1034 /* Connection might already be in the stopping_list if subject
1035 * to h1->h2 upgrade.
1036 */
1037 if (!LIST_INLIST(&conn->stopping_list)) {
1038 LIST_APPEND(&mux_stopping_data[tid].list,
1039 &conn->stopping_list);
1040 }
1041 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02001042
Willy Tarreau2bdcc702020-05-19 11:31:11 +02001043 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +02001044 if (!h2c->ddht)
1045 goto fail;
1046
1047 /* Initialise the context. */
1048 h2c->st0 = H2_CS_PREFACE;
1049 h2c->conn = conn;
Willy Tarreauca1027c2023-04-18 15:57:03 +02001050 h2c->streams_limit = h2c_max_concurrent_streams(h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001051 h2c->max_id = -1;
1052 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +01001053 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001054 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +01001055 h2c->nb_streams = 0;
Willy Tarreau36c22322022-05-27 10:41:24 +02001056 h2c->nb_sc = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001057 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001058 h2c->stream_cnt = 0;
Willy Tarreau22892322024-01-17 16:57:23 +01001059 h2c->glitches = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001060
Christopher Faulet51f73eb2019-04-08 11:22:47 +02001061 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001062 h2c->dsi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001063
Willy Tarreau32218eb2017-09-22 08:07:25 +02001064 h2c->last_sid = -1;
1065
Willy Tarreau51330962019-05-26 09:38:07 +02001066 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +02001067 h2c->miw = 65535; /* mux initial window size */
1068 h2c->mws = 65535; /* mux window size */
1069 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +02001070 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001071 LIST_INIT(&h2c->send_list);
1072 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02001073 LIST_INIT(&h2c->blocked_list);
Willy Tarreau90f366b2021-02-20 11:49:49 +01001074 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001075
Christopher Fauletf81ef032019-10-04 15:19:43 +02001076 conn->ctx = h2c;
1077
Willy Tarreau8e6f7492021-06-16 17:47:24 +02001078 TRACE_USER("new H2 connection", H2_EV_H2C_NEW, conn);
1079
Willy Tarreau3f133572017-10-31 19:21:06 +01001080 if (t)
1081 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +01001082
Willy Tarreau01b44822018-10-03 14:26:37 +02001083 if (h2c->flags & H2_CF_IS_BACK) {
1084 /* FIXME: this is temporary, for outgoing connections we need
1085 * to immediately allocate a stream until the code is modified
Willy Tarreau36c22322022-05-27 10:41:24 +02001086 * so that the caller calls ->attach(). For now the outgoing sc
Christopher Fauletf81ef032019-10-04 15:19:43 +02001087 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +02001088 */
1089 struct h2s *h2s;
1090
Christopher Fauletf81ef032019-10-04 15:19:43 +02001091 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +02001092 if (!h2s)
1093 goto fail_stream;
1094 }
1095
Frédéric Lécaille9969adb2023-01-18 11:52:21 +01001096 proxy_inc_fe_cum_sess_ver_ctr(sess->listener, prx, 2);
Willy Tarreau4781b152021-04-06 13:53:36 +02001097 HA_ATOMIC_INC(&h2c->px_counters->open_conns);
1098 HA_ATOMIC_INC(&h2c->px_counters->total_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001099
Willy Tarreau0f383582018-10-03 14:22:21 +02001100 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02001101 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001102 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001103 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +02001104 fail_stream:
1105 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +02001106 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001107 task_destroy(t);
Tim Duesterhusb1ec21d2023-04-22 17:47:32 +02001108 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001109 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +02001110 fail_no_h2c:
Willy Tarreau3b990fe2022-01-12 17:24:26 +01001111 if (!conn_is_back(conn))
1112 LIST_DEL_INIT(&conn->stopping_list);
Christopher Fauletf81ef032019-10-04 15:19:43 +02001113 conn->ctx = conn_ctx; /* restore saved ctx */
1114 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001115 return -1;
1116}
1117
Willy Tarreau751f2d02018-10-05 09:35:00 +02001118/* returns the next allocatable outgoing stream ID for the H2 connection, or
1119 * -1 if no more is allocatable.
1120 */
1121static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1122{
1123 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001124
1125 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001126 id = -1;
1127 return id;
1128}
1129
Willy Tarreau2373acc2017-10-12 17:35:14 +02001130/* returns the stream associated with id <id> or NULL if not found */
1131static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1132{
1133 struct eb32_node *node;
1134
Willy Tarreau751f2d02018-10-05 09:35:00 +02001135 if (id == 0)
1136 return (struct h2s *)h2_closed_stream;
1137
Willy Tarreau2a856182017-05-16 15:20:39 +02001138 if (id > h2c->max_id)
1139 return (struct h2s *)h2_idle_stream;
1140
Willy Tarreau2373acc2017-10-12 17:35:14 +02001141 node = eb32_lookup(&h2c->streams_by_id, id);
1142 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001143 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001144
1145 return container_of(node, struct h2s, by_id);
1146}
1147
Christopher Faulet73c12072019-04-08 11:23:22 +02001148/* release function. This one should be called to free all resources allocated
1149 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001150 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001151static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001152{
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001153 struct connection *conn = h2c->conn;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001154
Willy Tarreau7838a792019-08-12 18:42:03 +02001155 TRACE_ENTER(H2_EV_H2C_END);
1156
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001157 hpack_dht_free(h2c->ddht);
Christopher Faulet61840e72019-04-15 09:33:32 +02001158
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001159 if (LIST_INLIST(&h2c->buf_wait.list))
1160 LIST_DEL_INIT(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001161
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001162 h2_release_buf(h2c, &h2c->dbuf);
1163 h2_release_mbuf(h2c);
Willy Tarreau14398122017-09-22 14:26:04 +02001164
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001165 if (h2c->task) {
1166 h2c->task->context = NULL;
1167 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
1168 h2c->task = NULL;
1169 }
Tim Duesterhusb1ec21d2023-04-22 17:47:32 +02001170 tasklet_free(h2c->wait_event.tasklet);
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001171 if (conn && h2c->wait_event.events != 0)
1172 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
1173 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001174
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001175 HA_ATOMIC_DEC(&h2c->px_counters->open_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001176
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001177 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001178
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001179 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001180 if (!conn_is_back(conn))
1181 LIST_DEL_INIT(&conn->stopping_list);
1182
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001183 conn->mux = NULL;
1184 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001185 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001186
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001187 conn_stop_tracking(conn);
Willy Tarreau0b222472021-10-21 22:24:31 +02001188
1189 /* there might be a GOAWAY frame still pending in the TCP
1190 * stack, and if the peer continues to send (i.e. window
1191 * updates etc), this can result in losing the GOAWAY. For
1192 * this reason we try to drain anything received in between.
1193 */
1194 conn->flags |= CO_FL_WANT_DRAIN;
1195
1196 conn_xprt_shutw(conn);
1197 conn_xprt_close(conn);
1198 conn_sock_shutw(conn, !conn_is_back(conn));
1199 conn_ctrl_close(conn);
1200
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001201 if (conn->destroy_cb)
1202 conn->destroy_cb(conn);
1203 conn_free(conn);
1204 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001205
1206 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001207}
1208
1209
Willy Tarreau71681172017-10-23 14:39:06 +02001210/******************************************************/
1211/* functions below are for the H2 protocol processing */
1212/******************************************************/
1213
1214/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001215static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001216{
1217 return h2s ? h2s->id : 0;
1218}
1219
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001220/* returns the sum of the stream's own window size and the mux's initial
1221 * window, which together form the stream's effective window size.
1222 */
1223static inline int h2s_mws(const struct h2s *h2s)
1224{
1225 return h2s->sws + h2s->h2c->miw;
1226}
1227
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001228/* marks an error on the connection. Before settings are sent, we must not send
1229 * a GOAWAY frame, and the error state will prevent h2c_send_goaway_error()
1230 * from verifying this so we set H2_CF_GOAWAY_FAILED to make sure it will not
1231 * even try.
1232 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001233static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001234{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001235 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001236 h2c->errcode = err;
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001237 if (h2c->st0 < H2_CS_SETTINGS1)
1238 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau741d6df2017-10-17 08:00:59 +02001239 h2c->st0 = H2_CS_ERROR;
1240}
1241
Willy Tarreau175cebb2019-01-24 10:02:24 +01001242/* marks an error on the stream. It may also update an already closed stream
1243 * (e.g. to report an error after an RST was received).
1244 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001245static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001246{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001247 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001248 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001249 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001250 if (h2s->st < H2_SS_ERROR)
1251 h2s->st = H2_SS_ERROR;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001252 se_fl_set_error(h2s->sd);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001253 }
1254}
1255
Willy Tarreau7e094452018-12-19 18:08:52 +01001256/* attempt to notify the data layer of recv availability */
1257static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1258{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001259 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001260 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001261 tasklet_wakeup(h2s->subs->tasklet);
1262 h2s->subs->events &= ~SUB_RETRY_RECV;
1263 if (!h2s->subs->events)
1264 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001265 }
1266}
1267
1268/* attempt to notify the data layer of send availability */
1269static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1270{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001271 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001272 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001273 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001274 tasklet_wakeup(h2s->subs->tasklet);
1275 h2s->subs->events &= ~SUB_RETRY_SEND;
1276 if (!h2s->subs->events)
1277 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001278 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001279 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1280 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1281 tasklet_wakeup(h2s->shut_tl);
1282 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001283}
1284
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001285/* alerts the data layer, trying to wake it up by all means, following
1286 * this sequence :
1287 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1288 * - if its subscribed to send, then it's woken up for send
1289 * - if it was subscribed to neither, its ->wake() callback is called
1290 * It is safe to call this function with a closed stream which doesn't have a
Willy Tarreau4596fe22022-05-17 19:07:51 +02001291 * stream connector anymore.
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001292 */
1293static void __maybe_unused h2s_alert(struct h2s *h2s)
1294{
Willy Tarreau7838a792019-08-12 18:42:03 +02001295 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1296
Willy Tarreauf96508a2020-01-10 11:12:48 +01001297 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001298 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001299 h2s_notify_recv(h2s);
1300 h2s_notify_send(h2s);
1301 }
Willy Tarreau2f2318d2022-05-18 10:17:16 +02001302 else if (h2s_sc(h2s) && h2s_sc(h2s)->app_ops->wake != NULL) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001303 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau2f2318d2022-05-18 10:17:16 +02001304 h2s_sc(h2s)->app_ops->wake(h2s_sc(h2s));
Willy Tarreau7838a792019-08-12 18:42:03 +02001305 }
1306
1307 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001308}
1309
Willy Tarreaue4820742017-07-27 13:37:23 +02001310/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001311static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001312{
1313 uint8_t *out = frame;
1314
1315 *out = len >> 16;
1316 write_n16(out + 1, len);
1317}
1318
Willy Tarreau54c15062017-10-10 17:10:03 +02001319/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1320 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1321 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001322 * available in the buffer's input prior to calling this function. The buffer
1323 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001324 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001325static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001326 const struct buffer *b, int o)
1327{
Willy Tarreau591d4452018-06-15 17:21:00 +02001328 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 +02001329}
1330
Willy Tarreau1f094672017-11-20 21:27:45 +01001331static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001332{
Willy Tarreau591d4452018-06-15 17:21:00 +02001333 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001334}
1335
Willy Tarreau1f094672017-11-20 21:27:45 +01001336static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001337{
Willy Tarreau591d4452018-06-15 17:21:00 +02001338 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001339}
1340
Willy Tarreau1f094672017-11-20 21:27:45 +01001341static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001342{
Willy Tarreau591d4452018-06-15 17:21:00 +02001343 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001344}
1345
1346
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001347/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1348 * The algorithm is not obvious. It turns out that H2 headers are neither
1349 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1350 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001351 *
1352 * b0 b1 b2 b3 b4 b5..b8
1353 * +----------+---------+--------+----+----+----------------------+
1354 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1355 * +----------+---------+--------+----+----+----------------------+
1356 *
1357 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1358 * we get the sid properly aligned and ordered, and 16 bits of len properly
1359 * ordered as well. The type and flags can be extracted using bit shifts from
1360 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001361 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1362 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001363 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001364static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001365{
1366 uint64_t w;
1367
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001368 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001369 return 0;
1370
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001371 w = h2_get_n64(b, o + 1);
1372 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001373 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1374 h->ff = w >> 32;
1375 h->ft = w >> 40;
1376 h->len += w >> 48;
1377 return 1;
1378}
1379
1380/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1381 * h2_peek_frame_hdr() above.
1382 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001383static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001384{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001385 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001386}
1387
1388/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001389static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001390{
1391 int ret;
1392
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001393 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001394 if (ret > 0)
1395 h2_skip_frame_hdr(b);
1396 return ret;
1397}
1398
Willy Tarreaucb985a42019-10-07 16:56:34 +02001399
1400/* try to fragment the headers frame present at the beginning of buffer <b>,
1401 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1402 * success. Typical causes of failure include a buffer not large enough to
1403 * add extra frame headers. The existing frame size is read in the current
1404 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1405 * and its length will be adjusted. The stream ID for continuation frames will
1406 * be copied from the initial frame's.
1407 */
1408static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1409{
1410 size_t remain = b->data - 9;
1411 int extra_frames = (remain - 1) / mfs;
1412 size_t fsize;
1413 char *fptr;
1414 int frame;
1415
1416 if (b->data <= mfs + 9)
1417 return 1;
1418
1419 /* Too large a frame, we need to fragment it using CONTINUATION
1420 * frames. We start from the end and move tails as needed.
1421 */
1422 if (b->data + extra_frames * 9 > b->size)
1423 return 0;
1424
1425 for (frame = extra_frames; frame; frame--) {
1426 fsize = ((remain - 1) % mfs) + 1;
1427 remain -= fsize;
1428
1429 /* move data */
1430 fptr = b->area + 9 + remain + (frame - 1) * 9;
1431 memmove(fptr + 9, b->area + 9 + remain, fsize);
1432 b->data += 9;
1433
1434 /* write new frame header */
1435 h2_set_frame_size(fptr, fsize);
1436 fptr[3] = H2_FT_CONTINUATION;
1437 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1438 write_n32(fptr + 5, read_n32(b->area + 5));
1439 }
1440
1441 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1442 h2_set_frame_size(b->area, remain);
1443 return 1;
1444}
1445
1446
Willy Tarreau00dd0782018-03-01 16:31:34 +01001447/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1448 * its connection if the stream was not yet closed. Please use this exclusively
Willy Tarreaubcdc6cc2023-03-20 19:14:47 +01001449 * before closing a stream to ensure stream count is well maintained. Note that
1450 * it does explicitly support being called with a partially initialized h2s
1451 * (e.g. sd==NULL).
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001452 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001453static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001454{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001455 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001456 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001457 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001458 if (!h2s->id)
1459 h2s->h2c->nb_reserved--;
Willy Tarreaubcdc6cc2023-03-20 19:14:47 +01001460 if (h2s->sd && h2s_sc(h2s)) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001461 if (!se_fl_test(h2s->sd, SE_FL_EOS) && !b_data(&h2s->rxbuf))
Willy Tarreaua27db382019-03-25 18:13:16 +01001462 h2s_notify_recv(h2s);
1463 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001464 HA_ATOMIC_DEC(&h2s->h2c->px_counters->open_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001465
Willy Tarreau7838a792019-08-12 18:42:03 +02001466 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001467 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001468 h2s->st = H2_SS_CLOSED;
1469}
1470
Christopher Faulet531dd052023-05-24 11:14:38 +02001471/* Check h2c and h2s flags to evaluate if EOI/EOS/ERR_PENDING/ERROR flags must
1472 * be set on the SE.
1473 */
1474static inline void h2s_propagate_term_flags(struct h2c *h2c, struct h2s *h2s)
1475{
1476 if (h2s->flags & H2_SF_ES_RCVD) {
1477 se_fl_set(h2s->sd, SE_FL_EOI);
1478 /* Add EOS flag for tunnel */
1479 if (h2s->flags & H2_SF_BODY_TUNNEL)
1480 se_fl_set(h2s->sd, SE_FL_EOS);
1481 }
1482 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED) {
1483 se_fl_set(h2s->sd, SE_FL_EOS);
1484 if (!se_fl_test(h2s->sd, SE_FL_EOI))
1485 se_fl_set(h2s->sd, SE_FL_ERROR);
1486 }
1487 if (se_fl_test(h2s->sd, SE_FL_ERR_PENDING))
1488 se_fl_set(h2s->sd, SE_FL_ERROR);
1489}
1490
Willy Tarreau71049cc2018-03-28 13:56:39 +02001491/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001492/* h2s_destroy should only ever be called by the thread that owns the stream,
1493 * that means that a tasklet should be used if we want to destroy the h2s
1494 * from another thread
1495 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001496static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001497{
Willy Tarreau7838a792019-08-12 18:42:03 +02001498 struct connection *conn = h2s->h2c->conn;
1499
1500 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1501
Willy Tarreau0a10de62018-03-01 16:27:53 +01001502 h2s_close(h2s);
1503 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001504 if (b_size(&h2s->rxbuf)) {
1505 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01001506 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02001507 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001508
1509 if (h2s->subs)
1510 h2s->subs->events = 0;
1511
Joseph Herlantd77575d2018-11-25 10:54:45 -08001512 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001513 * reference left would be in the h2c send_list/fctl_list, and if
1514 * we're in it, we're getting out anyway
1515 */
Willy Tarreaude4a5382023-10-17 08:25:19 +02001516 h2_remove_from_list(h2s);
Willy Tarreau5723f292020-01-10 15:16:57 +01001517
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001518 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001519 tasklet_free(h2s->shut_tl);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001520 BUG_ON(h2s->sd && !se_fl_test(h2s->sd, SE_FL_ORPHAN));
1521 sedesc_free(h2s->sd);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001522 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001523
1524 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001525}
1526
Willy Tarreaua8e49542018-10-03 18:53:55 +02001527/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1528 * stream tree. In case of error, nothing is added and NULL is returned. The
1529 * causes of errors can be any failed memory allocation. The caller is
1530 * responsible for checking if the connection may support an extra stream
1531 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001532 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001533static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001534{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001535 struct h2s *h2s;
1536
Willy Tarreau7838a792019-08-12 18:42:03 +02001537 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1538
Willy Tarreaubafbe012017-11-24 17:34:44 +01001539 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001540 if (!h2s)
1541 goto out;
1542
Willy Tarreau5723f292020-01-10 15:16:57 +01001543 h2s->shut_tl = tasklet_new();
1544 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001545 pool_free(pool_head_h2s, h2s);
1546 goto out;
1547 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001548 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001549 h2s->shut_tl->process = h2_deferred_shut;
1550 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001551 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001552 h2s->h2c = h2c;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001553 h2s->sd = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001554 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001555 h2s->flags = H2_SF_NONE;
1556 h2s->errcode = H2_ERR_NO_ERROR;
1557 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001558 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001559 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001560 h2s->rxbuf = BUF_NULL;
Amaury Denoyelle74162742020-12-11 17:53:05 +01001561 memset(h2s->upgrade_protocol, 0, sizeof(h2s->upgrade_protocol));
Willy Tarreau751f2d02018-10-05 09:35:00 +02001562
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001563 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001564 if (id > 0)
1565 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001566 else
1567 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001568
1569 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001570 h2c->nb_streams++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001571
Willy Tarreau4781b152021-04-06 13:53:36 +02001572 HA_ATOMIC_INC(&h2c->px_counters->open_streams);
1573 HA_ATOMIC_INC(&h2c->px_counters->total_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001574
Willy Tarreau7838a792019-08-12 18:42:03 +02001575 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001576 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001577 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001578 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001579 return NULL;
1580}
1581
1582/* creates a new stream <id> on the h2c connection and returns it, or NULL in
Christopher Faulet7d013e72020-12-15 16:56:50 +01001583 * case of memory allocation error. <input> is used as input buffer for the new
1584 * stream. On success, it is transferred to the stream and the mux is no longer
1585 * responsible of it. On error, <input> is unchanged, thus the mux must still
1586 * take care of it.
Willy Tarreaua8e49542018-10-03 18:53:55 +02001587 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001588static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id, struct buffer *input, uint32_t flags)
Willy Tarreaua8e49542018-10-03 18:53:55 +02001589{
1590 struct session *sess = h2c->conn->owner;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001591 struct h2s *h2s;
1592
Willy Tarreau7838a792019-08-12 18:42:03 +02001593 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1594
Willy Tarreauca1027c2023-04-18 15:57:03 +02001595 if (h2c->nb_streams >= h2c_max_concurrent_streams(h2c)) {
Willy Tarreauf0279f62024-03-11 07:35:19 +01001596 h2c_report_glitch(h2c, 1);
Willy Tarreaue872f752022-05-12 09:24:41 +02001597 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 Tarreaud6e5cde2023-10-20 18:38:34 +02001598 session_inc_http_req_ctr(sess);
1599 session_inc_http_err_ctr(sess);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001600 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001601 }
Willy Tarreaua8e49542018-10-03 18:53:55 +02001602
1603 h2s = h2s_new(h2c, id);
1604 if (!h2s)
Willy Tarreaue872f752022-05-12 09:24:41 +02001605 goto out_alloc;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001606
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001607 h2s->sd = sedesc_new();
1608 if (!h2s->sd)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001609 goto out_close;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001610 h2s->sd->se = h2s;
1611 h2s->sd->conn = h2c->conn;
1612 se_fl_set(h2s->sd, SE_FL_T_MUX | SE_FL_ORPHAN | SE_FL_NOT_FIRST);
Christopher Faulet4403cdf2023-05-04 15:49:12 +02001613 /* The request is not finished, don't expect data from the opposite side
1614 * yet
1615 */
Christopher Faulet78b1eb22023-05-24 11:44:53 +02001616 if (!(h2c->dff & (H2_F_HEADERS_END_STREAM| H2_F_DATA_END_STREAM)) && !(flags & H2_SF_BODY_TUNNEL))
Christopher Faulet4403cdf2023-05-04 15:49:12 +02001617 se_expect_no_data(h2s->sd);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001618
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001619 /* FIXME wrong analogy between ext-connect and websocket, this need to
1620 * be refine.
1621 */
1622 if (flags & H2_SF_EXT_CONNECT_RCVD)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001623 se_fl_set(h2s->sd, SE_FL_WEBSOCKET);
Christopher Fauletb669d682022-03-22 18:37:19 +01001624
Willy Tarreaud0de6772022-02-04 09:05:37 +01001625 /* The stream will record the request's accept date (which is either the
1626 * end of the connection's or the date immediately after the previous
1627 * request) and the idle time, which is the delay since the previous
1628 * request. We can set the value now, it will be copied by stream_new().
1629 */
Willy Tarreau69530f52023-04-28 09:16:15 +02001630 sess->t_idle = ns_to_ms(now_ns - sess->accept_ts) - sess->t_handshake;
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001631
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001632 if (!sc_new_from_endp(h2s->sd, sess, input))
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001633 goto out_close;
Willy Tarreaucd6bb1a2022-05-10 15:00:03 +02001634
Willy Tarreau36c22322022-05-27 10:41:24 +02001635 h2c->nb_sc++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001636
Willy Tarreau590a0512018-09-05 11:56:48 +02001637 /* We want the accept date presented to the next stream to be the one
1638 * we have now, the handshake time to be null (since the next stream
1639 * is not delayed by a handshake), and the idle time to count since
1640 * right now.
1641 */
1642 sess->accept_date = date;
Willy Tarreau69530f52023-04-28 09:16:15 +02001643 sess->accept_ts = now_ns;
Willy Tarreau590a0512018-09-05 11:56:48 +02001644 sess->t_handshake = 0;
Willy Tarreaud0de6772022-02-04 09:05:37 +01001645 sess->t_idle = 0;
Willy Tarreau590a0512018-09-05 11:56:48 +02001646
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001647 /* OK done, the stream lives its own life now */
Willy Tarreau36c22322022-05-27 10:41:24 +02001648 if (h2_frt_has_too_many_sc(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001649 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001650 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001651 return h2s;
1652
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001653 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001654 h2s_destroy(h2s);
Willy Tarreaue872f752022-05-12 09:24:41 +02001655 out_alloc:
1656 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 +02001657 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001658 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001659 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001660 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001661}
1662
Willy Tarreau36c22322022-05-27 10:41:24 +02001663/* allocates a new stream associated to stream connector <sc> on the h2c
Willy Tarreau4596fe22022-05-17 19:07:51 +02001664 * connection and returns it, or NULL in case of memory allocation error or if
1665 * the highest possible stream ID was reached.
Willy Tarreau751f2d02018-10-05 09:35:00 +02001666 */
Willy Tarreau36c22322022-05-27 10:41:24 +02001667static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct stconn *sc, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001668{
1669 struct h2s *h2s = NULL;
1670
Willy Tarreau7838a792019-08-12 18:42:03 +02001671 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1672
Willy Tarreaue872f752022-05-12 09:24:41 +02001673 if (h2c->nb_streams >= h2c->streams_limit) {
1674 TRACE_ERROR("Aborting stream since negotiated limit is too low", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001675 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001676 }
Willy Tarreau751f2d02018-10-05 09:35:00 +02001677
Willy Tarreaue872f752022-05-12 09:24:41 +02001678 if (h2_streams_left(h2c) < 1) {
1679 TRACE_ERROR("Aborting stream since no more streams left", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreaua80dca82019-01-24 17:08:28 +01001680 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001681 }
Willy Tarreaua80dca82019-01-24 17:08:28 +01001682
Willy Tarreau751f2d02018-10-05 09:35:00 +02001683 /* Defer choosing the ID until we send the first message to create the stream */
1684 h2s = h2s_new(h2c, 0);
Willy Tarreaue872f752022-05-12 09:24:41 +02001685 if (!h2s) {
1686 TRACE_ERROR("Failed to allocate a new stream", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001687 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001688 }
Willy Tarreau751f2d02018-10-05 09:35:00 +02001689
Willy Tarreau36c22322022-05-27 10:41:24 +02001690 if (sc_attach_mux(sc, h2s, h2c->conn) < 0) {
Willy Tarreaue872f752022-05-12 09:24:41 +02001691 TRACE_ERROR("Failed to allocate a new stream", H2_EV_H2S_NEW, h2c->conn);
Christopher Faulet070b91b2022-03-31 19:27:18 +02001692 h2s_destroy(h2s);
1693 h2s = NULL;
1694 goto out;
1695 }
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001696 h2s->sd = sc->sedesc;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001697 h2s->sess = sess;
Willy Tarreau36c22322022-05-27 10:41:24 +02001698 h2c->nb_sc++;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001699
Willy Tarreau54310dc2024-01-12 18:36:57 +01001700 /* on the backend we can afford to only count total streams upon success */
1701 h2c->stream_cnt++;
1702
Willy Tarreau751f2d02018-10-05 09:35:00 +02001703 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001704 if (likely(h2s))
1705 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1706 else
1707 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001708 return h2s;
1709}
1710
Willy Tarreaube5b7152017-09-25 16:25:39 +02001711/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1712 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1713 * the various settings codes.
1714 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001715static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001716{
1717 struct buffer *res;
1718 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001719 struct buffer buf;
Willy Tarreau9d7abda2023-04-17 15:04:34 +02001720 int iws;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001721 int mfs;
Willy Tarreauca1027c2023-04-18 15:57:03 +02001722 int mcs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001723 int ret = 0;
1724
1725 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001726
Willy Tarreaube5b7152017-09-25 16:25:39 +02001727 chunk_init(&buf, buf_data, sizeof(buf_data));
1728 chunk_memcpy(&buf,
1729 "\x00\x00\x00" /* length : 0 for now */
1730 "\x04\x00" /* type : 4 (settings), flags : 0 */
1731 "\x00\x00\x00\x00", /* stream ID : 0 */
1732 9);
1733
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001734 if (h2c->flags & H2_CF_IS_BACK) {
1735 /* send settings_enable_push=0 */
1736 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1737 }
1738
Amaury Denoyellebefeae82021-07-09 17:14:30 +02001739 /* rfc 8441 #3 SETTINGS_ENABLE_CONNECT_PROTOCOL=1,
1740 * sent automatically unless disabled in the global config */
1741 if (!(global.tune.options & GTUNE_DISABLE_H2_WEBSOCKET))
1742 chunk_memcat(&buf, "\x00\x08\x00\x00\x00\x01", 6);
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01001743
Willy Tarreaube5b7152017-09-25 16:25:39 +02001744 if (h2_settings_header_table_size != 4096) {
1745 char str[6] = "\x00\x01"; /* header_table_size */
1746
1747 write_n32(str + 2, h2_settings_header_table_size);
1748 chunk_memcat(&buf, str, 6);
1749 }
1750
Willy Tarreau9d7abda2023-04-17 15:04:34 +02001751 iws = (h2c->flags & H2_CF_IS_BACK) ?
1752 h2_be_settings_initial_window_size:
1753 h2_fe_settings_initial_window_size;
1754 iws = iws ? iws : h2_settings_initial_window_size;
1755
1756 if (iws != 65535) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001757 char str[6] = "\x00\x04"; /* initial_window_size */
1758
Willy Tarreau9d7abda2023-04-17 15:04:34 +02001759 write_n32(str + 2, iws);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001760 chunk_memcat(&buf, str, 6);
1761 }
1762
Willy Tarreauca1027c2023-04-18 15:57:03 +02001763 mcs = h2c_max_concurrent_streams(h2c);
1764 if (mcs != 0) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001765 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1766
1767 /* Note: 0 means "unlimited" for haproxy's config but not for
1768 * the protocol, so never send this value!
1769 */
Willy Tarreauca1027c2023-04-18 15:57:03 +02001770 write_n32(str + 2, mcs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001771 chunk_memcat(&buf, str, 6);
1772 }
1773
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001774 mfs = h2_settings_max_frame_size;
1775 if (mfs > global.tune.bufsize)
1776 mfs = global.tune.bufsize;
1777
1778 if (!mfs)
1779 mfs = global.tune.bufsize;
1780
1781 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001782 char str[6] = "\x00\x05"; /* max_frame_size */
1783
1784 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1785 * match bufsize - rewrite size, but at the moment it seems
1786 * that clients don't take care of it.
1787 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001788 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001789 chunk_memcat(&buf, str, 6);
1790 }
1791
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001792 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001793
1794 res = br_tail(h2c->mbuf);
1795 retry:
1796 if (!h2_get_buf(h2c, res)) {
1797 h2c->flags |= H2_CF_MUX_MALLOC;
1798 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001799 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001800 }
1801
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001802 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001803 if (unlikely(ret <= 0)) {
1804 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001805 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1806 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001807 h2c->flags |= H2_CF_MUX_MFULL;
1808 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001809 }
1810 else {
1811 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001812 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001813 }
1814 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001815 out:
1816 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001817 return ret;
1818}
1819
Willy Tarreau52eed752017-09-22 15:05:09 +02001820/* Try to receive a connection preface, then upon success try to send our
1821 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1822 * missing data. It may return an error in h2c.
1823 */
1824static int h2c_frt_recv_preface(struct h2c *h2c)
1825{
1826 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001827 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001828
Willy Tarreau7838a792019-08-12 18:42:03 +02001829 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1830
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001831 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001832
1833 if (unlikely(ret1 <= 0)) {
Christopher Fauletb5f7b522021-07-26 12:06:53 +02001834 if (!ret1)
1835 h2c->flags |= H2_CF_DEM_SHORT_READ;
Christopher Fauletff7925d2022-10-11 19:12:40 +02001836 if (ret1 < 0 || (h2c->flags & H2_CF_RCVD_SHUT)) {
Willy Tarreauf0279f62024-03-11 07:35:19 +01001837 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001838 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 +02001839 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauee4684f2021-06-17 08:08:48 +02001840 if (b_data(&h2c->dbuf) ||
1841 !(((const struct session *)h2c->conn->owner)->fe->options & PR_O_IGNORE_PRB))
1842 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001843 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001844 ret2 = 0;
1845 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001846 }
1847
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001848 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001849 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001850 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001851 out:
1852 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001853 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001854}
1855
Willy Tarreau01b44822018-10-03 14:26:37 +02001856/* Try to send a connection preface, then upon success try to send our
1857 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1858 * missing data. It may return an error in h2c.
1859 */
1860static int h2c_bck_send_preface(struct h2c *h2c)
1861{
1862 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001863 int ret = 0;
1864
1865 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001866
Willy Tarreaubcc45952019-05-26 10:05:50 +02001867 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001868 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001869 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001870 h2c->flags |= H2_CF_MUX_MALLOC;
1871 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001872 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001873 }
1874
1875 if (!b_data(res)) {
1876 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001877 ret = b_istput(res, ist(H2_CONN_PREFACE));
1878 if (unlikely(ret <= 0)) {
1879 if (!ret) {
1880 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1881 goto retry;
1882 h2c->flags |= H2_CF_MUX_MFULL;
1883 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001884 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001885 }
1886 else {
1887 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001888 ret = 0;
1889 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001890 }
1891 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001892 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001893 ret = h2c_send_settings(h2c);
1894 out:
1895 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1896 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001897}
1898
Willy Tarreau081d4722017-05-16 21:51:05 +02001899/* try to send a GOAWAY frame on the connection to report an error or a graceful
1900 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1901 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1902 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1903 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1904 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1905 * on unrecoverable failure. It will not attempt to send one again in this last
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001906 * case, nor will it send one if settings were not sent (e.g. still waiting for
1907 * a preface) so that it is safe to use h2c_error() to report such errors.
Willy Tarreau081d4722017-05-16 21:51:05 +02001908 */
1909static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1910{
1911 struct buffer *res;
1912 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001913 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001914
Willy Tarreau7838a792019-08-12 18:42:03 +02001915 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1916
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001917 if ((h2c->flags & H2_CF_GOAWAY_FAILED) || h2c->st0 < H2_CS_SETTINGS1) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001918 ret = 1; // claim that it worked
1919 goto out;
1920 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001921
Willy Tarreau9c218e72019-05-26 10:08:28 +02001922 /* len: 8, type: 7, flags: none, sid: 0 */
1923 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1924
1925 if (h2c->last_sid < 0)
1926 h2c->last_sid = h2c->max_id;
1927
1928 write_n32(str + 9, h2c->last_sid);
1929 write_n32(str + 13, h2c->errcode);
1930
Willy Tarreaubcc45952019-05-26 10:05:50 +02001931 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001932 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001933 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001934 h2c->flags |= H2_CF_MUX_MALLOC;
1935 if (h2s)
1936 h2s->flags |= H2_SF_BLK_MROOM;
1937 else
1938 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001939 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001940 }
1941
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001942 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001943 if (unlikely(ret <= 0)) {
1944 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001945 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1946 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001947 h2c->flags |= H2_CF_MUX_MFULL;
1948 if (h2s)
1949 h2s->flags |= H2_SF_BLK_MROOM;
1950 else
1951 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001952 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001953 }
1954 else {
1955 /* we cannot report this error using GOAWAY, so we mark
1956 * it and claim a success.
1957 */
1958 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1959 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001960 ret = 1;
1961 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001962 }
1963 }
1964 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001965
1966 /* some codes are not for real errors, just attempts to close cleanly */
1967 switch (h2c->errcode) {
1968 case H2_ERR_NO_ERROR:
1969 case H2_ERR_ENHANCE_YOUR_CALM:
1970 case H2_ERR_REFUSED_STREAM:
1971 case H2_ERR_CANCEL:
1972 break;
1973 default:
Willy Tarreau4781b152021-04-06 13:53:36 +02001974 HA_ATOMIC_INC(&h2c->px_counters->goaway_resp);
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001975 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001976 out:
1977 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001978 return ret;
1979}
1980
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001981/* Try to send an RST_STREAM frame on the connection for the indicated stream
1982 * during mux operations. This stream must be valid and cannot be closed
1983 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1984 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1985 * not yet.
1986 *
1987 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1988 * to write the message, it subscribes the stream to future notifications.
1989 */
1990static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1991{
1992 struct buffer *res;
1993 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001994 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001995
Willy Tarreau7838a792019-08-12 18:42:03 +02001996 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1997
1998 if (!h2s || h2s->st == H2_SS_CLOSED) {
1999 ret = 1;
2000 goto out;
2001 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002002
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002003 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
2004 * RST_STREAM in response to a RST_STREAM frame.
2005 */
Willy Tarreau231f6162019-08-06 10:01:40 +02002006 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002007 ret = 1;
2008 goto ignore;
2009 }
2010
Willy Tarreau9c218e72019-05-26 10:08:28 +02002011 /* len: 4, type: 3, flags: none */
2012 memcpy(str, "\x00\x00\x04\x03\x00", 5);
2013 write_n32(str + 5, h2s->id);
2014 write_n32(str + 9, h2s->errcode);
2015
Willy Tarreaubcc45952019-05-26 10:05:50 +02002016 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002017 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002018 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002019 h2c->flags |= H2_CF_MUX_MALLOC;
2020 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002021 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002022 }
2023
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002024 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002025 if (unlikely(ret <= 0)) {
2026 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002027 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2028 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002029 h2c->flags |= H2_CF_MUX_MFULL;
2030 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002031 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002032 }
2033 else {
2034 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002035 ret = 0;
2036 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002037 }
2038 }
2039
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002040 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002041 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002042 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002043 out:
2044 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002045 return ret;
2046}
2047
2048/* Try to send an RST_STREAM frame on the connection for the stream being
2049 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01002050 * error code, even if the stream is one of the dummy ones, and will update
2051 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002052 *
2053 * Returns > 0 on success or zero if nothing was done. In case of lack of room
2054 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08002055 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002056 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02002057 */
2058static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
2059{
2060 struct buffer *res;
2061 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002062 int ret = 0;
2063
2064 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002065
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002066 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
2067 * RST_STREAM in response to a RST_STREAM frame.
2068 */
2069 if (h2c->dft == H2_FT_RST_STREAM) {
2070 ret = 1;
2071 goto ignore;
2072 }
2073
Willy Tarreau9c218e72019-05-26 10:08:28 +02002074 /* len: 4, type: 3, flags: none */
2075 memcpy(str, "\x00\x00\x04\x03\x00", 5);
2076
2077 write_n32(str + 5, h2c->dsi);
2078 write_n32(str + 9, h2s->errcode);
2079
Willy Tarreaubcc45952019-05-26 10:05:50 +02002080 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002081 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002082 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002083 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002084 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002085 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002086 }
2087
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002088 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02002089 if (unlikely(ret <= 0)) {
2090 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002091 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2092 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002093 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002094 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002095 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002096 }
2097 else {
2098 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002099 ret = 0;
2100 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002101 }
2102 }
2103
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002104 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02002105 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002106 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002107 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002108 }
2109
Willy Tarreau7838a792019-08-12 18:42:03 +02002110 out:
Willy Tarreau4781b152021-04-06 13:53:36 +02002111 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_resp);
Willy Tarreau7838a792019-08-12 18:42:03 +02002112 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002113 return ret;
2114}
2115
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002116/* try to send an empty DATA frame with the ES flag set to notify about the
2117 * end of stream and match a shutdown(write). If an ES was already sent as
2118 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
2119 * on success or zero if nothing was done. In case of lack of room to write the
2120 * message, it subscribes the requesting stream to future notifications.
2121 */
2122static int h2_send_empty_data_es(struct h2s *h2s)
2123{
2124 struct h2c *h2c = h2s->h2c;
2125 struct buffer *res;
2126 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002127 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002128
Willy Tarreau7838a792019-08-12 18:42:03 +02002129 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
2130
2131 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
2132 ret = 1;
2133 goto out;
2134 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002135
Willy Tarreau9c218e72019-05-26 10:08:28 +02002136 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
2137 memcpy(str, "\x00\x00\x00\x00\x01", 5);
2138 write_n32(str + 5, h2s->id);
2139
Willy Tarreaubcc45952019-05-26 10:05:50 +02002140 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002141 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002142 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002143 h2c->flags |= H2_CF_MUX_MALLOC;
2144 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002145 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002146 }
2147
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002148 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002149 if (likely(ret > 0)) {
2150 h2s->flags |= H2_SF_ES_SENT;
2151 }
2152 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002153 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2154 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002155 h2c->flags |= H2_CF_MUX_MFULL;
2156 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002157 }
2158 else {
2159 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002160 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002161 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002162 out:
2163 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002164 return ret;
2165}
2166
Willy Tarreau4596fe22022-05-17 19:07:51 +02002167/* wake a specific stream and assign its stream connector some SE_FL_* flags
2168 * among SE_FL_ERR_PENDING and SE_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002169 * is automatically updated accordingly. If the stream is orphaned, it is
2170 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002171 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002172static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002173{
Willy Tarreau7838a792019-08-12 18:42:03 +02002174 struct h2c *h2c = h2s->h2c;
2175
2176 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2177
Willy Tarreau7be4ee02022-05-18 07:31:41 +02002178 if (!h2s_sc(h2s)) {
Christopher Fauletf02ca002019-03-07 16:21:34 +01002179 /* this stream was already orphaned */
2180 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002181 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002182 return;
2183 }
2184
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002185 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002186 if (h2s->st == H2_SS_OPEN)
2187 h2s->st = H2_SS_HREM;
2188 else if (h2s->st == H2_SS_HLOC)
2189 h2s_close(h2s);
2190 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002191
Christopher Fauletff7925d2022-10-11 19:12:40 +02002192 if (h2s->h2c->st0 >= H2_CS_ERROR || (h2s->h2c->flags & (H2_CF_ERR_PENDING|H2_CF_ERROR)) ||
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002193 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
Christopher Fauletff7925d2022-10-11 19:12:40 +02002194 se_fl_set_error(h2s->sd);
Willy Tarreau23482912019-05-07 15:23:14 +02002195
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002196 if (h2s->st < H2_SS_ERROR)
2197 h2s->st = H2_SS_ERROR;
2198 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002199
2200 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002201 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002202}
2203
2204/* wake the streams attached to the connection, whose id is greater than <last>
2205 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002206 */
Willy Tarreau23482912019-05-07 15:23:14 +02002207static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002208{
2209 struct eb32_node *node;
2210 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002211
Willy Tarreau7838a792019-08-12 18:42:03 +02002212 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2213
Christopher Fauletf02ca002019-03-07 16:21:34 +01002214 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002215 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2216 while (node) {
2217 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002218 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002219 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002220 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002221
Christopher Fauletf02ca002019-03-07 16:21:34 +01002222 /* Wake all streams with unassigned ID (ID == 0) */
2223 node = eb32_lookup(&h2c->streams_by_id, 0);
2224 while (node) {
2225 h2s = container_of(node, struct h2s, by_id);
2226 if (h2s->id > 0)
2227 break;
2228 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002229 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002230 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002231
2232 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002233}
2234
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002235/* Wake up all blocked streams whose window size has become positive after the
2236 * mux's initial window was adjusted. This should be done after having processed
2237 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002238 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002239static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002240{
2241 struct h2s *h2s;
2242 struct eb32_node *node;
2243
Willy Tarreau7838a792019-08-12 18:42:03 +02002244 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2245
Willy Tarreau3421aba2017-07-27 15:41:03 +02002246 node = eb32_first(&h2c->streams_by_id);
2247 while (node) {
2248 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002249 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002250 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002251 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002252 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2253 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002254 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002255 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002256 node = eb32_next(node);
2257 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002258
2259 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002260}
2261
2262/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2263 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002264 * return an error in h2c. The caller must have already verified frame length
2265 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002266 */
2267static int h2c_handle_settings(struct h2c *h2c)
2268{
2269 unsigned int offset;
2270 int error;
2271
Willy Tarreau7838a792019-08-12 18:42:03 +02002272 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2273
Willy Tarreau3421aba2017-07-27 15:41:03 +02002274 if (h2c->dff & H2_F_SETTINGS_ACK) {
2275 if (h2c->dfl) {
2276 error = H2_ERR_FRAME_SIZE_ERROR;
2277 goto fail;
2278 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002279 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002280 }
2281
Willy Tarreau3421aba2017-07-27 15:41:03 +02002282 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002283 if (b_data(&h2c->dbuf) < h2c->dfl) {
2284 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002285 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002286 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002287
2288 /* parse the frame */
2289 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002290 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2291 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002292
2293 switch (type) {
2294 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2295 /* we need to update all existing streams with the
2296 * difference from the previous iws.
2297 */
2298 if (arg < 0) { // RFC7540#6.5.2
2299 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreauf0279f62024-03-11 07:35:19 +01002300 h2c_report_glitch(h2c, 1);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002301 goto fail;
2302 }
Willy Tarreaueec8dc12024-02-08 14:37:56 +01002303 /* Let's count a glitch here in case of a reduction
2304 * after H2_CS_SETTINGS1 because while it's not
Willy Tarreau22892322024-01-17 16:57:23 +01002305 * fundamentally invalid from a protocol's perspective,
2306 * it's often suspicious.
2307 */
Willy Tarreaueec8dc12024-02-08 14:37:56 +01002308 if (h2c->st0 != H2_CS_SETTINGS1 && arg < h2c->miw)
Willy Tarreauf0279f62024-03-11 07:35:19 +01002309 h2c_report_glitch(h2c, 1);
Willy Tarreaueec8dc12024-02-08 14:37:56 +01002310
Willy Tarreau3421aba2017-07-27 15:41:03 +02002311 h2c->miw = arg;
2312 break;
2313 case H2_SETTINGS_MAX_FRAME_SIZE:
2314 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreauf0279f62024-03-11 07:35:19 +01002315 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002316 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 +02002317 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002318 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002319 goto fail;
2320 }
2321 h2c->mfs = arg;
2322 break;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01002323 case H2_SETTINGS_HEADER_TABLE_SIZE:
2324 h2c->flags |= H2_CF_SHTS_UPDATED;
2325 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002326 case H2_SETTINGS_ENABLE_PUSH:
2327 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
Willy Tarreauf0279f62024-03-11 07:35:19 +01002328 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002329 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002330 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002331 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002332 goto fail;
2333 }
2334 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002335 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2336 if (h2c->flags & H2_CF_IS_BACK) {
2337 /* the limit is only for the backend; for the frontend it is our limit */
Willy Tarreauca1027c2023-04-18 15:57:03 +02002338 if ((unsigned int)arg > h2c_max_concurrent_streams(h2c))
2339 arg = h2c_max_concurrent_streams(h2c);
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002340 h2c->streams_limit = arg;
2341 }
2342 break;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002343 case H2_SETTINGS_ENABLE_CONNECT_PROTOCOL:
Amaury Denoyelle0df04362021-10-18 09:43:29 +02002344 if (arg == 1)
2345 h2c->flags |= H2_CF_RCVD_RFC8441;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002346 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002347 }
2348 }
2349
2350 /* need to ACK this frame now */
2351 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002352 done:
2353 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002354 return 1;
2355 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002356 if (!(h2c->flags & H2_CF_IS_BACK))
2357 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002358 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002359 out0:
2360 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 +02002361 return 0;
2362}
2363
2364/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2365 * success or one of the h2_status values.
2366 */
2367static int h2c_ack_settings(struct h2c *h2c)
2368{
2369 struct buffer *res;
2370 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002371 int ret = 0;
2372
2373 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002374
Willy Tarreau9c218e72019-05-26 10:08:28 +02002375 memcpy(str,
2376 "\x00\x00\x00" /* length : 0 (no data) */
2377 "\x04" "\x01" /* type : 4, flags : ACK */
2378 "\x00\x00\x00\x00" /* stream ID */, 9);
2379
Willy Tarreaubcc45952019-05-26 10:05:50 +02002380 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002381 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002382 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002383 h2c->flags |= H2_CF_MUX_MALLOC;
2384 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002385 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002386 }
2387
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002388 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002389 if (unlikely(ret <= 0)) {
2390 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002391 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2392 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002393 h2c->flags |= H2_CF_MUX_MFULL;
2394 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002395 }
2396 else {
2397 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002398 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002399 }
2400 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002401 out:
2402 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002403 return ret;
2404}
2405
Willy Tarreaucf68c782017-10-10 17:11:41 +02002406/* processes a PING frame and schedules an ACK if needed. The caller must pass
2407 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002408 * missing data. The caller must have already verified frame length
2409 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002410 */
2411static int h2c_handle_ping(struct h2c *h2c)
2412{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002413 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002414 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002415 h2c->st0 = H2_CS_FRAME_A;
2416 return 1;
2417}
2418
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002419/* Try to send a window update for stream id <sid> and value <increment>.
2420 * Returns > 0 on success or zero on missing room or failure. It may return an
2421 * error in h2c.
2422 */
2423static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2424{
2425 struct buffer *res;
2426 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002427 int ret = 0;
2428
2429 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002430
Willy Tarreau9c218e72019-05-26 10:08:28 +02002431 /* length: 4, type: 8, flags: none */
2432 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2433 write_n32(str + 5, sid);
2434 write_n32(str + 9, increment);
2435
Willy Tarreaubcc45952019-05-26 10:05:50 +02002436 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002437 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002438 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002439 h2c->flags |= H2_CF_MUX_MALLOC;
2440 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002441 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002442 }
2443
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002444 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002445 if (unlikely(ret <= 0)) {
2446 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002447 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2448 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002449 h2c->flags |= H2_CF_MUX_MFULL;
2450 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002451 }
2452 else {
2453 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002454 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002455 }
2456 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002457 out:
2458 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002459 return ret;
2460}
2461
2462/* try to send pending window update for the connection. It's safe to call it
2463 * with no pending updates. Returns > 0 on success or zero on missing room or
2464 * failure. It may return an error in h2c.
2465 */
2466static int h2c_send_conn_wu(struct h2c *h2c)
2467{
2468 int ret = 1;
2469
Willy Tarreau7838a792019-08-12 18:42:03 +02002470 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2471
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002472 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002473 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002474
Willy Tarreau97aaa672018-12-23 09:49:04 +01002475 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2476 /* increase the advertised connection window to 2G on
2477 * first update.
2478 */
2479 h2c->flags |= H2_CF_WINDOW_OPENED;
2480 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2481 }
2482
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002483 /* send WU for the connection */
2484 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2485 if (ret > 0)
2486 h2c->rcvd_c = 0;
2487
Willy Tarreau7838a792019-08-12 18:42:03 +02002488 out:
2489 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002490 return ret;
2491}
2492
2493/* try to send pending window update for the current dmux stream. It's safe to
2494 * call it with no pending updates. Returns > 0 on success or zero on missing
2495 * room or failure. It may return an error in h2c.
2496 */
2497static int h2c_send_strm_wu(struct h2c *h2c)
2498{
2499 int ret = 1;
2500
Willy Tarreau7838a792019-08-12 18:42:03 +02002501 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2502
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002503 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002504 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002505
2506 /* send WU for the stream */
2507 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2508 if (ret > 0)
2509 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002510 out:
2511 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002512 return ret;
2513}
2514
Willy Tarreaucf68c782017-10-10 17:11:41 +02002515/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2516 * success, 0 on missing data or one of the h2_status values.
2517 */
2518static int h2c_ack_ping(struct h2c *h2c)
2519{
2520 struct buffer *res;
2521 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002522 int ret = 0;
2523
2524 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002525
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002526 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002527 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002528
Willy Tarreaucf68c782017-10-10 17:11:41 +02002529 memcpy(str,
2530 "\x00\x00\x08" /* length : 8 (same payload) */
2531 "\x06" "\x01" /* type : 6, flags : ACK */
2532 "\x00\x00\x00\x00" /* stream ID */, 9);
2533
2534 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002535 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002536
Willy Tarreau9c218e72019-05-26 10:08:28 +02002537 res = br_tail(h2c->mbuf);
2538 retry:
2539 if (!h2_get_buf(h2c, res)) {
2540 h2c->flags |= H2_CF_MUX_MALLOC;
2541 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002542 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002543 }
2544
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002545 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002546 if (unlikely(ret <= 0)) {
2547 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002548 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2549 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002550 h2c->flags |= H2_CF_MUX_MFULL;
2551 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002552 }
2553 else {
2554 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002555 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002556 }
2557 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002558 out:
2559 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002560 return ret;
2561}
2562
Willy Tarreau26f95952017-07-27 17:18:30 +02002563/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2564 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002565 * h2c or h2s. The caller must have already verified frame length and stream ID
2566 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002567 */
2568static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2569{
2570 int32_t inc;
2571 int error;
2572
Willy Tarreau7838a792019-08-12 18:42:03 +02002573 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2574
Willy Tarreau26f95952017-07-27 17:18:30 +02002575 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002576 if (b_data(&h2c->dbuf) < h2c->dfl) {
2577 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002578 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002579 }
Willy Tarreau26f95952017-07-27 17:18:30 +02002580
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002581 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002582
2583 if (h2c->dsi != 0) {
2584 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002585
2586 /* it's not an error to receive WU on a closed stream */
2587 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002588 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002589
2590 if (!inc) {
Willy Tarreauf0279f62024-03-11 07:35:19 +01002591 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002592 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 +02002593 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002594 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002595 goto strm_err;
2596 }
2597
Willy Tarreau22892322024-01-17 16:57:23 +01002598 /* WT: it would be tempting to count a glitch here for very small
2599 * increments (less than a few tens of bytes), but that might be
2600 * perfectly valid for many short streams, so better instead
2601 * count the number of WU per frame maybe. That would be better
2602 * dealt with using scores per frame.
2603 */
2604
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002605 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreauf0279f62024-03-11 07:35:19 +01002606 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002607 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 +02002608 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002609 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002610 goto strm_err;
2611 }
2612
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002613 h2s->sws += inc;
2614 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002615 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002616 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002617 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2618 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002619 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002620 }
2621 }
2622 else {
2623 /* connection window update */
2624 if (!inc) {
Willy Tarreauf0279f62024-03-11 07:35:19 +01002625 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002626 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002627 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002628 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002629 goto conn_err;
2630 }
2631
2632 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
Willy Tarreauf0279f62024-03-11 07:35:19 +01002633 h2c_report_glitch(h2c, 1);
Willy Tarreau04256ce2024-01-17 16:56:18 +01002634 TRACE_ERROR("conn WINDOW_UPDATE inc<0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002635 error = H2_ERR_FLOW_CONTROL_ERROR;
2636 goto conn_err;
2637 }
2638
2639 h2c->mws += inc;
2640 }
2641
Willy Tarreau7838a792019-08-12 18:42:03 +02002642 done:
2643 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002644 return 1;
2645
2646 conn_err:
2647 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002648 out0:
2649 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 +02002650 return 0;
2651
2652 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002653 h2s_error(h2s, error);
2654 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002655 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002656 return 0;
2657}
2658
Willy Tarreaue96b0922017-10-30 00:28:29 +01002659/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002660 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2661 * have already verified frame length and stream ID validity. Described in
2662 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002663 */
2664static int h2c_handle_goaway(struct h2c *h2c)
2665{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002666 int last;
2667
Willy Tarreau7838a792019-08-12 18:42:03 +02002668 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002669 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002670 if (b_data(&h2c->dbuf) < h2c->dfl) {
2671 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002672 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002673 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002674 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002675
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002676 last = h2_get_n32(&h2c->dbuf, 0);
2677 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002678 if (h2c->last_sid < 0)
2679 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002680 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002681 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002682 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002683}
2684
Willy Tarreau92153fc2017-12-03 19:46:19 +01002685/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002686 * invalid. Returns > 0 on success or zero on missing data. It may return an
2687 * error in h2c. The caller must have already verified frame length and stream
2688 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002689 */
2690static int h2c_handle_priority(struct h2c *h2c)
2691{
Willy Tarreau7838a792019-08-12 18:42:03 +02002692 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2693
Willy Tarreau92153fc2017-12-03 19:46:19 +01002694 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002695 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002696 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002697 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002698 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002699 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002700
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002701 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002702 /* 7540#5.3 : can't depend on itself */
Willy Tarreauf0279f62024-03-11 07:35:19 +01002703 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002704 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002705 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02002706 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002707 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002708 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002709 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002710 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002711 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002712}
2713
Willy Tarreaucd234e92017-08-18 10:59:39 +02002714/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002715 * Returns > 0 on success or zero on missing data. The caller must have already
2716 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002717 */
2718static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2719{
Willy Tarreau7838a792019-08-12 18:42:03 +02002720 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2721
Willy Tarreaucd234e92017-08-18 10:59:39 +02002722 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002723 if (b_data(&h2c->dbuf) < h2c->dfl) {
2724 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 +02002725 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002726 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002727 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002728
2729 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002730 if (h2s->st == H2_SS_CLOSED) {
2731 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 +02002732 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002733 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002734
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002735 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002736 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002737
Willy Tarreau7be4ee02022-05-18 07:31:41 +02002738 if (h2s_sc(h2s)) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02002739 se_fl_set_error(h2s->sd);
Willy Tarreauf830f012018-12-19 17:44:55 +01002740 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002741 }
2742
2743 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002744 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002745 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002746}
2747
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002748/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2749 * It may return an error in h2c or h2s. The caller must consider that the
2750 * return value is the new h2s in case one was allocated (most common case).
2751 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002752 * errors here are reported as connection errors since it's impossible to
2753 * recover from such errors after the compression context has been altered.
2754 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002755static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002756{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002757 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002758 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002759 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002760 int error;
2761
Willy Tarreau7838a792019-08-12 18:42:03 +02002762 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2763
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002764 if (!b_size(&h2c->dbuf)) {
2765 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002766 goto out; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002767 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002768
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002769 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2770 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002771 goto out; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002772 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002773
2774 /* now either the frame is complete or the buffer is complete */
2775 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002776 /* The stream exists/existed, this must be a trailers frame */
2777 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7cfbb812023-01-26 16:02:01 +01002778 error = h2c_dec_hdrs(h2c, &h2s->rxbuf, &h2s->flags, &body_len, NULL);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002779 /* unrecoverable error ? */
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002780 if (h2c->st0 >= H2_CS_ERROR) {
Willy Tarreau17c630b2023-01-19 23:58:11 +01002781 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 +01002782 sess_log(h2c->conn->owner);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002783 goto out;
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002784 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002785
Christopher Faulet485da0b2021-10-08 08:56:00 +02002786 if (error == 0) {
2787 /* Demux not blocked because of the stream, it is an incomplete frame */
2788 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2789 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002790 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002791 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002792
2793 if (error < 0) {
2794 /* Failed to decode this frame (e.g. too large request)
2795 * but the HPACK decompressor is still synchronized.
2796 */
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002797 sess_log(h2c->conn->owner);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002798 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
Willy Tarreau17c630b2023-01-19 23:58:11 +01002799 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 +02002800 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002801 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002802 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002803 goto done;
2804 }
Willy Tarreaudf1cc5d2023-10-20 17:47:33 +02002805 /* the stream was already killed by an RST, let's consume
Willy Tarreau1f035502019-01-30 11:44:07 +01002806 * the data and send another RST.
2807 */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01002808 error = h2c_dec_hdrs(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002809 sess_log(h2c->conn->owner);
Willy Tarreau1f035502019-01-30 11:44:07 +01002810 h2s = (struct h2s*)h2_error_stream;
Willy Tarreaudf1cc5d2023-10-20 17:47:33 +02002811 TRACE_USER("rcvd H2 trailers on closed stream", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW|H2_EV_STRM_END, h2c->conn, h2s, &rxbuf);
Willy Tarreau1f035502019-01-30 11:44:07 +01002812 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002813 }
2814 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2815 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2816 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreauf0279f62024-03-11 07:35:19 +01002817 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002818 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau4781b152021-04-06 13:53:36 +02002819 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002820 sess_log(h2c->conn->owner);
Willy Tarreaud6e5cde2023-10-20 18:38:34 +02002821 session_inc_http_req_ctr(h2c->conn->owner);
2822 session_inc_http_err_ctr(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002823 goto conn_err;
2824 }
Willy Tarreau4869ed52023-10-13 18:11:59 +02002825 else if (h2c->flags & H2_CF_DEM_TOOMANY) {
Willy Tarreau36c22322022-05-27 10:41:24 +02002826 goto out; // IDLE but too many sc still present
Willy Tarreau4869ed52023-10-13 18:11:59 +02002827 }
2828 else if (h2_fe_max_total_streams &&
2829 h2c->stream_cnt >= h2_fe_max_total_streams + h2c_max_concurrent_streams(h2c)) {
2830 /* We've already told this client we were going to close a
2831 * while ago and apparently it didn't care, so it's time to
2832 * stop processing its requests for real.
2833 */
2834 error = H2_ERR_ENHANCE_YOUR_CALM;
Willy Tarreauf0279f62024-03-11 07:35:19 +01002835 h2c_report_glitch(h2c, 1);
Willy Tarreau4869ed52023-10-13 18:11:59 +02002836 TRACE_STATE("Stream limit violated", H2_EV_STRM_SHUT, h2c->conn);
2837 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
2838 sess_log(h2c->conn->owner);
2839 session_inc_http_req_ctr(h2c->conn->owner);
2840 session_inc_http_err_ctr(h2c->conn->owner);
2841 goto conn_err;
2842 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002843
Willy Tarreau7cfbb812023-01-26 16:02:01 +01002844 error = h2c_dec_hdrs(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002845
Willy Tarreaufb25b6e2024-01-18 17:01:45 +01002846 if (error == 0) {
2847 /* No error but missing data for demuxing, it is an incomplete frame */
2848 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2849 h2c->flags |= H2_CF_DEM_SHORT_READ;
2850 goto out;
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002851 }
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002852
Willy Tarreaufb25b6e2024-01-18 17:01:45 +01002853 /* Now we cannot roll back and we won't come back here anymore for this
2854 * stream, so this stream ID is open from a protocol perspective, even
2855 * if incomplete or broken, we want to count it as attempted.
2856 */
2857 if (h2c->dsi > h2c->max_id)
2858 h2c->max_id = h2c->dsi;
2859 h2c->stream_cnt++;
Willy Tarreau25919232019-01-03 14:48:18 +01002860
Willy Tarreaufb25b6e2024-01-18 17:01:45 +01002861 if (error < 0) {
2862 /* Failed to decode this stream. This might be due to a
2863 * recoverable error affecting only the stream (e.g. too large
2864 * request for buffer, that leaves the HPACK decompressor still
2865 * synchronized), or a non-recoverable error such as an invalid
2866 * frame type sequence (e.g. other frame type interleaved with
2867 * CONTINUATION), in which h2c_dec_hdrs() has already set the
2868 * error code in the connection and counted it in the relevant
2869 * stats. We still count a req error in both cases.
Willy Tarreau25919232019-01-03 14:48:18 +01002870 */
Willy Tarreaufb25b6e2024-01-18 17:01:45 +01002871 sess_log(h2c->conn->owner);
2872 session_inc_http_req_ctr(h2c->conn->owner);
2873 session_inc_http_err_ctr(h2c->conn->owner);
2874
2875 if (h2c->st0 >= H2_CS_ERROR) {
2876 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);
2877 goto out;
2878 }
2879
2880 /* recoverable stream error (e.g. too large request) */
Willy Tarreaudf1cc5d2023-10-20 17:47:33 +02002881 TRACE_USER("rcvd unparsable H2 request", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW|H2_EV_STRM_END, h2c->conn, h2s, &rxbuf);
Willy Tarreau54310dc2024-01-12 18:36:57 +01002882 goto strm_err;
Willy Tarreau25919232019-01-03 14:48:18 +01002883 }
2884
Willy Tarreau29268e92021-06-17 08:29:14 +02002885 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn, 0, &rxbuf);
2886
Willy Tarreaudf1cc5d2023-10-20 17:47:33 +02002887 /* Note: we don't emit any other logs below because if we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002888 * positively from h2c_frt_stream_new(), the stream will report the error,
2889 * and if we return in error, h2c_frt_stream_new() will emit the error.
Christopher Faulet7d013e72020-12-15 16:56:50 +01002890 *
2891 * Xfer the rxbuf to the stream. On success, the new stream owns the
2892 * rxbuf. On error, it is released here.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002893 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02002894 h2s = h2c_frt_stream_new(h2c, h2c->dsi, &rxbuf, flags);
Willy Tarreau13278b42017-10-13 19:23:14 +02002895 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002896 h2s = (struct h2s*)h2_refused_stream;
Willy Tarreaudf1cc5d2023-10-20 17:47:33 +02002897 TRACE_USER("refused H2 req. ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW|H2_EV_STRM_END, h2c->conn, h2s, &rxbuf);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002898 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002899 }
2900
2901 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002902 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002903 h2s->body_len = body_len;
Christopher Fauletc2f1d0e2023-05-24 11:34:45 +02002904 h2s_propagate_term_flags(h2c, h2s);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002905
Willy Tarreau88d138e2019-01-02 19:38:14 +01002906 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002907 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002908 if (h2s->st == H2_SS_OPEN)
2909 h2s->st = H2_SS_HREM;
2910 else
2911 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002912 }
Willy Tarreau0d6e5d22023-02-20 17:05:10 +01002913 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau4869ed52023-10-13 18:11:59 +02002914 goto leave;
Willy Tarreau13278b42017-10-13 19:23:14 +02002915
2916 conn_err:
2917 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002918 out:
2919 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002920 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau4869ed52023-10-13 18:11:59 +02002921 h2s = NULL;
2922 goto leave;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002923
Willy Tarreau54310dc2024-01-12 18:36:57 +01002924 strm_err:
Willy Tarreau54310dc2024-01-12 18:36:57 +01002925 h2s = (struct h2s*)h2_error_stream;
2926
Willy Tarreau96a10c22018-12-23 18:30:44 +01002927 send_rst:
2928 /* make the demux send an RST for the current stream. We may only
2929 * do this if we're certain that the HEADERS frame was properly
2930 * decompressed so that the HPACK decoder is still kept up to date.
2931 */
2932 h2_release_buf(h2c, &rxbuf);
2933 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002934
Willy Tarreau7838a792019-08-12 18:42:03 +02002935 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau4869ed52023-10-13 18:11:59 +02002936
2937 leave:
2938 if (h2_fe_max_total_streams && h2c->stream_cnt >= h2_fe_max_total_streams) {
2939 /* we've had enough streams on this connection, time to renew it.
2940 * In order to gracefully do this, we'll advertise a stream limit
2941 * of the current one plus the max concurrent streams value in the
2942 * GOAWAY frame, so that we're certain that the client is aware of
2943 * the limit before creating a new stream, but knows we won't harm
2944 * the streams in flight. Remember that client stream IDs are odd
2945 * so we apply twice the concurrent streams value to the current
2946 * ID.
2947 */
2948 if (h2c->last_sid <= 0 ||
2949 h2c->last_sid > h2c->max_id + 2 * h2c_max_concurrent_streams(h2c)) {
2950 /* not set yet or was too high */
2951 h2c->last_sid = h2c->max_id + 2 * h2c_max_concurrent_streams(h2c);
2952 h2c_send_goaway_error(h2c, NULL);
2953 }
2954 }
2955
Willy Tarreau96a10c22018-12-23 18:30:44 +01002956 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002957}
2958
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002959/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2960 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2961 * errors here are reported as connection errors since it's impossible to
2962 * recover from such errors after the compression context has been altered.
2963 */
2964static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2965{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002966 struct buffer rxbuf = BUF_NULL;
2967 unsigned long long body_len = 0;
2968 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002969 int error;
2970
Willy Tarreau7838a792019-08-12 18:42:03 +02002971 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2972
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002973 if (!b_size(&h2c->dbuf)) {
2974 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002975 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002976 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002977
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002978 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2979 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002980 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002981 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002982
Christopher Faulet6884aa32019-09-23 15:28:20 +02002983 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7cfbb812023-01-26 16:02:01 +01002984 error = h2c_dec_hdrs(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len, h2s->upgrade_protocol);
Christopher Faulet6884aa32019-09-23 15:28:20 +02002985 }
2986 else {
2987 /* the connection was already killed by an RST, let's consume
2988 * the data and send another RST.
2989 */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01002990 error = h2c_dec_hdrs(h2c, &rxbuf, &flags, &body_len, NULL);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002991 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002992 h2c->st0 = H2_CS_FRAME_E;
2993 goto send_rst;
2994 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002995
Willy Tarreau25919232019-01-03 14:48:18 +01002996 /* unrecoverable error ? */
Willy Tarreau17c630b2023-01-19 23:58:11 +01002997 if (h2c->st0 >= H2_CS_ERROR) {
2998 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 +02002999 goto fail;
Willy Tarreau17c630b2023-01-19 23:58:11 +01003000 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003001
Willy Tarreau08bb1d62019-01-30 16:55:48 +01003002 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
3003 /* RFC7540#5.1 */
Willy Tarreauf0279f62024-03-11 07:35:19 +01003004 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003005 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 +01003006 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3007 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02003008 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02003009 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01003010 }
3011
Willy Tarreau25919232019-01-03 14:48:18 +01003012 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02003013 if (error == 0) {
3014 /* Demux not blocked because of the stream, it is an incomplete frame */
3015 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
3016 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02003017 goto fail; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02003018 }
Willy Tarreau25919232019-01-03 14:48:18 +01003019
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003020 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003021 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 +01003022 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003023 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02003024 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02003025 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003026 }
3027
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003028 if (se_fl_test(h2s->sd, SE_FL_ERROR) && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003029 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02003030 else if (h2s->flags & H2_SF_ES_RCVD) {
3031 if (h2s->st == H2_SS_OPEN)
3032 h2s->st = H2_SS_HREM;
3033 else if (h2s->st == H2_SS_HLOC)
3034 h2s_close(h2s);
3035 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003036
Christopher Fauletf95f8762021-01-22 11:59:07 +01003037 /* Unblock busy server h2s waiting for the response headers to validate
3038 * the tunnel establishment or the end of the response of an oborted
3039 * tunnel
3040 */
3041 if ((h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY)) == (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY) ||
3042 (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)) {
3043 TRACE_STATE("Unblock h2s blocked on tunnel establishment/abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3044 h2s->flags &= ~H2_SF_BLK_MBUSY;
3045 }
3046
Willy Tarreau9abb3172021-06-16 18:32:42 +02003047 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 +02003048 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003049 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02003050 fail:
3051 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
3052 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003053
3054 send_rst:
3055 /* make the demux send an RST for the current stream. We may only
3056 * do this if we're certain that the HEADERS frame was properly
3057 * decompressed so that the HPACK decoder is still kept up to date.
3058 */
3059 h2_release_buf(h2c, &rxbuf);
3060 h2c->st0 = H2_CS_FRAME_E;
3061
Willy Tarreau022e5e52020-09-10 09:33:15 +02003062 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 +02003063 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
3064 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003065}
3066
Willy Tarreau454f9052017-10-26 19:40:35 +02003067/* processes a DATA frame. Returns > 0 on success or zero on missing data.
3068 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
3069 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003070static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02003071{
3072 int error;
3073
Willy Tarreau7838a792019-08-12 18:42:03 +02003074 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3075
Willy Tarreau454f9052017-10-26 19:40:35 +02003076 /* note that empty DATA frames are perfectly valid and sometimes used
3077 * to signal an end of stream (with the ES flag).
3078 */
3079
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003080 if (!b_size(&h2c->dbuf) && h2c->dfl) {
3081 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02003082 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003083 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003084
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003085 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
3086 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02003087 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003088 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003089
3090 /* now either the frame is complete or the buffer is complete */
3091
Willy Tarreau454f9052017-10-26 19:40:35 +02003092 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
3093 /* RFC7540#6.1 */
3094 error = H2_ERR_STREAM_CLOSED;
Willy Tarreau3a36c9e2024-02-08 15:01:36 +01003095 goto strm_err_wu;
Willy Tarreau454f9052017-10-26 19:40:35 +02003096 }
3097
Christopher Faulet35feba62023-09-13 16:21:58 +02003098 if (!(h2s->flags & H2_SF_HEADERS_RCVD)) {
3099 /* RFC9113#8.1: The header section must be received before the message content */
Willy Tarreauf0279f62024-03-11 07:35:19 +01003100 h2c_report_glitch(h2c, 1);
Christopher Faulet35feba62023-09-13 16:21:58 +02003101 TRACE_ERROR("Unexpected DATA frame before the message headers", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3102 error = H2_ERR_PROTOCOL_ERROR;
3103 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau3a36c9e2024-02-08 15:01:36 +01003104 goto strm_err_wu;
Christopher Faulet35feba62023-09-13 16:21:58 +02003105 }
Christopher Faulet4f09ec82019-06-19 09:25:58 +02003106 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01003107 /* RFC7540#8.1.2 */
Willy Tarreauf0279f62024-03-11 07:35:19 +01003108 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003109 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 +01003110 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02003111 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau3a36c9e2024-02-08 15:01:36 +01003112 goto strm_err_wu;
Willy Tarreau1915ca22019-01-24 11:49:37 +01003113 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01003114 if (!(h2c->flags & H2_CF_IS_BACK) &&
3115 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT) &&
3116 ((h2c->dfl - h2c->dpl) || !(h2c->dff & H2_F_DATA_END_STREAM))) {
3117 /* a tunnel attempt was aborted but the client still try to send some raw data.
3118 * Thus the stream is closed with the CANCEL error. Here we take care it is not
3119 * an empty DATA Frame with the ES flag. The error is only handled if ES was
3120 * already sent to the client because depending on the scheduling, these data may
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003121 * have been sent before the server response but not handle here.
Christopher Faulet91b21dc2021-01-22 12:13:15 +01003122 */
3123 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3124 error = H2_ERR_CANCEL;
Willy Tarreau3a36c9e2024-02-08 15:01:36 +01003125 goto strm_err_wu;
Christopher Faulet91b21dc2021-01-22 12:13:15 +01003126 }
Willy Tarreau1915ca22019-01-24 11:49:37 +01003127
Willy Tarreaua56a6de2018-02-26 15:59:07 +01003128 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02003129 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01003130
Willy Tarreau454f9052017-10-26 19:40:35 +02003131 /* call the upper layers to process the frame, then let the upper layer
3132 * notify the stream about any change.
3133 */
Willy Tarreau7be4ee02022-05-18 07:31:41 +02003134 if (!h2s_sc(h2s)) {
Willy Tarreau082c4572019-08-06 10:11:02 +02003135 /* The upper layer has already closed, this may happen on
3136 * 4xx/redirects during POST, or when receiving a response
3137 * from an H2 server after the client has aborted.
3138 */
3139 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02003140 goto strm_err;
3141 }
3142
Willy Tarreau8f650c32017-11-21 19:36:21 +01003143 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003144 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01003145
Willy Tarreau721c9742017-11-07 11:05:42 +01003146 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02003147 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01003148 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02003149 }
3150
3151 /* check for completion : the callee will change this to FRAME_A or
3152 * FRAME_H once done.
3153 */
3154 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02003155 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02003156
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003157 /* last frame */
3158 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02003159 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01003160 if (h2s->st == H2_SS_OPEN)
3161 h2s->st = H2_SS_HREM;
3162 else
3163 h2s_close(h2s);
3164
Willy Tarreau1915ca22019-01-24 11:49:37 +01003165 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
3166 /* RFC7540#8.1.2 */
Willy Tarreauf0279f62024-03-11 07:35:19 +01003167 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003168 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 +01003169 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02003170 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01003171 goto strm_err;
3172 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003173 }
3174
Christopher Fauletf95f8762021-01-22 11:59:07 +01003175 /* Unblock busy server h2s waiting for the end of the response for an
3176 * aborted tunnel
3177 */
3178 if ((h2c->flags & H2_CF_IS_BACK) &&
3179 (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)) {
3180 TRACE_STATE("Unblock h2s blocked on tunnel abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3181 h2s->flags &= ~H2_SF_BLK_MBUSY;
3182 }
3183
Willy Tarreau7838a792019-08-12 18:42:03 +02003184 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003185 return 1;
3186
Willy Tarreau3a36c9e2024-02-08 15:01:36 +01003187 strm_err_wu:
3188 /* stream error before the frame was taken into account, we're
3189 * going to kill the stream but must still update the connection's
3190 * window.
3191 */
3192 h2c->rcvd_c += h2c->dfl - h2c->dpl;
Willy Tarreau454f9052017-10-26 19:40:35 +02003193 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01003194 h2s_error(h2s, error);
3195 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003196 fail:
3197 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 +02003198 return 0;
3199}
3200
Willy Tarreau63864812019-08-07 14:25:20 +02003201/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
3202 * valid for the current stream state. This is needed only after parsing the
3203 * frame header but in practice it can be performed at any time during
3204 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
3205 * or 0 in case of error, in which case either h2s or h2c will carry an error.
3206 */
3207static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
3208{
Willy Tarreau7838a792019-08-12 18:42:03 +02003209 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
3210
Willy Tarreau63864812019-08-07 14:25:20 +02003211 if (h2s->st == H2_SS_IDLE &&
3212 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
3213 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
3214 * this state MUST be treated as a connection error
3215 */
Willy Tarreauf0279f62024-03-11 07:35:19 +01003216 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003217 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 +02003218 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003219 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02003220 /* only log if no other stream can report the error */
3221 sess_log(h2c->conn->owner);
3222 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003223 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02003224 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 +02003225 return 0;
3226 }
3227
Willy Tarreau57a18162019-11-24 14:57:53 +01003228 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
3229 /* only PUSH_PROMISE would be permitted here */
Willy Tarreauf0279f62024-03-11 07:35:19 +01003230 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003231 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 +01003232 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003233 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau57a18162019-11-24 14:57:53 +01003234 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
3235 return 0;
3236 }
3237
Willy Tarreau63864812019-08-07 14:25:20 +02003238 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
3239 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
3240 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
3241 * this state MUST be treated as a stream error.
3242 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
3243 * PUSH_PROMISE/CONTINUATION cause connection errors.
3244 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01003245 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreauf0279f62024-03-11 07:35:19 +01003246 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003247 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 +02003248 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003249 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003250 }
3251 else {
Willy Tarreauf0279f62024-03-11 07:35:19 +01003252 h2c_report_glitch(h2c, 1);
Willy Tarreau63864812019-08-07 14:25:20 +02003253 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003254 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003255 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 +02003256 return 0;
3257 }
3258
3259 /* Below the management of frames received in closed state is a
3260 * bit hackish because the spec makes strong differences between
3261 * streams closed by receiving RST, sending RST, and seeing ES
3262 * in both directions. In addition to this, the creation of a
3263 * new stream reusing the identifier of a closed one will be
3264 * detected here. Given that we cannot keep track of all closed
3265 * streams forever, we consider that unknown closed streams were
3266 * closed on RST received, which allows us to respond with an
3267 * RST without breaking the connection (eg: to abort a transfer).
3268 * Some frames have to be silently ignored as well.
3269 */
3270 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
3271 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
3272 /* #5.1.1: The identifier of a newly
3273 * established stream MUST be numerically
3274 * greater than all streams that the initiating
3275 * endpoint has opened or reserved. This
3276 * governs streams that are opened using a
3277 * HEADERS frame and streams that are reserved
3278 * using PUSH_PROMISE. An endpoint that
3279 * receives an unexpected stream identifier
3280 * MUST respond with a connection error.
3281 */
Willy Tarreauf0279f62024-03-11 07:35:19 +01003282 h2c_report_glitch(h2c, 1);
Willy Tarreau63864812019-08-07 14:25:20 +02003283 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003284 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 +02003285 return 0;
3286 }
3287
Willy Tarreau4c08f122019-09-26 08:47:15 +02003288 if (h2s->flags & H2_SF_RST_RCVD &&
3289 !(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 +02003290 /* RFC7540#5.1:closed: an endpoint that
3291 * receives any frame other than PRIORITY after
3292 * receiving a RST_STREAM MUST treat that as a
3293 * stream error of type STREAM_CLOSED.
3294 *
3295 * Note that old streams fall into this category
3296 * and will lead to an RST being sent.
3297 *
3298 * However, we cannot generalize this to all frame types. Those
3299 * carrying compression state must still be processed before
3300 * being dropped or we'll desynchronize the decoder. This can
3301 * happen with request trailers received after sending an
3302 * RST_STREAM, or with header/trailers responses received after
3303 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02003304 *
3305 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003306 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003307 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003308 */
Willy Tarreau3a36c9e2024-02-08 15:01:36 +01003309 if (h2c->dft == H2_FT_DATA) {
3310 /* even if we reject out-of-stream DATA, it must
3311 * still count against the connection's flow control.
3312 */
3313 h2c->rcvd_c += h2c->dfl - h2c->dpl;
3314 }
3315
Willy Tarreauf0279f62024-03-11 07:35:19 +01003316 h2c_report_glitch(h2c, 1);
Willy Tarreau63864812019-08-07 14:25:20 +02003317 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3318 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003319 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 +02003320 return 0;
3321 }
3322
3323 /* RFC7540#5.1:closed: if this state is reached as a
3324 * result of sending a RST_STREAM frame, the peer that
3325 * receives the RST_STREAM might have already sent
3326 * frames on the stream that cannot be withdrawn. An
3327 * endpoint MUST ignore frames that it receives on
3328 * closed streams after it has sent a RST_STREAM
3329 * frame. An endpoint MAY choose to limit the period
3330 * over which it ignores frames and treat frames that
3331 * arrive after this time as being in error.
3332 */
3333 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3334 /* RFC7540#5.1:closed: any frame other than
3335 * PRIO/WU/RST in this state MUST be treated as
3336 * a connection error
3337 */
3338 if (h2c->dft != H2_FT_RST_STREAM &&
3339 h2c->dft != H2_FT_PRIORITY &&
3340 h2c->dft != H2_FT_WINDOW_UPDATE) {
Willy Tarreauf0279f62024-03-11 07:35:19 +01003341 h2c_report_glitch(h2c, 1);
Willy Tarreau63864812019-08-07 14:25:20 +02003342 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003343 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 +02003344 return 0;
3345 }
3346 }
3347 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003348 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003349 return 1;
3350}
3351
Willy Tarreaubc933932017-10-09 16:21:43 +02003352/* process Rx frames to be demultiplexed */
3353static void h2_process_demux(struct h2c *h2c)
3354{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003355 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003356 struct h2_fh hdr;
3357 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003358 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003359
Willy Tarreau7838a792019-08-12 18:42:03 +02003360 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3361
Willy Tarreau081d4722017-05-16 21:51:05 +02003362 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003363 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003364
3365 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3366 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003367 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003368 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003369 goto out;
3370
Willy Tarreau52eed752017-09-22 15:05:09 +02003371 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3372 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003373 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau22892322024-01-17 16:57:23 +01003374 if (b_data(&h2c->dbuf) ||
3375 !(((const struct session *)h2c->conn->owner)->fe->options & (PR_O_NULLNOLOG|PR_O_IGNORE_PRB)))
Willy Tarreauf0279f62024-03-11 07:35:19 +01003376 h2c_report_glitch(h2c, 1);
Willy Tarreau22892322024-01-17 16:57:23 +01003377
Willy Tarreau7838a792019-08-12 18:42:03 +02003378 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003379 h2c->st0 = H2_CS_ERROR2;
Willy Tarreauee4684f2021-06-17 08:08:48 +02003380 if (b_data(&h2c->dbuf) ||
Christopher Faulet3f35da22021-07-26 10:18:35 +02003381 !(((const struct session *)h2c->conn->owner)->fe->options & (PR_O_NULLNOLOG|PR_O_IGNORE_PRB)))
Willy Tarreauee4684f2021-06-17 08:08:48 +02003382 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003383 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003384 goto done;
Willy Tarreau52eed752017-09-22 15:05:09 +02003385 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003386 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003387
3388 h2c->max_id = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02003389 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaued2b9d92022-08-18 15:30:41 +02003390 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau52eed752017-09-22 15:05:09 +02003391 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003392
3393 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003394 /* ensure that what is pending is a valid SETTINGS frame
3395 * without an ACK.
3396 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003397 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 +02003398 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003399 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003400 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003401 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreauf0279f62024-03-11 07:35:19 +01003402 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003403 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 +02003404 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003405 if (!(h2c->flags & H2_CF_IS_BACK))
3406 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003407 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003408 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003409 }
3410
3411 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3412 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreauf0279f62024-03-11 07:35:19 +01003413 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003414 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 +02003415 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3416 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003417 if (!(h2c->flags & H2_CF_IS_BACK))
3418 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003419 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003420 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003421 }
3422
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003423 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003424 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreauf0279f62024-03-11 07:35:19 +01003425 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003426 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 +02003427 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3428 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003429 if (!(h2c->flags & H2_CF_IS_BACK))
3430 sess_log(h2c->conn->owner);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003431 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003432 }
3433
Willy Tarreau3bf69182018-12-21 15:34:50 +01003434 /* that's OK, switch to FRAME_P to process it. This is
3435 * a SETTINGS frame whose header has already been
3436 * deleted above.
3437 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003438 padlen = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +02003439 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003440 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003441 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003442 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003443
3444 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003445 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003446 int ret = 0;
3447
Willy Tarreau7838a792019-08-12 18:42:03 +02003448 if (!b_data(&h2c->dbuf)) {
3449 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003450 h2c->flags |= H2_CF_DEM_SHORT_READ;
3451 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003452 }
3453
3454 if (h2c->st0 >= H2_CS_ERROR) {
3455 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003456 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003457 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003458
3459 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003460 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003461 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr)) {
3462 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003463 break;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003464 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003465
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003466 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreauf0279f62024-03-11 07:35:19 +01003467 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003468 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 +02003469 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003470 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003471 /* only log if no other stream can report the error */
3472 sess_log(h2c->conn->owner);
3473 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003474 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003475 break;
3476 }
3477
Willy Tarreau617592c2022-06-08 16:32:22 +02003478 if (h2c->rcvd_s && h2c->dsi != hdr.sid) {
3479 /* changed stream with a pending WU, need to
3480 * send it now.
3481 */
3482 TRACE_PROTO("sending stream WINDOW_UPDATE frame on stream switch", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
3483 ret = h2c_send_strm_wu(h2c);
3484 if (ret <= 0)
3485 break;
3486 }
3487
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003488 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003489 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3490 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3491 * we read the pad length and drop it from the remaining
3492 * payload (one byte + the 9 remaining ones = 10 total
3493 * removed), so we have a frame payload starting after the
3494 * pad len. Flow controlled frames (DATA) also count the
3495 * padlen in the flow control, so it must be adjusted.
3496 */
3497 if (hdr.len < 1) {
Willy Tarreauf0279f62024-03-11 07:35:19 +01003498 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003499 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 +01003500 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003501 if (!(h2c->flags & H2_CF_IS_BACK))
3502 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003503 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003504 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003505 }
3506 hdr.len--;
3507
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003508 if (b_data(&h2c->dbuf) < 10) {
3509 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003510 break; // missing padlen
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003511 }
Willy Tarreau3bf69182018-12-21 15:34:50 +01003512
3513 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3514
3515 if (padlen > hdr.len) {
Willy Tarreauf0279f62024-03-11 07:35:19 +01003516 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003517 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 +01003518 /* RFC7540#6.1 : pad length = length of
3519 * frame payload or greater => error.
3520 */
3521 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003522 if (!(h2c->flags & H2_CF_IS_BACK))
3523 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003524 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003525 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003526 }
3527
3528 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3529 h2c->rcvd_c++;
3530 h2c->rcvd_s++;
3531 }
3532 b_del(&h2c->dbuf, 1);
3533 }
3534 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003535
3536 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003537 h2c->dfl = hdr.len;
3538 h2c->dsi = hdr.sid;
3539 h2c->dft = hdr.ft;
3540 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003541 h2c->dpl = padlen;
Willy Tarreau0f458712022-08-18 11:19:57 +02003542 h2c->flags |= H2_CF_DEM_IN_PROGRESS;
Willy Tarreau73db4342019-09-25 07:28:44 +02003543 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 +02003544 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003545
3546 /* check for minimum basic frame format validity */
3547 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3548 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreauf0279f62024-03-11 07:35:19 +01003549 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003550 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 +01003551 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003552 if (!(h2c->flags & H2_CF_IS_BACK))
3553 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003554 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003555 goto done;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003556 }
Willy Tarreau15a47332022-03-18 15:57:34 +01003557
3558 /* transition to HEADERS frame ends the keep-alive idle
Willy Tarreauf279a2f2023-05-30 15:42:35 +02003559 * timer and starts the http-request idle delay. It uses
3560 * the idle_start timer as well.
Willy Tarreau15a47332022-03-18 15:57:34 +01003561 */
3562 if (hdr.ft == H2_FT_HEADERS)
3563 h2c->idle_start = now_ms;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003564 }
3565
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003566 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3567 * H2_CS_FRAME_P indicates an incomplete previous operation
3568 * (most often the first attempt) and requires some validity
3569 * checks for the frame and the current state. The two other
3570 * ones are set after completion (or abortion) and must skip
3571 * validity checks.
3572 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003573 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3574
Willy Tarreau7be4ee02022-05-18 07:31:41 +02003575 if (tmp_h2s != h2s && h2s && h2s_sc(h2s) &&
Willy Tarreau567beb82018-12-18 16:52:44 +01003576 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003577 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003578 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003579 (h2s->flags & H2_SF_ES_RCVD) ||
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003580 se_fl_test(h2s->sd, SE_FL_ERROR | SE_FL_ERR_PENDING | SE_FL_EOS))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003581 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003582 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 +02003583 se_fl_set(h2s->sd, SE_FL_RCV_MORE);
Willy Tarreau7e094452018-12-19 18:08:52 +01003584 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003585 }
3586 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003587
Willy Tarreau63864812019-08-07 14:25:20 +02003588 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003589 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3590 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003591 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003592 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003593
Willy Tarreau7e98c052017-10-10 15:56:59 +02003594 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003595 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003596 if (h2c->st0 == H2_CS_FRAME_P) {
3597 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003598 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003599 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003600 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003601
Willy Tarreau7838a792019-08-12 18:42:03 +02003602 if (h2c->st0 == H2_CS_FRAME_A) {
3603 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 +02003604 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003605 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003606 break;
3607
Willy Tarreaucf68c782017-10-10 17:11:41 +02003608 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003609 if (h2c->st0 == H2_CS_FRAME_P) {
3610 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003611 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003612 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003613
Willy Tarreau7838a792019-08-12 18:42:03 +02003614 if (h2c->st0 == H2_CS_FRAME_A) {
3615 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 +02003616 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003617 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003618 break;
3619
Willy Tarreau26f95952017-07-27 17:18:30 +02003620 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003621 if (h2c->st0 == H2_CS_FRAME_P) {
3622 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 +02003623 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003624 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003625 break;
3626
Willy Tarreau61290ec2017-10-17 08:19:21 +02003627 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003628 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003629 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3630 * frames' parsers consume all following CONTINUATION
3631 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003632 */
Willy Tarreauf0279f62024-03-11 07:35:19 +01003633 h2c_report_glitch(h2c, 1);
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003634 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 +01003635 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003636 if (!(h2c->flags & H2_CF_IS_BACK))
3637 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003638 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003639 goto done;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003640
Willy Tarreau13278b42017-10-13 19:23:14 +02003641 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003642 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003643 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003644 if (h2c->flags & H2_CF_IS_BACK)
3645 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3646 else
3647 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003648 if (tmp_h2s) {
3649 h2s = tmp_h2s;
3650 ret = 1;
3651 }
3652 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003653 HA_ATOMIC_INC(&h2c->px_counters->headers_rcvd);
Willy Tarreau13278b42017-10-13 19:23:14 +02003654 break;
3655
Willy Tarreau454f9052017-10-26 19:40:35 +02003656 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003657 if (h2c->st0 == H2_CS_FRAME_P) {
3658 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003659 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003660 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003661 HA_ATOMIC_INC(&h2c->px_counters->data_rcvd);
Willy Tarreau454f9052017-10-26 19:40:35 +02003662
Willy Tarreau7838a792019-08-12 18:42:03 +02003663 if (h2c->st0 == H2_CS_FRAME_A) {
Willy Tarreau617592c2022-06-08 16:32:22 +02003664 /* rcvd_s will suffice to trigger the sending of a WU */
3665 h2c->st0 = H2_CS_FRAME_H;
Willy Tarreau7838a792019-08-12 18:42:03 +02003666 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003667 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003668
Willy Tarreau92153fc2017-12-03 19:46:19 +01003669 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003670 if (h2c->st0 == H2_CS_FRAME_P) {
3671 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003672 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003673 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003674 break;
3675
Willy Tarreaucd234e92017-08-18 10:59:39 +02003676 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003677 if (h2c->st0 == H2_CS_FRAME_P) {
3678 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 +02003679 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003680 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003681 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_rcvd);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003682 break;
3683
Willy Tarreaue96b0922017-10-30 00:28:29 +01003684 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003685 if (h2c->st0 == H2_CS_FRAME_P) {
3686 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003687 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003688 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003689 HA_ATOMIC_INC(&h2c->px_counters->goaway_rcvd);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003690 break;
3691
Willy Tarreau1c661982017-10-30 13:52:01 +01003692 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003693 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003694 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003695 /* drop frames that we ignore. They may be larger than
3696 * the buffer so we drain all of their contents until
3697 * we reach the end.
3698 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003699 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3700 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003701 h2c->dfl -= ret;
3702 ret = h2c->dfl == 0;
3703 }
3704
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003705 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003706 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003707 if (h2s->st == H2_SS_ERROR) {
3708 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 +01003709 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003710 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003711
Willy Tarreau7838a792019-08-12 18:42:03 +02003712 if (h2c->st0 == H2_CS_FRAME_E) {
3713 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 +01003714 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003715 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003716
Willy Tarreau7e98c052017-10-10 15:56:59 +02003717 /* error or missing data condition met above ? */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003718 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02003719 break;
3720
3721 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003722 if (h2c->dfl)
3723 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003724 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3725 b_del(&h2c->dbuf, ret);
3726 h2c->dfl -= ret;
3727 if (!h2c->dfl) {
Willy Tarreau0f458712022-08-18 11:19:57 +02003728 h2c->flags &= ~H2_CF_DEM_IN_PROGRESS;
Christopher Faulet5112a602019-09-26 16:38:28 +02003729 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3730 h2c->st0 = H2_CS_FRAME_H;
Christopher Faulet5112a602019-09-26 16:38:28 +02003731 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003732 }
3733 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003734
Willy Tarreau617592c2022-06-08 16:32:22 +02003735 if (h2c->rcvd_s > 0 &&
Christopher Faulet68ee7842022-10-12 10:21:33 +02003736 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM))) {
Willy Tarreau617592c2022-06-08 16:32:22 +02003737 TRACE_PROTO("sending stream WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn, h2s);
3738 h2c_send_strm_wu(h2c);
3739 }
3740
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003741 if (h2c->rcvd_c > 0 &&
Christopher Faulet68ee7842022-10-12 10:21:33 +02003742 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003743 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003744 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003745 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003746
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003747 done:
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003748 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_DEM_SHORT_READ)) {
3749 if (h2c->flags & H2_CF_RCVD_SHUT)
3750 h2c->flags |= H2_CF_END_REACHED;
3751 }
3752
Willy Tarreau7be4ee02022-05-18 07:31:41 +02003753 if (h2s && h2s_sc(h2s) &&
Willy Tarreau567beb82018-12-18 16:52:44 +01003754 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003755 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003756 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003757 (h2s->flags & H2_SF_ES_RCVD) ||
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003758 se_fl_test(h2s->sd, SE_FL_ERROR | SE_FL_ERR_PENDING | SE_FL_EOS))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003759 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003760 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 +02003761 se_fl_set(h2s->sd, SE_FL_RCV_MORE);
Willy Tarreau7e094452018-12-19 18:08:52 +01003762 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003763 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003764
Willy Tarreau7838a792019-08-12 18:42:03 +02003765 if (old_iw != h2c->miw) {
3766 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003767 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003768 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003769
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003770 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003771 out:
3772 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003773 return;
Willy Tarreaubc933932017-10-09 16:21:43 +02003774}
3775
Willy Tarreau989539b2020-01-10 17:01:29 +01003776/* resume each h2s eligible for sending in list head <head> */
3777static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3778{
3779 struct h2s *h2s, *h2s_back;
3780
3781 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3782
3783 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3784 if (h2c->mws <= 0 ||
3785 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3786 h2c->st0 >= H2_CS_ERROR)
3787 break;
3788
3789 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003790
Willy Tarreaud9464162020-01-10 18:25:07 +01003791 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003792 continue;
3793
Willy Tarreau5723f292020-01-10 15:16:57 +01003794 /* If the sender changed his mind and unsubscribed, let's just
3795 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003796 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003797 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3798 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003799 LIST_DEL_INIT(&h2s->list);
3800 continue;
3801 }
3802
Willy Tarreauf96508a2020-01-10 11:12:48 +01003803 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003804 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003805 tasklet_wakeup(h2s->subs->tasklet);
3806 h2s->subs->events &= ~SUB_RETRY_SEND;
3807 if (!h2s->subs->events)
3808 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003809 }
3810 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3811 tasklet_wakeup(h2s->shut_tl);
3812 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003813 }
3814
3815 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3816}
3817
Willy Tarreaude4a5382023-10-17 08:25:19 +02003818/* removes a stream from the list it may be in. If a stream has recently been
3819 * appended to the send_list, it might have been waiting on this one when
3820 * entering h2_snd_buf() and expecting it to complete before starting to send
3821 * in turn. For this reason we check (and clear) H2_CF_WAIT_INLIST to detect
3822 * this condition, and we try to resume sending streams if it happens. Note
3823 * that we don't need to do it for fctl_list as this list is relevant before
3824 * (only consulted after) a window update on the connection, and not because
3825 * of any competition with other streams.
3826 */
3827static inline void h2_remove_from_list(struct h2s *h2s)
3828{
3829 struct h2c *h2c = h2s->h2c;
3830
3831 if (!LIST_INLIST(&h2s->list))
3832 return;
3833
3834 LIST_DEL_INIT(&h2s->list);
3835 if (h2c->flags & H2_CF_WAIT_INLIST) {
3836 h2c->flags &= ~H2_CF_WAIT_INLIST;
3837 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
3838 }
3839}
3840
Willy Tarreaubc933932017-10-09 16:21:43 +02003841/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3842 * the end.
3843 */
3844static int h2_process_mux(struct h2c *h2c)
3845{
Willy Tarreau7838a792019-08-12 18:42:03 +02003846 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3847
Willy Tarreau01b44822018-10-03 14:26:37 +02003848 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3849 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3850 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3851 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003852 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003853 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003854 goto fail;
3855 }
3856 h2c->st0 = H2_CS_SETTINGS1;
3857 }
3858 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003859 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003860 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003861 }
3862
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003863 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003864 if (h2c->rcvd_s > 0 &&
3865 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3866 h2c_send_strm_wu(h2c) < 0)
3867 goto fail;
3868
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003869 if (h2c->rcvd_c > 0 &&
3870 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3871 h2c_send_conn_wu(h2c) < 0)
3872 goto fail;
3873
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003874 /* First we always process the flow control list because the streams
3875 * waiting there were already elected for immediate emission but were
3876 * blocked just on this.
3877 */
Willy Tarreaude4a5382023-10-17 08:25:19 +02003878 h2c->flags &= ~H2_CF_WAIT_INLIST;
Willy Tarreau989539b2020-01-10 17:01:29 +01003879 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3880 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003881
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003882 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003883 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003884 if (h2c->st0 == H2_CS_ERROR) {
3885 if (h2c->max_id >= 0) {
3886 h2c_send_goaway_error(h2c, NULL);
3887 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003888 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003889 }
3890
3891 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3892 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003893 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003894 done:
3895 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3896 return 1;
3897 out0:
3898 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3899 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003900}
3901
Willy Tarreau62f52692017-10-08 23:01:42 +02003902
Willy Tarreau479998a2018-11-18 06:30:59 +01003903/* Attempt to read data, and subscribe if none available.
3904 * The function returns 1 if data has been received, otherwise zero.
3905 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003906static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003907{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003908 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003909 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003910 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003911 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003912
Willy Tarreau7838a792019-08-12 18:42:03 +02003913 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3914
3915 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3916 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003917 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003918 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003919
Willy Tarreau7838a792019-08-12 18:42:03 +02003920 if (!h2_recv_allowed(h2c)) {
3921 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003922 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003923 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003924
Willy Tarreau44e973f2018-03-01 17:49:30 +01003925 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003926 if (!buf) {
3927 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003928 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003929 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003930 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003931
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003932 if (!b_data(buf)) {
3933 /* try to pre-align the buffer like the
3934 * rxbufs will be to optimize memory copies. We'll make
3935 * sure that the frame header lands at the end of the
3936 * HTX block to alias it upon recv. We cannot use the
3937 * head because rcv_buf() will realign the buffer if
3938 * it's empty. Thus we cheat and pretend we already
3939 * have a few bytes there.
3940 */
3941 max = buf_room_for_htx_data(buf) + 9;
3942 buf->head = sizeof(struct htx) - 9;
3943 }
3944 else
3945 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003946
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003947 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003948
Christopher Fauletde9d6052021-04-23 12:25:18 +02003949 if (max && !ret && h2_recv_allowed(h2c)) {
3950 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
3951 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003952 } else if (ret) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02003953 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003954 h2c->flags &= ~H2_CF_DEM_SHORT_READ;
3955 }
Olivier Houchard81a15af2018-10-19 17:26:49 +02003956
Christopher Fauletde9d6052021-04-23 12:25:18 +02003957 if (conn_xprt_read0_pending(h2c->conn)) {
3958 TRACE_DATA("received read0", H2_EV_H2C_RECV, h2c->conn);
3959 h2c->flags |= H2_CF_RCVD_SHUT;
3960 }
Christopher Fauletff7925d2022-10-11 19:12:40 +02003961 if (h2c->conn->flags & CO_FL_ERROR) {
3962 TRACE_DATA("connection error", H2_EV_H2C_RECV, h2c->conn);
3963 h2c->flags |= H2_CF_ERROR;
3964 }
Christopher Fauletde9d6052021-04-23 12:25:18 +02003965
Olivier Houcharda1411e62018-08-17 18:42:48 +02003966 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003967 h2_release_buf(h2c, &h2c->dbuf);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003968 goto end;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003969 }
3970
Willy Tarreau7838a792019-08-12 18:42:03 +02003971 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003972 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003973 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003974 }
3975
Christopher Fauletff7925d2022-10-11 19:12:40 +02003976 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02003977 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003978 return !!ret || (h2c->flags & (H2_CF_RCVD_SHUT|H2_CF_ERROR));
Willy Tarreau62f52692017-10-08 23:01:42 +02003979}
3980
Willy Tarreau479998a2018-11-18 06:30:59 +01003981/* Try to send data if possible.
3982 * The function returns 1 if data have been sent, otherwise zero.
3983 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003984static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003985{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003986 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003987 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003988 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003989
Willy Tarreau7838a792019-08-12 18:42:03 +02003990 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003991
Christopher Fauletff7925d2022-10-11 19:12:40 +02003992 if (h2c->flags & (H2_CF_ERROR|H2_CF_ERR_PENDING)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003993 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003994 if (h2c->flags & H2_CF_RCVD_SHUT)
3995 h2c->flags |= H2_CF_ERROR;
3996 b_reset(br_tail(h2c->mbuf));
Willy Tarreauf279a2f2023-05-30 15:42:35 +02003997 h2c->idle_start = now_ms;
Willy Tarreau7838a792019-08-12 18:42:03 +02003998 return 1;
3999 }
Olivier Houchard7505f942018-08-21 18:10:44 +02004000
Willy Tarreaubc933932017-10-09 16:21:43 +02004001 /* This loop is quite simple : it tries to fill as much as it can from
4002 * pending streams into the existing buffer until it's reportedly full
4003 * or the end of send requests is reached. Then it tries to send this
4004 * buffer's contents out, marks it not full if at least one byte could
4005 * be sent, and tries again.
4006 *
4007 * The snd_buf() function normally takes a "flags" argument which may
4008 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
4009 * data immediately comes and CO_SFL_STREAMER to indicate that the
4010 * connection is streaming lots of data (used to increase TLS record
4011 * size at the expense of latency). The former can be sent any time
4012 * there's a buffer full flag, as it indicates at least one stream
4013 * attempted to send and failed so there are pending data. An
4014 * alternative would be to set it as long as there's an active stream
4015 * but that would be problematic for ACKs until we have an absolute
4016 * guarantee that all waiters have at least one byte to send. The
4017 * latter should possibly not be set for now.
4018 */
4019
4020 done = 0;
Christopher Faulet21fb6bd2023-03-28 12:16:53 +02004021 while (!(conn->flags & CO_FL_WAIT_XPRT) && !done) {
Willy Tarreaubc933932017-10-09 16:21:43 +02004022 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004023 unsigned int released = 0;
4024 struct buffer *buf;
Willy Tarreau464fa062023-03-17 16:09:14 +01004025 uint to_send;
Willy Tarreaubc933932017-10-09 16:21:43 +02004026
4027 /* fill as much as we can into the current buffer */
4028 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
4029 done = h2_process_mux(h2c);
4030
Olivier Houchard2b094432019-01-29 18:28:36 +01004031 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02004032 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01004033
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02004034 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
Willy Tarreaue6dc7a02021-10-21 17:30:06 +02004035 (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02004036 break;
4037
Christopher Faulet68ee7842022-10-12 10:21:33 +02004038 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM))
Willy Tarreaubc933932017-10-09 16:21:43 +02004039 flags |= CO_SFL_MSG_MORE;
4040
Willy Tarreau464fa062023-03-17 16:09:14 +01004041 to_send = br_count(h2c->mbuf);
4042 if (to_send > 1) {
Willy Tarreau14ea98a2023-03-16 17:30:30 +01004043 /* usually we want to emit small TLS records to speed
4044 * up the decoding on the client. That's what is being
4045 * done by default. However if there is more than one
4046 * buffer being allocated, we're streaming large data
4047 * so we stich to large records.
4048 */
4049 flags |= CO_SFL_STREAMER;
4050 }
4051
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004052 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
4053 if (b_data(buf)) {
Willy Tarreau464fa062023-03-17 16:09:14 +01004054 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf),
4055 flags | (to_send > 1 ? CO_SFL_MSG_MORE : 0));
Willy Tarreau7f1265a2019-05-29 17:36:37 +02004056 if (!ret) {
4057 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004058 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02004059 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004060 sent = 1;
Willy Tarreau464fa062023-03-17 16:09:14 +01004061 to_send--;
Willy Tarreau022e5e52020-09-10 09:33:15 +02004062 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004063 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02004064 if (b_data(buf)) {
4065 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004066 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02004067 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004068 }
4069 b_free(buf);
4070 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02004071 }
Willy Tarreaubc933932017-10-09 16:21:43 +02004072
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004073 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01004074 offer_buffers(NULL, released);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004075
Willy Tarreau93c55112023-03-16 16:47:44 +01004076 /* Normally if wrote at least one byte, the buffer is not full
4077 * anymore. However, if it was marked full because all of its
4078 * buffers were used, we don't want to instantly wake up many
4079 * streams because we'd create a thundering herd effect, notably
4080 * when data are flushed in small chunks. Instead we wait for
4081 * the buffer to be decongested again before allowing to send
4082 * again. It also has the added benefit of not pumping more
4083 * data from the other side when it's known that this one is
4084 * still congested.
4085 */
4086 if (sent && br_single(h2c->mbuf))
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02004087 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02004088 }
4089
Christopher Fauletff7925d2022-10-11 19:12:40 +02004090 if (conn->flags & CO_FL_ERROR) {
4091 h2c->flags |= H2_CF_ERR_PENDING;
4092 if (h2c->flags & H2_CF_RCVD_SHUT)
4093 h2c->flags |= H2_CF_ERROR;
Willy Tarreau51330962019-05-26 09:38:07 +02004094 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02004095 }
Christopher Fauletff7925d2022-10-11 19:12:40 +02004096
Olivier Houchard6ff20392018-07-17 18:46:31 +02004097 /* We're not full anymore, so we can wake any task that are waiting
4098 * for us.
4099 */
Willy Tarreaude4a5382023-10-17 08:25:19 +02004100 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H) {
4101 h2c->flags &= ~H2_CF_WAIT_INLIST;
Willy Tarreau989539b2020-01-10 17:01:29 +01004102 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaude4a5382023-10-17 08:25:19 +02004103 }
Olivier Houchardd360ac62019-03-22 17:37:16 +01004104
Olivier Houchard910b2bc2018-07-17 18:49:38 +02004105 /* We're done, no more to send */
Christopher Faulet21fb6bd2023-03-28 12:16:53 +02004106 if (!(conn->flags & CO_FL_WAIT_XPRT) && !br_data(h2c->mbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004107 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Willy Tarreau936db562023-10-18 11:39:43 +02004108 if (h2c->flags & H2_CF_MBUF_HAS_DATA && !h2c->nb_sc) {
4109 h2c->flags &= ~H2_CF_MBUF_HAS_DATA;
Willy Tarreauf279a2f2023-05-30 15:42:35 +02004110 h2c->idle_start = now_ms;
Willy Tarreau936db562023-10-18 11:39:43 +02004111 }
Christopher Fauletff7925d2022-10-11 19:12:40 +02004112 goto end;
Willy Tarreau7838a792019-08-12 18:42:03 +02004113 }
Christopher Faulet21fb6bd2023-03-28 12:16:53 +02004114
Willy Tarreau7838a792019-08-12 18:42:03 +02004115 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
4116 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01004117 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02004118 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004119 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Christopher Fauletff7925d2022-10-11 19:12:40 +02004120end:
4121 return sent || (h2c->flags & (H2_CF_ERR_PENDING|H2_CF_ERROR));
Olivier Houchard29fb89d2018-08-02 18:56:36 +02004122}
4123
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004124/* this is the tasklet referenced in h2c->wait_event.tasklet */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004125struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state)
Olivier Houchard29fb89d2018-08-02 18:56:36 +02004126{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004127 struct connection *conn;
4128 struct tasklet *tl = (struct tasklet *)t;
4129 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004130 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02004131 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02004132
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004133 if (state & TASK_F_USR1) {
4134 /* the tasklet was idling on an idle connection, it might have
4135 * been stolen, let's be careful!
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004136 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004137 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4138 if (t->context == NULL) {
4139 /* The connection has been taken over by another thread,
4140 * we're no longer responsible for it, so just free the
4141 * tasklet, and do nothing.
4142 */
4143 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4144 tasklet_free(tl);
Willy Tarreau74163142021-03-13 11:30:19 +01004145 t = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004146 goto leave;
4147 }
4148 conn = h2c->conn;
4149 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004150
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004151 /* Remove the connection from the list, to be sure nobody attempts
4152 * to use it while we handle the I/O events
4153 */
Christopher Faulet3a7b5392023-03-16 11:43:05 +01004154 conn_in_list = conn_get_idle_flag(conn);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004155 if (conn_in_list)
4156 conn_delete_from_tree(&conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004157
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004158 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4159 } else {
4160 /* we're certain the connection was not in an idle list */
4161 conn = h2c->conn;
4162 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4163 conn_in_list = 0;
4164 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004165
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004166 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02004167 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004168 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02004169 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01004170 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004171 ret = h2_process(h2c);
4172
4173 /* If we were in an idle list, we want to add it back into it,
4174 * unless h2_process() returned -1, which mean it has destroyed
4175 * the connection (testing !ret is enough, if h2_process() wasn't
4176 * called then ret will be 0 anyway.
4177 */
Willy Tarreau74163142021-03-13 11:30:19 +01004178 if (ret < 0)
4179 t = NULL;
4180
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004181 if (!ret && conn_in_list) {
4182 struct server *srv = objt_server(conn->target);
4183
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004184 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004185 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau85223482022-09-29 20:32:43 +02004186 eb64_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004187 else
Willy Tarreau85223482022-09-29 20:32:43 +02004188 eb64_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004189 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004190 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004191
Willy Tarreau38468772020-06-28 00:31:13 +02004192leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02004193 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreau74163142021-03-13 11:30:19 +01004194 return t;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004195}
Willy Tarreaua2af5122017-10-09 11:56:46 +02004196
Willy Tarreau62f52692017-10-08 23:01:42 +02004197/* callback called on any event by the connection handler.
4198 * It applies changes and returns zero, or < 0 if it wants immediate
4199 * destruction of the connection (which normally doesn not happen in h2).
4200 */
Olivier Houchard7505f942018-08-21 18:10:44 +02004201static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02004202{
Olivier Houchard7505f942018-08-21 18:10:44 +02004203 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02004204
Willy Tarreau7838a792019-08-12 18:42:03 +02004205 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4206
Willy Tarreauf0961222021-02-05 11:41:46 +01004207 if (!(h2c->flags & H2_CF_DEM_BLOCK_ANY) &&
4208 (b_data(&h2c->dbuf) || (h2c->flags & H2_CF_RCVD_SHUT))) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01004209 h2_process_demux(h2c);
4210
Christopher Fauletff7925d2022-10-11 19:12:40 +02004211 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_ERROR))
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004212 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01004213
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004214 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01004215 h2c->flags &= ~H2_CF_DEM_DFULL;
4216 }
Olivier Houchard7505f942018-08-21 18:10:44 +02004217 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01004218
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004219 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 +02004220 int send_goaway = 1;
4221 /* If a close-spread-time option is set, we want to avoid
4222 * closing all the active HTTP2 connections at once so we add a
4223 * random factor that will spread the closing.
4224 */
4225 if (tick_isset(global.close_spread_end)) {
4226 int remaining_window = tick_remain(now_ms, global.close_spread_end);
4227 if (remaining_window) {
4228 /* This should increase the closing rate the
4229 * further along the window we are. */
4230 send_goaway = (remaining_window <= statistical_prng_range(global.close_spread_time));
4231 }
4232 }
Remi Tricot-Le Breton4d7fdc62022-04-26 15:17:18 +02004233 else if (global.tune.options & GTUNE_DISABLE_ACTIVE_CLOSE)
4234 send_goaway = 0; /* let the client close his connection himself */
Willy Tarreau8ec14062017-12-30 18:08:13 +01004235 /* frontend is stopping, reload likely in progress, let's try
4236 * to announce a graceful shutdown if not yet done. We don't
4237 * care if it fails, it will be tried again later.
4238 */
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02004239 if (send_goaway) {
4240 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
4241 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
4242 if (h2c->last_sid < 0)
4243 h2c->last_sid = (1U << 31) - 1;
4244 h2c_send_goaway_error(h2c, NULL);
4245 }
Willy Tarreau8ec14062017-12-30 18:08:13 +01004246 }
4247 }
4248
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004249 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004250 * If we received early data, and the handshake is done, wake
4251 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004252 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004253 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01004254 (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 +01004255 struct eb32_node *node;
4256 struct h2s *h2s;
4257
4258 h2c->flags |= H2_CF_WAIT_FOR_HS;
4259 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
4260
4261 while (node) {
4262 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004263 if (se_fl_test(h2s->sd, SE_FL_WAIT_FOR_HS))
Willy Tarreau7e094452018-12-19 18:08:52 +01004264 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004265 node = eb32_next(node);
4266 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004267 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004268
Christopher Fauletff7925d2022-10-11 19:12:40 +02004269 if ((h2c->flags & H2_CF_ERROR) || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01004270 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
4271 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
4272 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02004273 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004274
4275 if (eb_is_empty(&h2c->streams_by_id)) {
4276 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02004277 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004278 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004279 return -1;
4280 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004281
4282 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004283 if (conn->flags & CO_FL_LIST_MASK) {
4284 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004285 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004286 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4287 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004288 }
4289 else if (h2c->st0 == H2_CS_ERROR) {
4290 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004291 if (conn->flags & CO_FL_LIST_MASK) {
4292 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004293 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004294 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4295 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004296 }
4297
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004298 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01004299 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004300
Christopher Fauletff7925d2022-10-11 19:12:40 +02004301 if (h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
Olivier Houchard53216e72018-10-10 15:46:36 +02004302 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02004303 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02004304 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
4305 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02004306 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02004307
Willy Tarreau15a47332022-03-18 15:57:34 +01004308 h2c_update_timeout(h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +02004309 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004310 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004311 return 0;
4312}
4313
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004314/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004315static int h2_wake(struct connection *conn)
4316{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004317 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02004318 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004319
Willy Tarreau7838a792019-08-12 18:42:03 +02004320 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4321 ret = h2_process(h2c);
Willy Tarreau508f9892020-02-11 04:38:56 +01004322 if (ret >= 0)
4323 h2_wake_some_streams(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02004324 TRACE_LEAVE(H2_EV_H2C_WAKE);
4325 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004326}
4327
Willy Tarreauea392822017-10-31 10:02:25 +01004328/* Connection timeout management. The principle is that if there's no receipt
4329 * nor sending for a certain amount of time, the connection is closed. If the
4330 * MUX buffer still has lying data or is not allocatable, the connection is
4331 * immediately killed. If it's allocatable and empty, we attempt to send a
4332 * GOAWAY frame.
4333 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004334struct task *h2_timeout_task(struct task *t, void *context, unsigned int state)
Willy Tarreauea392822017-10-31 10:02:25 +01004335{
Olivier Houchard9f6af332018-05-25 14:04:04 +02004336 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01004337 int expired = tick_is_expired(t->expire, now_ms);
4338
Willy Tarreau7838a792019-08-12 18:42:03 +02004339 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
4340
Willy Tarreaubd42e922020-06-30 11:19:23 +02004341 if (h2c) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004342 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004343 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004344
4345 /* Somebody already stole the connection from us, so we should not
4346 * free it, we just have to free the task.
4347 */
4348 if (!t->context) {
4349 h2c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004350 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004351 goto do_leave;
4352 }
4353
4354
Willy Tarreaubd42e922020-06-30 11:19:23 +02004355 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004356 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004357 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
4358 return t;
4359 }
Willy Tarreauea392822017-10-31 10:02:25 +01004360
Willy Tarreaubd42e922020-06-30 11:19:23 +02004361 if (!h2c_may_expire(h2c)) {
4362 /* we do still have streams but all of them are idle, waiting
4363 * for the data layer, so we must not enforce the timeout here.
4364 */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004365 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004366 t->expire = TICK_ETERNITY;
4367 return t;
4368 }
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004369
Willy Tarreaubd42e922020-06-30 11:19:23 +02004370 /* We're about to destroy the connection, so make sure nobody attempts
4371 * to steal it from us.
4372 */
Christopher Faulet3a7b5392023-03-16 11:43:05 +01004373 if (h2c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004374 conn_delete_from_tree(&h2c->conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004375
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004376 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004377 }
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004378
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004379do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02004380 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02004381
4382 if (!h2c) {
4383 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02004384 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02004385 return NULL;
4386 }
4387
4388 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01004389 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02004390 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01004391
Willy Tarreau662fafc2019-05-26 09:43:07 +02004392 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01004393 /* don't even try to send a GOAWAY, the buffer is stuck */
4394 h2c->flags |= H2_CF_GOAWAY_FAILED;
4395 }
4396
4397 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01004398 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01004399 if (h2c_send_goaway_error(h2c, NULL) <= 0)
4400 h2c->flags |= H2_CF_GOAWAY_FAILED;
4401
Willy Tarreau662fafc2019-05-26 09:43:07 +02004402 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004403 unsigned int released = 0;
4404 struct buffer *buf;
4405
4406 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
4407 if (b_data(buf)) {
4408 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
4409 if (!ret)
4410 break;
4411 b_del(buf, ret);
4412 if (b_data(buf))
4413 break;
4414 b_free(buf);
4415 released++;
4416 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02004417 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004418
4419 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01004420 offer_buffers(NULL, released);
Willy Tarreau787db9a2018-06-14 18:31:46 +02004421 }
Willy Tarreauea392822017-10-31 10:02:25 +01004422
Willy Tarreau4481e262019-10-31 15:36:30 +01004423 /* in any case this connection must not be considered idle anymore */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004424 if (h2c->conn->flags & CO_FL_LIST_MASK) {
4425 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004426 conn_delete_from_tree(&h2c->conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004427 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4428 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004429
Willy Tarreau0975f112018-03-29 15:22:59 +02004430 /* either we can release everything now or it will be done later once
4431 * the last stream closes.
4432 */
4433 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02004434 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01004435
Willy Tarreau7838a792019-08-12 18:42:03 +02004436 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01004437 return NULL;
4438}
4439
4440
Willy Tarreau62f52692017-10-08 23:01:42 +02004441/*******************************************/
4442/* functions below are used by the streams */
4443/*******************************************/
4444
4445/*
4446 * Attach a new stream to a connection
4447 * (Used for outgoing connections)
4448 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004449static int h2_attach(struct connection *conn, struct sedesc *sd, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02004450{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004451 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004452 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004453
Willy Tarreau7838a792019-08-12 18:42:03 +02004454 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004455 h2s = h2c_bck_stream_new(h2c, sd->sc, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004456 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004457 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Christopher Faulete00ad352021-12-16 14:44:31 +01004458 return -1;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004459 }
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004460
4461 /* the connection is not idle anymore, let's mark this */
4462 HA_ATOMIC_AND(&h2c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004463 xprt_set_used(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004464
Willy Tarreau7838a792019-08-12 18:42:03 +02004465 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Christopher Faulete00ad352021-12-16 14:44:31 +01004466 return 0;
Willy Tarreau62f52692017-10-08 23:01:42 +02004467}
4468
Willy Tarreau4596fe22022-05-17 19:07:51 +02004469/* Retrieves the first valid stream connector from this connection, or returns
4470 * NULL. We have to scan because we may have some orphan streams. It might be
Willy Tarreaufafd3982018-11-18 21:29:20 +01004471 * beneficial to scan backwards from the end to reduce the likeliness to find
4472 * orphans.
4473 */
Willy Tarreaud1373532022-05-27 11:00:59 +02004474static struct stconn *h2_get_first_sc(const struct connection *conn)
Willy Tarreaufafd3982018-11-18 21:29:20 +01004475{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004476 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004477 struct h2s *h2s;
4478 struct eb32_node *node;
4479
4480 node = eb32_first(&h2c->streams_by_id);
4481 while (node) {
4482 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau7be4ee02022-05-18 07:31:41 +02004483 if (h2s_sc(h2s))
4484 return h2s_sc(h2s);
Willy Tarreaufafd3982018-11-18 21:29:20 +01004485 node = eb32_next(node);
4486 }
4487 return NULL;
4488}
4489
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004490static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4491{
4492 int ret = 0;
4493 struct h2c *h2c = conn->ctx;
4494
4495 switch (mux_ctl) {
4496 case MUX_STATUS:
4497 /* Only consider the mux to be ready if we're done with
4498 * the preface and settings, and we had no error.
4499 */
4500 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4501 ret |= MUX_STATUS_READY;
4502 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02004503 case MUX_EXIT_STATUS:
4504 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004505 default:
4506 return -1;
4507 }
4508}
4509
Willy Tarreau62f52692017-10-08 23:01:42 +02004510/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004511 * Destroy the mux and the associated connection, if it is no longer used
4512 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004513static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004514{
Christopher Faulet73c12072019-04-08 11:23:22 +02004515 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004516
Willy Tarreau7838a792019-08-12 18:42:03 +02004517 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet4e610962022-04-14 11:23:50 +02004518 if (eb_is_empty(&h2c->streams_by_id)) {
4519 BUG_ON(h2c->conn->ctx != h2c);
Christopher Faulet73c12072019-04-08 11:23:22 +02004520 h2_release(h2c);
Christopher Faulet4e610962022-04-14 11:23:50 +02004521 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004522 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004523}
4524
4525/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004526 * Detach the stream from the connection and possibly release the connection.
4527 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004528static void h2_detach(struct sedesc *sd)
Willy Tarreau62f52692017-10-08 23:01:42 +02004529{
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004530 struct h2s *h2s = sd->se;
Willy Tarreau60935142017-10-16 18:11:19 +02004531 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004532 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004533
Willy Tarreau7838a792019-08-12 18:42:03 +02004534 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4535
Willy Tarreau7838a792019-08-12 18:42:03 +02004536 if (!h2s) {
4537 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004538 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004539 }
Willy Tarreau60935142017-10-16 18:11:19 +02004540
Willy Tarreaud9464162020-01-10 18:25:07 +01004541 /* there's no txbuf so we're certain not to be able to send anything */
4542 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004543
Olivier Houchardf502aca2018-12-14 19:42:40 +01004544 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004545 h2c = h2s->h2c;
Willy Tarreau36c22322022-05-27 10:41:24 +02004546 h2c->nb_sc--;
Willy Tarreauf279a2f2023-05-30 15:42:35 +02004547 if (!h2c->nb_sc && !br_data(h2c->mbuf))
Willy Tarreau15a47332022-03-18 15:57:34 +01004548 h2c->idle_start = now_ms;
4549
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004550 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
Willy Tarreau36c22322022-05-27 10:41:24 +02004551 !h2_frt_has_too_many_sc(h2c)) {
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004552 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004553 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004554 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004555 }
Willy Tarreau60935142017-10-16 18:11:19 +02004556
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004557 /* this stream may be blocked waiting for some data to leave (possibly
4558 * an ES or RST frame), so orphan it in this case.
4559 */
Christopher Fauletff7925d2022-10-11 19:12:40 +02004560 if (!(h2c->flags & (H2_CF_ERR_PENDING|H2_CF_ERROR)) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004561 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004562 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004563 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004564 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau15a47332022-03-18 15:57:34 +01004565 /* refresh the timeout if none was active, so that the last
4566 * leaving stream may arm it.
4567 */
Willy Tarreau3fb2c6d2023-03-16 18:06:19 +01004568 if (h2c->task && !tick_isset(h2c->task->expire))
Willy Tarreau15a47332022-03-18 15:57:34 +01004569 h2c_update_timeout(h2c);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004570 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004571 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004572
Christopher Faulet68ee7842022-10-12 10:21:33 +02004573 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi)) {
Willy Tarreau45f752e2017-10-30 15:44:59 +01004574 /* unblock the connection if it was blocked on this
4575 * stream.
4576 */
4577 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4578 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004579 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004580 }
4581
Willy Tarreau71049cc2018-03-28 13:56:39 +02004582 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004583
Christopher Faulet9b79a102019-07-15 11:22:56 +02004584 if (h2c->flags & H2_CF_IS_BACK) {
Christopher Fauletff7925d2022-10-11 19:12:40 +02004585 if (!(h2c->flags & (H2_CF_RCVD_SHUT|H2_CF_ERR_PENDING|H2_CF_ERROR))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004586 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004587 /* Add the connection in the session server list, if not already done */
4588 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4589 h2c->conn->owner = NULL;
4590 if (eb_is_empty(&h2c->streams_by_id)) {
4591 h2c->conn->mux->destroy(h2c);
4592 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4593 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004594 }
4595 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004596 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004597 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4598 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4599 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004600 return;
4601 }
4602 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004603 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004604 else {
4605 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004606 /* If the connection is owned by the session, first remove it
4607 * from its list
4608 */
4609 if (h2c->conn->owner) {
4610 session_unown_conn(h2c->conn->owner, h2c->conn);
4611 h2c->conn->owner = NULL;
4612 }
4613
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004614 /* mark that the tasklet may lose its context to another thread and
4615 * that the handler needs to check it under the idle conns lock.
4616 */
4617 HA_ATOMIC_OR(&h2c->wait_event.tasklet->state, TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004618 xprt_set_idle(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
4619
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004620 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004621 /* The server doesn't want it, let's kill the connection right away */
4622 h2c->conn->mux->destroy(h2c);
4623 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4624 return;
4625 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004626 /* At this point, the connection has been added to the
4627 * server idle list, so another thread may already have
4628 * hijacked it, so we can't do anything with it.
4629 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004630 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4631 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004632
Olivier Houchard8a786902018-12-15 16:05:40 +01004633 }
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004634 else if (!h2c->conn->hash_node->node.node.leaf_p &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004635 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02004636 !LIST_INLIST(&h2c->conn->session_list)) {
Willy Tarreau85223482022-09-29 20:32:43 +02004637 eb64_insert(&__objt_server(h2c->conn->target)->per_thr[tid].avail_conns,
4638 &h2c->conn->hash_node->node);
Christopher Fauletc5579d12020-07-01 15:45:41 +02004639 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004640 }
4641 }
4642 }
4643
Willy Tarreaue323f342018-03-28 13:51:45 +02004644 /* We don't want to close right now unless we're removing the
4645 * last stream, and either the connection is in error, or it
4646 * reached the ID already specified in a GOAWAY frame received
4647 * or sent (as seen by last_sid >= 0).
4648 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004649 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004650 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004651 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004652 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004653 }
4654 else if (h2c->task) {
Willy Tarreau15a47332022-03-18 15:57:34 +01004655 h2c_update_timeout(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004656 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004657 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004658 else
4659 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004660}
4661
Willy Tarreau88bdba32019-05-13 18:17:53 +02004662/* Performs a synchronous or asynchronous shutr(). */
4663static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004664{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004665 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004666
Willy Tarreauf983d002019-05-14 10:40:21 +02004667 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004668 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004669
Willy Tarreau7838a792019-08-12 18:42:03 +02004670 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4671
Christopher Faulet24b85802023-10-16 19:30:02 +02004672 if (h2s->flags & H2_SF_WANT_SHUTW)
4673 goto add_to_list;
4674
Willy Tarreau18059042019-01-31 19:12:48 +01004675 /* a connstream may require us to immediately kill the whole connection
4676 * for example because of a "tcp-request content reject" rule that is
4677 * normally used to limit abuse. In this case we schedule a goaway to
4678 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004679 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004680 if (se_fl_test(h2s->sd, SE_FL_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004681 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004682 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004683 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4684 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4685 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004686 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4687 /* Nothing was never sent for this stream, so reset with
4688 * REFUSED_STREAM error to let the client retry the
4689 * request.
4690 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004691 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004692 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4693 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004694 else {
4695 /* a final response was already provided, we don't want this
4696 * stream anymore. This may happen when the server responds
4697 * before the end of an upload and closes quickly (redirect,
4698 * deny, ...)
4699 */
4700 h2s_error(h2s, H2_ERR_CANCEL);
4701 }
Willy Tarreau18059042019-01-31 19:12:48 +01004702
Willy Tarreau90c32322017-11-24 08:00:30 +01004703 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004704 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004705 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004706
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004707 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004708 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004709 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004710 done:
4711 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004712 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004713 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004714add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004715 /* Let the handler know we want to shutr, and add ourselves to the
4716 * most relevant list if not yet done. h2_deferred_shut() will be
4717 * automatically called via the shut_tl tasklet when there's room
4718 * again.
4719 */
4720 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau2b718102021-04-21 07:32:39 +02004721 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004722 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004723 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004724 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004725 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004726 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004727 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004728 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004729}
4730
Willy Tarreau88bdba32019-05-13 18:17:53 +02004731/* Performs a synchronous or asynchronous shutw(). */
4732static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004733{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004734 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004735
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004736 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004737 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004738
Willy Tarreau7838a792019-08-12 18:42:03 +02004739 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4740
Willy Tarreau473e0e52022-08-18 16:12:15 +02004741 if (h2s->st != H2_SS_ERROR &&
4742 (h2s->flags & (H2_SF_HEADERS_SENT | H2_SF_MORE_HTX_DATA)) == H2_SF_HEADERS_SENT) {
4743 /* we can cleanly close using an empty data frame only after headers
4744 * and if no more data is expected to be sent.
4745 */
Willy Tarreau58e32082017-11-07 14:41:09 +01004746 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4747 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004748 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004749
4750 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004751 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004752 else
4753 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004754 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004755 /* a connstream may require us to immediately kill the whole connection
4756 * for example because of a "tcp-request content reject" rule that is
4757 * normally used to limit abuse. In this case we schedule a goaway to
4758 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004759 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004760 if (se_fl_test(h2s->sd, SE_FL_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004761 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004762 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004763 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4764 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4765 }
Willy Tarreau473e0e52022-08-18 16:12:15 +02004766 else if (h2s->flags & H2_SF_MORE_HTX_DATA) {
4767 /* some unsent data were pending (e.g. abort during an upload),
4768 * let's send a CANCEL.
4769 */
4770 TRACE_STATE("shutw before end of data, sending CANCEL", H2_EV_STRM_SHUT, h2c->conn, h2s);
4771 h2s_error(h2s, H2_ERR_CANCEL);
4772 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004773 else {
4774 /* Nothing was never sent for this stream, so reset with
4775 * REFUSED_STREAM error to let the client retry the
4776 * request.
4777 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004778 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004779 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4780 }
Willy Tarreau18059042019-01-31 19:12:48 +01004781
Willy Tarreau90c32322017-11-24 08:00:30 +01004782 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004783 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004784 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004785
Willy Tarreau00dd0782018-03-01 16:31:34 +01004786 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004787 }
4788
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004789 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004790 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004791
4792 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4793
Willy Tarreau88bdba32019-05-13 18:17:53 +02004794 done:
4795 h2s->flags &= ~H2_SF_WANT_SHUTW;
4796 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004797
4798 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004799 /* Let the handler know we want to shutw, and add ourselves to the
4800 * most relevant list if not yet done. h2_deferred_shut() will be
4801 * automatically called via the shut_tl tasklet when there's room
4802 * again.
4803 */
4804 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau2b718102021-04-21 07:32:39 +02004805 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004806 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004807 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004808 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004809 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004810 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004811 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004812 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004813}
4814
Willy Tarreau5723f292020-01-10 15:16:57 +01004815/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004816 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4817 * and prevented the last frame from being emitted.
4818 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004819struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004820{
4821 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004822 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004823
Willy Tarreau7838a792019-08-12 18:42:03 +02004824 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4825
Willy Tarreau5723f292020-01-10 15:16:57 +01004826 if (h2s->flags & H2_SF_NOTIFIED) {
4827 /* some data processing remains to be done first */
4828 goto end;
4829 }
4830
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004831 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004832 h2_do_shutw(h2s);
4833
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004834 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004835 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004836
Willy Tarreau88bdba32019-05-13 18:17:53 +02004837 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004838 /* We're done trying to send, remove ourself from the send_list */
Willy Tarreaude4a5382023-10-17 08:25:19 +02004839 h2_remove_from_list(h2s);
Olivier Houchard7a977432019-03-21 15:47:13 +01004840
Willy Tarreau7be4ee02022-05-18 07:31:41 +02004841 if (!h2s_sc(h2s)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004842 h2s_destroy(h2s);
Willy Tarreau74163142021-03-13 11:30:19 +01004843 if (h2c_is_dead(h2c)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004844 h2_release(h2c);
Willy Tarreau74163142021-03-13 11:30:19 +01004845 t = NULL;
4846 }
Willy Tarreau88bdba32019-05-13 18:17:53 +02004847 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004848 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004849 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004850 TRACE_LEAVE(H2_EV_STRM_SHUT);
Willy Tarreau74163142021-03-13 11:30:19 +01004851 return t;
Willy Tarreau62f52692017-10-08 23:01:42 +02004852}
4853
Willy Tarreau4596fe22022-05-17 19:07:51 +02004854/* shutr() called by the stream connector (mux_ops.shutr) */
Willy Tarreau36c22322022-05-27 10:41:24 +02004855static void h2_shutr(struct stconn *sc, enum co_shr_mode mode)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004856{
Willy Tarreau36c22322022-05-27 10:41:24 +02004857 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004858
Willy Tarreau7838a792019-08-12 18:42:03 +02004859 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004860 if (mode)
4861 h2_do_shutr(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004862 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004863}
4864
Willy Tarreau4596fe22022-05-17 19:07:51 +02004865/* shutw() called by the stream connector (mux_ops.shutw) */
Willy Tarreau36c22322022-05-27 10:41:24 +02004866static void h2_shutw(struct stconn *sc, enum co_shw_mode mode)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004867{
Willy Tarreau36c22322022-05-27 10:41:24 +02004868 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004869
Willy Tarreau7838a792019-08-12 18:42:03 +02004870 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004871 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004872 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004873}
4874
Christopher Faulet9b79a102019-07-15 11:22:56 +02004875/* Decode the payload of a HEADERS frame and produce the HTX request or response
4876 * depending on the connection's side. Returns a positive value on success, a
4877 * negative value on failure, or 0 if it couldn't proceed. May report connection
4878 * errors in h2c->errcode if the frame is non-decodable and the connection
4879 * unrecoverable. In absence of connection error when a failure is reported, the
4880 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004881 *
4882 * The function may fold CONTINUATION frames into the initial HEADERS frame
4883 * by removing padding and next frame header, then moving the CONTINUATION
4884 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4885 * leaving a hole between the main frame and the beginning of the next one.
4886 * The possibly remaining incomplete or next frame at the end may be moved
4887 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4888 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4889 *
4890 * A buffer at the beginning of processing may look like this :
4891 *
4892 * ,---.---------.-----.--------------.--------------.------.---.
4893 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4894 * `---^---------^-----^--------------^--------------^------^---'
4895 * | | <-----> | |
4896 * area | dpl | wrap
4897 * |<--------------> |
4898 * | dfl |
4899 * |<-------------------------------------------------->|
4900 * head data
4901 *
4902 * Padding is automatically overwritten when folding, participating to the
4903 * hole size after dfl :
4904 *
4905 * ,---.------------------------.-----.--------------.------.---.
4906 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4907 * `---^------------------------^-----^--------------^------^---'
4908 * | | <-----> | |
4909 * area | hole | wrap
4910 * |<-----------------------> |
4911 * | dfl |
4912 * |<-------------------------------------------------->|
4913 * head data
4914 *
4915 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4916 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4917 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004918 *
4919 * The <flags> field must point to either the stream's flags or to a copy of it
4920 * so that the function can update the following flags :
4921 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004922 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004923 *
4924 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4925 * decoding, in order to detect if we're dealing with a headers or a trailers
Willy Tarreau22892322024-01-17 16:57:23 +01004926 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen). The
4927 * function takes care of counting glitches.
Willy Tarreau13278b42017-10-13 19:23:14 +02004928 */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01004929static 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 +02004930{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004931 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004932 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004933 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004934 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004935 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004936 struct htx *htx = NULL;
Willy Tarreaud43a58a2024-01-19 18:20:21 +01004937 int flen = 0; // header frame len
4938 int fragments = 0;
Willy Tarreauea18f862018-12-22 20:19:26 +01004939 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004940 int ret = 0;
4941 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004942 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004943
Willy Tarreau7838a792019-08-12 18:42:03 +02004944 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4945
Willy Tarreauea18f862018-12-22 20:19:26 +01004946next_frame:
4947 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4948 goto leave; // incomplete input frame
4949
4950 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4951 * this case, we'll try to paste it immediately after the initial
4952 * HEADERS frame payload and kill any possible padding. The initial
4953 * frame's length will be increased to represent the concatenation
4954 * of the two frames. The next frame is read from position <tlen>
4955 * and written at position <flen> (minus padding if some is present).
4956 */
4957 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4958 struct h2_fh hdr;
4959 int clen; // CONTINUATION frame's payload length
4960
Willy Tarreau7838a792019-08-12 18:42:03 +02004961 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 +01004962 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4963 /* no more data, the buffer may be full, either due to
4964 * too large a frame or because of too large a hole that
4965 * we're going to compact at the end.
4966 */
4967 goto leave;
4968 }
4969
4970 if (hdr.ft != H2_FT_CONTINUATION) {
4971 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreauf0279f62024-03-11 07:35:19 +01004972 h2c_report_glitch(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02004973 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 +01004974 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004975 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004976 goto fail;
4977 }
4978
4979 if (hdr.sid != h2c->dsi) {
4980 /* RFC7540#6.10: frame of different stream */
Willy Tarreauf0279f62024-03-11 07:35:19 +01004981 h2c_report_glitch(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02004982 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 +01004983 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004984 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004985 goto fail;
4986 }
4987
4988 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4989 /* RFC7540#4.2: invalid frame length */
Willy Tarreauf0279f62024-03-11 07:35:19 +01004990 h2c_report_glitch(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02004991 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 +01004992 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4993 goto fail;
4994 }
4995
4996 /* detect when we must stop aggragating frames */
4997 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4998
4999 /* Take as much as we can of the CONTINUATION frame's payload */
5000 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
5001 if (clen > hdr.len)
5002 clen = hdr.len;
5003
5004 /* Move the frame's payload over the padding, hole and frame
5005 * header. At least one of hole or dpl is null (see diagrams
5006 * above). The hole moves after the new aggragated frame.
5007 */
5008 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 +02005009 h2c->dfl += hdr.len - h2c->dpl;
Willy Tarreauea18f862018-12-22 20:19:26 +01005010 hole += h2c->dpl + 9;
5011 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005012 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 Tarreaud43a58a2024-01-19 18:20:21 +01005013 fragments++;
Willy Tarreauea18f862018-12-22 20:19:26 +01005014 goto next_frame;
5015 }
5016
5017 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01005018
Willy Tarreau13278b42017-10-13 19:23:14 +02005019 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02005020 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02005021 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02005022 copy = alloc_trash_chunk();
5023 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005024 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 +02005025 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
5026 goto fail;
5027 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005028 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
5029 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
5030 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02005031 }
5032
Willy Tarreau13278b42017-10-13 19:23:14 +02005033 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
5034 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01005035 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01005036 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreauf0279f62024-03-11 07:35:19 +01005037 h2c_report_glitch(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02005038 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 +01005039 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02005040 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02005041 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01005042 }
5043
Willy Tarreaua01f45e2018-12-31 07:41:24 +01005044 if (flen < 5) {
Willy Tarreauf0279f62024-03-11 07:35:19 +01005045 h2c_report_glitch(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02005046 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 +01005047 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
5048 goto fail;
5049 }
5050
Willy Tarreau13278b42017-10-13 19:23:14 +02005051 hdrs += 5; // stream dep = 4, weight = 1
5052 flen -= 5;
5053 }
5054
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01005055 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005056 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 +01005057 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01005058 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01005059 }
Willy Tarreau13278b42017-10-13 19:23:14 +02005060
Willy Tarreau937f7602018-02-26 15:22:17 +01005061 /* we can't retry a failed decompression operation so we must be very
5062 * careful not to take any risks. In practice the output buffer is
5063 * always empty except maybe for trailers, in which case we simply have
5064 * to wait for the upper layer to finish consuming what is available.
5065 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005066 htx = htx_from_buf(rxbuf);
5067 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005068 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 +02005069 h2c->flags |= H2_CF_DEM_SFULL;
5070 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01005071 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01005072
Willy Tarreau25919232019-01-03 14:48:18 +01005073 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01005074 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
5075 sizeof(list)/sizeof(list[0]), tmp);
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005076
5077 if (outlen > 0 &&
5078 (TRACE_SOURCE)->verbosity >= H2_VERB_ADVANCED &&
5079 TRACE_ENABLED(TRACE_LEVEL_USER, H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, 0, 0, 0)) {
5080 struct ist n;
5081 int i;
5082
5083 for (i = 0; list[i].n.len; i++) {
5084 n = list[i].n;
5085
5086 if (!isttest(n)) {
5087 /* this is in fact a pseudo header whose number is in n.len */
5088 n = h2_phdr_to_ist(n.len);
5089 }
5090
5091 h2_trace_header(n, list[i].v, H2_EV_RX_FRAME|H2_EV_RX_HDR,
5092 ist(TRC_LOC), __FUNCTION__, h2c, NULL);
5093 }
5094 }
5095
Willy Tarreau59a10fb2017-11-21 20:03:02 +01005096 if (outlen < 0) {
Willy Tarreauf0279f62024-03-11 07:35:19 +01005097 h2c_report_glitch(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02005098 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 +01005099 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
5100 goto fail;
5101 }
5102
Willy Tarreau25919232019-01-03 14:48:18 +01005103 /* The PACK decompressor was updated, let's update the input buffer and
5104 * the parser's state to commit these changes and allow us to later
5105 * fail solely on the stream if needed.
5106 */
5107 b_del(&h2c->dbuf, h2c->dfl + hole);
5108 h2c->dfl = hole = 0;
5109 h2c->st0 = H2_CS_FRAME_H;
5110
Willy Tarreau59a10fb2017-11-21 20:03:02 +01005111 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01005112 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Christopher Fauletd0db4232021-01-22 11:46:30 +01005113 msgf |= (*flags & H2_SF_BODY_TUNNEL) ? H2_MSGF_BODY_TUNNEL: 0;
Amaury Denoyelle74162742020-12-11 17:53:05 +01005114 /* If an Extended CONNECT has been sent on this stream, set message flag
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005115 * to convert 200 response to 101 htx response */
Amaury Denoyelle74162742020-12-11 17:53:05 +01005116 msgf |= (*flags & H2_SF_EXT_CONNECT_SENT) ? H2_MSGF_EXT_CONNECT: 0;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01005117
Willy Tarreau88d138e2019-01-02 19:38:14 +01005118 if (*flags & H2_SF_HEADERS_RCVD)
5119 goto trailers;
5120
5121 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005122 if (h2c->flags & H2_CF_IS_BACK)
Amaury Denoyelle74162742020-12-11 17:53:05 +01005123 outlen = h2_make_htx_response(list, htx, &msgf, body_len, upgrade_protocol);
Christopher Faulet9b79a102019-07-15 11:22:56 +02005124 else
Willy Tarreaub6be1a42023-08-08 15:38:28 +02005125 outlen = h2_make_htx_request(list, htx, &msgf, body_len,
5126 !!(((const struct session *)h2c->conn->owner)->fe->options2 & PR_O2_REQBUG_OK));
Willy Tarreau59a10fb2017-11-21 20:03:02 +01005127
Christopher Faulet3d875582021-04-26 17:46:13 +02005128 if (outlen < 0 || htx_free_space(htx) < global.tune.maxrewrite) {
Willy Tarreau25919232019-01-03 14:48:18 +01005129 /* too large headers? this is a stream error only */
Willy Tarreauf0279f62024-03-11 07:35:19 +01005130 h2c_report_glitch(h2c, 1);
Willy Tarreau577fc272023-08-08 15:27:02 +02005131 TRACE_STATE("message headers too large or invalid", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
Christopher Faulet3d875582021-04-26 17:46:13 +02005132 htx->flags |= HTX_FL_PARSING_ERROR;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01005133 goto fail;
5134 }
Willy Tarreau13278b42017-10-13 19:23:14 +02005135
Willy Tarreau174b06a2018-04-25 18:13:58 +02005136 if (msgf & H2_MSGF_BODY) {
5137 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01005138 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01005139 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02005140 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01005141 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02005142 }
Christopher Faulet7d247f02020-12-02 14:26:36 +01005143 if (msgf & H2_MSGF_BODYLESS_RSP)
5144 *flags |= H2_SF_BODYLESS_RESP;
Willy Tarreau174b06a2018-04-25 18:13:58 +02005145
Christopher Fauletd0db4232021-01-22 11:46:30 +01005146 if (msgf & H2_MSGF_BODY_TUNNEL)
5147 *flags |= H2_SF_BODY_TUNNEL;
5148 else {
5149 /* Abort the tunnel attempt, if any */
5150 if (*flags & H2_SF_BODY_TUNNEL)
5151 *flags |= H2_SF_TUNNEL_ABRT;
5152 *flags &= ~H2_SF_BODY_TUNNEL;
5153 }
5154
Willy Tarreau88d138e2019-01-02 19:38:14 +01005155 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01005156 /* indicate that a HEADERS frame was received for this stream, except
5157 * for 1xx responses. For 1xx responses, another HEADERS frame is
5158 * expected.
5159 */
5160 if (!(msgf & H2_MSGF_RSP_1XX))
5161 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01005162
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005163 if (h2c->dff & H2_F_HEADERS_END_STREAM) {
Christopher Faulet827a6292022-12-22 09:47:01 +01005164 if (msgf & H2_MSGF_RSP_1XX) {
5165 /* RFC9113#8.1 : HEADERS frame with the ES flag set that carries an informational status code is malformed */
Willy Tarreauf0279f62024-03-11 07:35:19 +01005166 h2c_report_glitch(h2c, 1);
Christopher Faulet827a6292022-12-22 09:47:01 +01005167 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);
5168 goto fail;
5169 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005170 /* no more data are expected for this message */
5171 htx->flags |= HTX_FL_EOM;
Christopher Faulet1a60a662023-05-24 11:02:50 +02005172 *flags |= H2_SF_ES_RCVD;
Willy Tarreau88d138e2019-01-02 19:38:14 +01005173 }
Willy Tarreau937f7602018-02-26 15:22:17 +01005174
Amaury Denoyelleefe22762020-12-11 17:53:08 +01005175 if (msgf & H2_MSGF_EXT_CONNECT)
5176 *flags |= H2_SF_EXT_CONNECT_RCVD;
5177
Willy Tarreau86277d42019-01-02 15:36:11 +01005178 /* success */
5179 ret = 1;
5180
Willy Tarreau68dd9852017-07-03 14:44:26 +02005181 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01005182 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01005183 * move the remaining data over it.
5184 */
5185 if (hole) {
5186 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
5187 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
5188 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
5189 b_sub(&h2c->dbuf, hole);
5190 }
5191
Christopher Faulete3ec2172023-12-13 15:36:52 +01005192 if (b_full(&h2c->dbuf) && h2c->dfl && (!htx || htx_is_empty(htx))) {
Willy Tarreauea18f862018-12-22 20:19:26 +01005193 /* too large frames */
5194 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01005195 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01005196 }
5197
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005198 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01005199 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02005200 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02005201 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreaud43a58a2024-01-19 18:20:21 +01005202
5203 /* Check for abuse of CONTINUATION: more than 4 fragments and less than
5204 * 1kB per fragment is clearly unusual and suspicious enough to count
5205 * one glitch per 1kB fragment in a 16kB buffer, which means that an
5206 * abuser sending 1600 1-byte frames in a 16kB buffer would increment
5207 * its counter by 100.
5208 */
5209 if (unlikely(fragments > 4) && fragments > flen / 1024 && ret != 0)
Willy Tarreauf0279f62024-03-11 07:35:19 +01005210 h2c_report_glitch(h2c, (fragments + 15) / 16);
Willy Tarreaud43a58a2024-01-19 18:20:21 +01005211
Willy Tarreau86277d42019-01-02 15:36:11 +01005212 return ret;
5213
Willy Tarreau68dd9852017-07-03 14:44:26 +02005214 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01005215 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02005216 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01005217
5218 trailers:
5219 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01005220 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
5221 /* It's a trailer but it's missing ES flag */
Willy Tarreauf0279f62024-03-11 07:35:19 +01005222 h2c_report_glitch(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02005223 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 +01005224 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02005225 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau88d138e2019-01-02 19:38:14 +01005226 goto fail;
5227 }
5228
Christopher Faulet9b79a102019-07-15 11:22:56 +02005229 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02005230 if (h2_make_htx_trailers(list, htx) <= 0) {
5231 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 +02005232 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005233 }
Christopher Faulet1a60a662023-05-24 11:02:50 +02005234 *flags |= H2_SF_ES_RCVD;
Willy Tarreau88d138e2019-01-02 19:38:14 +01005235 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02005236}
5237
Christopher Faulet9b79a102019-07-15 11:22:56 +02005238/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005239 * parser state is automatically updated. Returns > 0 if it could completely
5240 * send the current frame, 0 if it couldn't complete, in which case
Willy Tarreaub605c422022-05-17 17:04:55 +02005241 * SE_FL_RCV_MORE must be checked to know if some data remain pending (an empty
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005242 * DATA frame can return 0 as a valid result). Stream errors are reported in
5243 * h2s->errcode and connection errors in h2c->errcode. The caller must already
5244 * have checked the frame header and ensured that the frame was complete or the
5245 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02005246 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01005247static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02005248{
5249 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02005250 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005251 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005252 struct htx *htx = NULL;
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005253 struct buffer *scbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02005254 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02005255
Willy Tarreau7838a792019-08-12 18:42:03 +02005256 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5257
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005258 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02005259
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005260 scbuf = h2_get_buf(h2c, &h2s->rxbuf);
5261 if (!scbuf) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01005262 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02005263 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 +01005264 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005265 }
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005266 htx = htx_from_buf(scbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01005267
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005268try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005269 flen = h2c->dfl - h2c->dpl;
5270 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01005271 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005272
Willy Tarreauc9fa0482018-07-10 17:43:27 +02005273 if (flen > b_data(&h2c->dbuf)) {
5274 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005275 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01005276 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005277 }
5278
Christopher Faulet9b79a102019-07-15 11:22:56 +02005279 block = htx_free_data_space(htx);
5280 if (!block) {
5281 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005282 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 +02005283 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005284 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005285 if (flen > block)
5286 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005287
Christopher Faulet9b79a102019-07-15 11:22:56 +02005288 /* here, flen is the max we can copy into the output buffer */
5289 block = b_contig_data(&h2c->dbuf, 0);
5290 if (flen > block)
5291 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005292
Christopher Faulet9b79a102019-07-15 11:22:56 +02005293 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02005294 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 +02005295
Christopher Faulet9b79a102019-07-15 11:22:56 +02005296 b_del(&h2c->dbuf, sent);
5297 h2c->dfl -= sent;
5298 h2c->rcvd_c += sent;
5299 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02005300
Christopher Faulet9b79a102019-07-15 11:22:56 +02005301 if (h2s->flags & H2_SF_DATA_CLEN) {
5302 h2s->body_len -= sent;
5303 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005304 }
5305
Christopher Faulet9b79a102019-07-15 11:22:56 +02005306 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01005307 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005308 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 +01005309 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005310 }
5311
Christopher Faulet9b79a102019-07-15 11:22:56 +02005312 goto try_again;
5313
Willy Tarreau4a28da12018-01-04 14:41:00 +01005314 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005315 /* here we're done with the frame, all the payload (except padding) was
5316 * transferred.
5317 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02005318
Christopher Faulet5be651d2021-01-22 15:28:03 +01005319 if (!(h2s->flags & H2_SF_BODY_TUNNEL) && (h2c->dff & H2_F_DATA_END_STREAM)) {
5320 /* no more data are expected for this message. This add the EOM
5321 * flag but only on the response path or if no tunnel attempt
5322 * was aborted. Otherwise (request path + tunnel abrted), the
5323 * EOM was already reported.
5324 */
Christopher Faulet33724322021-02-10 09:04:59 +01005325 if ((h2c->flags & H2_CF_IS_BACK) || !(h2s->flags & H2_SF_TUNNEL_ABRT)) {
Amaury Denoyelle25cf19d2023-05-11 16:50:04 +02005326 /* htx may be empty if receiving an empty DATA frame. */
5327 if (!htx_set_eom(htx))
5328 goto fail;
Christopher Faulet33724322021-02-10 09:04:59 +01005329 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02005330 }
5331
Willy Tarreaud1023bb2018-03-22 16:53:12 +01005332 h2c->rcvd_c += h2c->dpl;
5333 h2c->rcvd_s += h2c->dpl;
5334 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005335 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005336 htx_to_buf(htx, scbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005337 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005338 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01005339 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005340 if (htx)
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005341 htx_to_buf(htx, scbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005342 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01005343 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005344}
5345
Willy Tarreau115e83b2018-12-01 19:17:53 +01005346/* Try to send a HEADERS frame matching HTX response present in HTX message
5347 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5348 * must check the stream's status to detect any error which might have happened
5349 * subsequently to a successful send. The htx blocks are automatically removed
5350 * from the message. The htx message is assumed to be valid since produced from
5351 * the internal code, hence it contains a start line, an optional series of
5352 * header blocks and an end of header, otherwise an invalid frame could be
5353 * emitted and the resulting htx message could be left in an inconsistent state.
5354 */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01005355static size_t h2s_snd_fhdrs(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005356{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005357 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01005358 struct h2c *h2c = h2s->h2c;
5359 struct htx_blk *blk;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005360 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005361 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005362 struct htx_sl *sl;
5363 enum htx_blk_type type;
5364 int es_now = 0;
5365 int ret = 0;
5366 int hdr;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005367
Willy Tarreau7838a792019-08-12 18:42:03 +02005368 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5369
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005370 /* get the start line (we do have one) and the rest of the headers,
5371 * that we dump starting at header 0 */
5372 sl = NULL;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005373 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005374 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005375 type = htx_get_blk_type(blk);
5376
5377 if (type == HTX_BLK_UNUSED)
5378 continue;
5379
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005380 if (type == HTX_BLK_EOH)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005381 break;
5382
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005383 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005384 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005385 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5386 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5387 goto fail;
5388 }
5389
5390 list[hdr].n = htx_get_blk_name(htx, blk);
5391 list[hdr].v = htx_get_blk_value(htx, blk);
5392 hdr++;
5393 }
5394 else if (type == HTX_BLK_RES_SL) {
Christopher Faulet56498132021-01-29 11:39:43 +01005395 BUG_ON(sl); /* Only one start-line expected */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005396 sl = htx_get_blk_ptr(htx, blk);
5397 h2s->status = sl->info.res.status;
Christopher Faulet7d247f02020-12-02 14:26:36 +01005398 if (h2s->status == 204 || h2s->status == 304)
5399 h2s->flags |= H2_SF_BODYLESS_RESP;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005400 if (h2s->status < 100 || h2s->status > 999) {
5401 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5402 goto fail;
5403 }
5404 else if (h2s->status == 101) {
Amaury Denoyelleefe22762020-12-11 17:53:08 +01005405 if (unlikely(h2s->flags & H2_SF_EXT_CONNECT_RCVD)) {
5406 /* If an Extended CONNECT has been received, we need to convert 101 to 200 */
5407 h2s->status = 200;
5408 h2s->flags &= ~H2_SF_EXT_CONNECT_RCVD;
5409 }
5410 else {
5411 /* Otherwise, 101 responses are not supported in H2, so return a error (RFC7540#8.1.1) */
5412 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5413 goto fail;
5414 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005415 }
5416 else if ((h2s->flags & H2_SF_BODY_TUNNEL) && h2s->status >= 300) {
5417 /* Abort the tunnel attempt */
5418 h2s->flags &= ~H2_SF_BODY_TUNNEL;
5419 h2s->flags |= H2_SF_TUNNEL_ABRT;
5420 }
5421 }
5422 else {
5423 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 +01005424 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005425 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005426 }
5427
Christopher Faulet56498132021-01-29 11:39:43 +01005428 /* The start-line me be defined */
5429 BUG_ON(!sl);
5430
Willy Tarreau115e83b2018-12-01 19:17:53 +01005431 /* marker for end of headers */
5432 list[hdr].n = ist("");
5433
Willy Tarreau9c218e72019-05-26 10:08:28 +02005434 mbuf = br_tail(h2c->mbuf);
5435 retry:
5436 if (!h2_get_buf(h2c, mbuf)) {
5437 h2c->flags |= H2_CF_MUX_MALLOC;
5438 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005439 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 +02005440 return 0;
5441 }
5442
Willy Tarreau115e83b2018-12-01 19:17:53 +01005443 chunk_reset(&outbuf);
5444
5445 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005446 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5447 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005448 break;
5449 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005450 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01005451 }
5452
5453 if (outbuf.size < 9)
5454 goto full;
5455
5456 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5457 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5458 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5459 outbuf.data = 9;
5460
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005461 if ((h2c->flags & (H2_CF_SHTS_UPDATED|H2_CF_DTSU_EMITTED)) == H2_CF_SHTS_UPDATED) {
5462 /* SETTINGS_HEADER_TABLE_SIZE changed, we must send an HPACK
5463 * dynamic table size update so that some clients are not
5464 * confused. In practice we only need to send the DTSU when the
5465 * advertised size is lower than the current one, and since we
5466 * don't use it and don't care about the default 4096 bytes,
5467 * we only ack it with a zero size thus we at most have to deal
5468 * with this once. See RFC7541#4.2 and #6.3 for the spec, and
5469 * below for the whole context and interoperability risks:
5470 * https://lists.w3.org/Archives/Public/ietf-http-wg/2021OctDec/0235.html
5471 */
5472 if (b_room(&outbuf) < 1)
5473 goto full;
5474 outbuf.area[outbuf.data++] = 0x20; // HPACK DTSU 0 bytes
5475
5476 /* let's not update the flags now but only once the buffer is
5477 * really committed.
5478 */
5479 }
5480
Willy Tarreau115e83b2018-12-01 19:17:53 +01005481 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01005482 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005483 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005484 goto realign_again;
5485 goto full;
5486 }
5487
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005488 if ((TRACE_SOURCE)->verbosity >= H2_VERB_ADVANCED) {
5489 char sts[4];
5490
5491 h2_trace_header(ist(":status"), ist(ultoa_r(h2s->status, sts, sizeof(sts))),
5492 H2_EV_TX_FRAME|H2_EV_TX_HDR, ist(TRC_LOC), __FUNCTION__,
5493 h2c, h2s);
5494 }
5495
Willy Tarreau115e83b2018-12-01 19:17:53 +01005496 /* encode all headers, stop at empty name */
5497 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5498 /* these ones do not exist in H2 and must be dropped. */
5499 if (isteq(list[hdr].n, ist("connection")) ||
5500 isteq(list[hdr].n, ist("proxy-connection")) ||
5501 isteq(list[hdr].n, ist("keep-alive")) ||
5502 isteq(list[hdr].n, ist("upgrade")) ||
5503 isteq(list[hdr].n, ist("transfer-encoding")))
5504 continue;
5505
Christopher Faulet86d144c2019-08-14 16:32:25 +02005506 /* Skip all pseudo-headers */
5507 if (*(list[hdr].n.ptr) == ':')
5508 continue;
5509
Willy Tarreau115e83b2018-12-01 19:17:53 +01005510 if (isteq(list[hdr].n, ist("")))
5511 break; // end
5512
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005513 if (!h2_encode_header(&outbuf, list[hdr].n, list[hdr].v, H2_EV_TX_FRAME|H2_EV_TX_HDR,
5514 ist(TRC_LOC), __FUNCTION__, h2c, h2s)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005515 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005516 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005517 goto realign_again;
5518 goto full;
5519 }
5520 }
5521
Willy Tarreaucb985a42019-10-07 16:56:34 +02005522 /* update the frame's size */
5523 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5524
5525 if (outbuf.data > h2c->mfs + 9) {
5526 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5527 /* output full */
5528 if (b_space_wraps(mbuf))
5529 goto realign_again;
5530 goto full;
5531 }
5532 }
5533
Willy Tarreau3a537072021-06-17 08:40:04 +02005534 TRACE_USER("sent H2 response ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5535
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005536 /* remove all header blocks including the EOH and compute the
5537 * corresponding size.
Willy Tarreau115e83b2018-12-01 19:17:53 +01005538 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005539 ret = 0;
5540 blk = htx_get_head_blk(htx);
5541 while (blk) {
5542 type = htx_get_blk_type(blk);
5543 ret += htx_get_blksz(blk);
5544 blk = htx_remove_blk(htx, blk);
5545 /* The removed block is the EOH */
5546 if (type == HTX_BLK_EOH)
5547 break;
Christopher Faulet5be651d2021-01-22 15:28:03 +01005548 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005549
Willy Tarreau95acc8b2022-05-27 16:14:10 +02005550 if (!h2s_sc(h2s) || se_fl_test(h2s->sd, SE_FL_SHW)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005551 /* Response already closed: add END_STREAM */
5552 es_now = 1;
5553 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005554 else if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && h2s->status >= 200) {
5555 /* EOM+empty: we may need to add END_STREAM except for 1xx
Christopher Faulet991febd2020-12-02 15:17:31 +01005556 * responses and tunneled response.
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005557 */
Christopher Faulet991febd2020-12-02 15:17:31 +01005558 if (!(h2s->flags & H2_SF_BODY_TUNNEL) || h2s->status >= 300)
5559 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005560 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005561
Willy Tarreau115e83b2018-12-01 19:17:53 +01005562 if (es_now)
5563 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5564
5565 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005566 b_add(mbuf, outbuf.data);
Willy Tarreau936db562023-10-18 11:39:43 +02005567 h2c->flags |= H2_CF_MBUF_HAS_DATA;
Christopher Faulet0b465482019-02-19 15:14:23 +01005568
5569 /* indicates the HEADERS frame was sent, except for 1xx responses. For
5570 * 1xx responses, another HEADERS frame is expected.
5571 */
Christopher Faulet89899422020-12-07 18:24:43 +01005572 if (h2s->status >= 200)
Christopher Faulet0b465482019-02-19 15:14:23 +01005573 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005574
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005575 if (h2c->flags & H2_CF_SHTS_UPDATED) {
5576 /* was sent above */
5577 h2c->flags |= H2_CF_DTSU_EMITTED;
Willy Tarreauc7d85482022-02-16 14:28:14 +01005578 h2c->flags &= ~H2_CF_SHTS_UPDATED;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005579 }
5580
Willy Tarreau115e83b2018-12-01 19:17:53 +01005581 if (es_now) {
5582 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005583 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 +01005584 if (h2s->st == H2_SS_OPEN)
5585 h2s->st = H2_SS_HLOC;
5586 else
5587 h2s_close(h2s);
5588 }
5589
5590 /* OK we could properly deliver the response */
Willy Tarreau115e83b2018-12-01 19:17:53 +01005591 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005592 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005593 return ret;
5594 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005595 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5596 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005597 h2c->flags |= H2_CF_MUX_MFULL;
5598 h2s->flags |= H2_SF_BLK_MROOM;
5599 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005600 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 +01005601 goto end;
5602 fail:
5603 /* unparsable HTX messages, too large ones to be produced in the local
5604 * list etc go here (unrecoverable errors).
5605 */
5606 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5607 ret = 0;
5608 goto end;
5609}
5610
Willy Tarreau80739692018-10-05 11:35:57 +02005611/* Try to send a HEADERS frame matching HTX request present in HTX message
5612 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5613 * must check the stream's status to detect any error which might have happened
5614 * subsequently to a successful send. The htx blocks are automatically removed
5615 * from the message. The htx message is assumed to be valid since produced from
5616 * the internal code, hence it contains a start line, an optional series of
5617 * header blocks and an end of header, otherwise an invalid frame could be
5618 * emitted and the resulting htx message could be left in an inconsistent state.
5619 */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01005620static size_t h2s_snd_bhdrs(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005621{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005622 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005623 struct h2c *h2c = h2s->h2c;
5624 struct htx_blk *blk;
Willy Tarreau80739692018-10-05 11:35:57 +02005625 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005626 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005627 struct htx_sl *sl;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005628 struct ist meth, uri, auth, host = IST_NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005629 enum htx_blk_type type;
5630 int es_now = 0;
5631 int ret = 0;
5632 int hdr;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005633 int extended_connect = 0;
Willy Tarreau80739692018-10-05 11:35:57 +02005634
Willy Tarreau7838a792019-08-12 18:42:03 +02005635 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5636
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005637 /* get the start line (we do have one) and the rest of the headers,
5638 * that we dump starting at header 0 */
5639 sl = NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005640 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005641 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005642 type = htx_get_blk_type(blk);
5643
5644 if (type == HTX_BLK_UNUSED)
5645 continue;
5646
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005647 if (type == HTX_BLK_EOH)
Willy Tarreau80739692018-10-05 11:35:57 +02005648 break;
5649
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005650 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005651 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005652 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5653 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5654 goto fail;
5655 }
Willy Tarreau80739692018-10-05 11:35:57 +02005656
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005657 list[hdr].n = htx_get_blk_name(htx, blk);
5658 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005659
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005660 /* Skip header if same name is used to add the server name */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005661 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name) &&
5662 isteq(list[hdr].n, h2c->proxy->server_id_hdr_name))
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005663 continue;
Christopher Faulet67d58092019-10-02 10:51:38 +02005664
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005665 /* Convert connection: upgrade to Extended connect from rfc 8441 */
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005666 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteqi(list[hdr].n, ist("connection"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005667 /* rfc 7230 #6.1 Connection = list of tokens */
5668 struct ist connection_ist = list[hdr].v;
5669 do {
5670 if (isteqi(iststop(connection_ist, ','),
5671 ist("upgrade"))) {
Amaury Denoyelle0df04362021-10-18 09:43:29 +02005672 if (!(h2c->flags & H2_CF_RCVD_RFC8441)) {
5673 TRACE_STATE("reject upgrade because of no RFC8441 support", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5674 goto fail;
5675 }
5676
Amaury Denoyellee0c258c2021-10-18 10:05:16 +02005677 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 +01005678 h2s->flags |= (H2_SF_BODY_TUNNEL|H2_SF_EXT_CONNECT_SENT);
5679 sl->info.req.meth = HTTP_METH_CONNECT;
5680 meth = ist("CONNECT");
5681
5682 extended_connect = 1;
5683 break;
5684 }
5685
5686 connection_ist = istadv(istfind(connection_ist, ','), 1);
5687 } while (istlen(connection_ist));
5688 }
5689
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005690 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteq(list[hdr].n, ist("upgrade"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005691 /* rfc 7230 #6.7 Upgrade = list of protocols
5692 * rfc 8441 #4 Extended connect = :protocol is single-valued
5693 *
5694 * only first HTTP/1 protocol is preserved
5695 */
5696 const struct ist protocol = iststop(list[hdr].v, ',');
5697 /* upgrade_protocol field is 16 bytes long in h2s */
5698 istpad(h2s->upgrade_protocol, isttrim(protocol, 15));
5699 }
5700
5701 if (isteq(list[hdr].n, ist("host")))
5702 host = list[hdr].v;
5703
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005704 hdr++;
5705 }
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005706 else if (type == HTX_BLK_REQ_SL) {
5707 BUG_ON(sl); /* Only one start-line expected */
5708 sl = htx_get_blk_ptr(htx, blk);
5709 meth = htx_sl_req_meth(sl);
5710 uri = htx_sl_req_uri(sl);
5711 if (sl->info.req.meth == HTTP_METH_HEAD)
5712 h2s->flags |= H2_SF_BODYLESS_RESP;
5713 if (unlikely(uri.len == 0)) {
5714 TRACE_ERROR("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5715 goto fail;
5716 }
5717 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005718 else {
5719 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5720 goto fail;
5721 }
Willy Tarreau80739692018-10-05 11:35:57 +02005722 }
5723
Christopher Faulet56498132021-01-29 11:39:43 +01005724 /* The start-line me be defined */
5725 BUG_ON(!sl);
5726
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005727 /* Now add the server name to a header (if requested) */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005728 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name)) {
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005729 struct server *srv = objt_server(h2c->conn->target);
5730
5731 if (srv) {
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005732 list[hdr].n = h2c->proxy->server_id_hdr_name;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005733 list[hdr].v = ist(srv->id);
5734 hdr++;
5735 }
5736 }
5737
Willy Tarreau80739692018-10-05 11:35:57 +02005738 /* marker for end of headers */
5739 list[hdr].n = ist("");
5740
Willy Tarreau9c218e72019-05-26 10:08:28 +02005741 mbuf = br_tail(h2c->mbuf);
5742 retry:
5743 if (!h2_get_buf(h2c, mbuf)) {
5744 h2c->flags |= H2_CF_MUX_MALLOC;
5745 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005746 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 +02005747 return 0;
5748 }
5749
Willy Tarreau80739692018-10-05 11:35:57 +02005750 chunk_reset(&outbuf);
5751
5752 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005753 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5754 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005755 break;
5756 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005757 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005758 }
5759
5760 if (outbuf.size < 9)
5761 goto full;
5762
5763 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5764 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5765 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5766 outbuf.data = 9;
5767
5768 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005769 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005770 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005771 goto realign_again;
5772 goto full;
5773 }
5774
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005775 h2_trace_header(ist(":method"), meth, H2_EV_TX_FRAME|H2_EV_TX_HDR, ist(TRC_LOC), __FUNCTION__, h2c, h2s);
5776
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005777 auth = ist(NULL);
5778
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005779 /* RFC7540 #8.3: the CONNECT method must have :
5780 * - :authority set to the URI part (host:port)
5781 * - :method set to CONNECT
5782 * - :scheme and :path omitted
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005783 *
5784 * Note that this is not applicable in case of the Extended CONNECT
5785 * protocol from rfc 8441.
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005786 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005787 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT) && !extended_connect) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005788 auth = uri;
5789
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005790 if (!h2_encode_header(&outbuf, ist(":authority"), auth, H2_EV_TX_FRAME|H2_EV_TX_HDR,
5791 ist(TRC_LOC), __FUNCTION__, h2c, h2s)) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005792 /* output full */
5793 if (b_space_wraps(mbuf))
5794 goto realign_again;
5795 goto full;
5796 }
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005797
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005798 h2s->flags |= H2_SF_BODY_TUNNEL;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005799 } else {
5800 /* other methods need a :scheme. If an authority is known from
5801 * the request line, it must be sent, otherwise only host is
5802 * sent. Host is never sent as the authority.
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005803 *
5804 * This code is also applicable for Extended CONNECT protocol
5805 * from rfc 8441.
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005806 */
5807 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005808
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005809 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5810 /* the URI seems to start with a scheme */
5811 int len = 1;
5812
5813 while (len < uri.len && uri.ptr[len] != ':')
5814 len++;
5815
5816 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5817 /* make the uri start at the authority now */
Tim Duesterhus9f75ed12021-03-02 18:57:26 +01005818 scheme = ist2(uri.ptr, len);
Tim Duesterhus154374c2021-03-02 18:57:27 +01005819 uri = istadv(uri, len + 3);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005820
5821 /* find the auth part of the URI */
Tim Duesterhus92c696e2021-02-28 16:11:36 +01005822 auth = ist2(uri.ptr, 0);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005823 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5824 auth.len++;
5825
Tim Duesterhus154374c2021-03-02 18:57:27 +01005826 uri = istadv(uri, auth.len);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005827 }
5828 }
5829
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005830 /* For Extended CONNECT, the :authority must be present.
5831 * Use host value for it.
5832 */
5833 if (unlikely(extended_connect) && isttest(host))
5834 auth = host;
5835
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005836 if (!scheme.len) {
5837 /* no explicit scheme, we're using an origin-form URI,
5838 * probably from an H1 request transcoded to H2 via an
5839 * external layer, then received as H2 without authority.
5840 * So we have to look up the scheme from the HTX flags.
5841 * In such a case only http and https are possible, and
5842 * https is the default (sent by browsers).
5843 */
5844 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5845 scheme = ist("http");
5846 else
5847 scheme = ist("https");
5848 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005849
5850 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005851 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005852 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005853 goto realign_again;
5854 goto full;
5855 }
Willy Tarreau80739692018-10-05 11:35:57 +02005856
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005857 if (auth.len &&
5858 !h2_encode_header(&outbuf, ist(":authority"), auth, H2_EV_TX_FRAME|H2_EV_TX_HDR,
5859 ist(TRC_LOC), __FUNCTION__, h2c, h2s)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005860 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005861 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005862 goto realign_again;
5863 goto full;
5864 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005865
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005866 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5867 * be sent as '/' or '*'.
5868 */
5869 if (unlikely(!uri.len)) {
5870 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5871 uri = ist("*");
5872 else
5873 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005874 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005875
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005876 if (!hpack_encode_path(&outbuf, uri)) {
5877 /* output full */
5878 if (b_space_wraps(mbuf))
5879 goto realign_again;
5880 goto full;
5881 }
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005882
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005883 h2_trace_header(ist(":path"), uri, H2_EV_TX_FRAME|H2_EV_TX_HDR, ist(TRC_LOC), __FUNCTION__, h2c, h2s);
5884
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005885 /* encode the pseudo-header protocol from rfc8441 if using
5886 * Extended CONNECT method.
5887 */
5888 if (unlikely(extended_connect)) {
5889 const struct ist protocol = ist(h2s->upgrade_protocol);
5890 if (isttest(protocol)) {
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005891 if (!h2_encode_header(&outbuf, ist(":protocol"), protocol, H2_EV_TX_FRAME|H2_EV_TX_HDR,
5892 ist(TRC_LOC), __FUNCTION__, h2c, h2s)) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005893 /* output full */
5894 if (b_space_wraps(mbuf))
5895 goto realign_again;
5896 goto full;
5897 }
5898 }
5899 }
Willy Tarreau80739692018-10-05 11:35:57 +02005900 }
5901
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005902 /* encode all headers, stop at empty name. Host is only sent if we
5903 * do not provide an authority.
5904 */
Willy Tarreau80739692018-10-05 11:35:57 +02005905 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005906 struct ist n = list[hdr].n;
5907 struct ist v = list[hdr].v;
5908
Willy Tarreau80739692018-10-05 11:35:57 +02005909 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005910 if (isteq(n, ist("connection")) ||
5911 (auth.len && isteq(n, ist("host"))) ||
5912 isteq(n, ist("proxy-connection")) ||
5913 isteq(n, ist("keep-alive")) ||
5914 isteq(n, ist("upgrade")) ||
5915 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005916 continue;
5917
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005918 if (isteq(n, ist("te"))) {
5919 /* "te" may only be sent with "trailers" if this value
5920 * is present, otherwise it must be deleted.
5921 */
5922 v = istist(v, ist("trailers"));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01005923 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005924 continue;
5925 v = ist("trailers");
5926 }
5927
Christopher Faulet86d144c2019-08-14 16:32:25 +02005928 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005929 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005930 continue;
5931
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005932 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005933 break; // end
5934
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005935 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 +02005936 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005937 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005938 goto realign_again;
5939 goto full;
5940 }
5941 }
5942
Willy Tarreaucb985a42019-10-07 16:56:34 +02005943 /* update the frame's size */
5944 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5945
5946 if (outbuf.data > h2c->mfs + 9) {
5947 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5948 /* output full */
5949 if (b_space_wraps(mbuf))
5950 goto realign_again;
5951 goto full;
5952 }
5953 }
5954
Willy Tarreau3a537072021-06-17 08:40:04 +02005955 TRACE_USER("sent H2 request ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5956
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005957 /* remove all header blocks including the EOH and compute the
5958 * corresponding size.
Willy Tarreau80739692018-10-05 11:35:57 +02005959 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005960 ret = 0;
5961 blk = htx_get_head_blk(htx);
5962 while (blk) {
5963 type = htx_get_blk_type(blk);
5964 ret += htx_get_blksz(blk);
5965 blk = htx_remove_blk(htx, blk);
5966 /* The removed block is the EOH */
5967 if (type == HTX_BLK_EOH)
5968 break;
Christopher Fauletd0db4232021-01-22 11:46:30 +01005969 }
Willy Tarreau80739692018-10-05 11:35:57 +02005970
Willy Tarreau95acc8b2022-05-27 16:14:10 +02005971 if (!h2s_sc(h2s) || se_fl_test(h2s->sd, SE_FL_SHW)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005972 /* Request already closed: add END_STREAM */
Willy Tarreau80739692018-10-05 11:35:57 +02005973 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005974 }
5975 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5976 /* EOM+empty: we may need to add END_STREAM (except for CONNECT
5977 * request)
5978 */
5979 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5980 es_now = 1;
5981 }
Willy Tarreau80739692018-10-05 11:35:57 +02005982
Willy Tarreau80739692018-10-05 11:35:57 +02005983 if (es_now)
5984 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5985
5986 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005987 b_add(mbuf, outbuf.data);
Willy Tarreau936db562023-10-18 11:39:43 +02005988 h2c->flags |= H2_CF_MBUF_HAS_DATA;
Willy Tarreau80739692018-10-05 11:35:57 +02005989 h2s->flags |= H2_SF_HEADERS_SENT;
5990 h2s->st = H2_SS_OPEN;
5991
Willy Tarreau80739692018-10-05 11:35:57 +02005992 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005993 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 +02005994 // trim any possibly pending data (eg: inconsistent content-length)
5995 h2s->flags |= H2_SF_ES_SENT;
5996 h2s->st = H2_SS_HLOC;
5997 }
5998
Willy Tarreau80739692018-10-05 11:35:57 +02005999 end:
6000 return ret;
6001 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02006002 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6003 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02006004 h2c->flags |= H2_CF_MUX_MFULL;
6005 h2s->flags |= H2_SF_BLK_MROOM;
6006 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006007 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 +02006008 goto end;
6009 fail:
6010 /* unparsable HTX messages, too large ones to be produced in the local
6011 * list etc go here (unrecoverable errors).
6012 */
6013 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
6014 ret = 0;
6015 goto end;
6016}
6017
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006018/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01006019 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
6020 * caller must check the stream's status to detect any error which might have
6021 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006022 * consumed, or zero if nothing done.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006023 */
Christopher Faulet142854b2020-12-02 15:12:40 +01006024static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006025{
6026 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01006027 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006028 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02006029 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006030 size_t total = 0;
6031 int es_now = 0;
6032 int bsize; /* htx block size */
6033 int fsize; /* h2 frame size */
6034 struct htx_blk *blk;
6035 enum htx_blk_type type;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01006036 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006037
Willy Tarreau7838a792019-08-12 18:42:03 +02006038 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6039
Willy Tarreau98de12a2018-12-12 07:03:00 +01006040 htx = htx_from_buf(buf);
6041
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006042 /* We only come here with HTX_BLK_DATA blocks */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006043
6044 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01006045 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006046 goto end;
6047
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006048 if ((h2c->flags & H2_CF_IS_BACK) &&
Christopher Fauletf95f8762021-01-22 11:59:07 +01006049 (h2s->flags & (H2_SF_HEADERS_RCVD|H2_SF_BODY_TUNNEL)) == H2_SF_BODY_TUNNEL) {
6050 /* The response HEADERS frame not received yet. Thus the tunnel
6051 * is not fully established yet. In this situation, we block
6052 * data sending.
6053 */
6054 h2s->flags |= H2_SF_BLK_MBUSY;
6055 TRACE_STATE("Request DATA frame blocked waiting for tunnel establishment", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6056 goto end;
6057 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01006058 else if ((h2c->flags & H2_CF_IS_BACK) && (h2s->flags & H2_SF_TUNNEL_ABRT)) {
6059 /* a tunnel attempt was aborted but the is pending raw data to xfer to the server.
6060 * Thus the stream is closed with the CANCEL error. The error will be reported to
6061 * the upper layer as aserver abort. But at this stage there is nothing more we can
6062 * do. We just wait for the end of the response to be sure to not truncate it.
6063 */
6064 if (!(h2s->flags & H2_SF_ES_RCVD)) {
6065 TRACE_STATE("Request DATA frame blocked waiting end of aborted tunnel", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6066 h2s->flags |= H2_SF_BLK_MBUSY;
6067 }
6068 else {
6069 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
6070 h2s_error(h2s, H2_ERR_CANCEL);
6071 }
6072 goto end;
6073 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01006074
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006075 blk = htx_get_head_blk(htx);
6076 type = htx_get_blk_type(blk);
6077 bsize = htx_get_blksz(blk);
6078 fsize = bsize;
6079 trunc_out = 0;
6080 if (type != HTX_BLK_DATA)
6081 goto end;
6082
Willy Tarreau9c218e72019-05-26 10:08:28 +02006083 mbuf = br_tail(h2c->mbuf);
6084 retry:
6085 if (!h2_get_buf(h2c, mbuf)) {
6086 h2c->flags |= H2_CF_MUX_MALLOC;
6087 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006088 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 +02006089 goto end;
6090 }
6091
Willy Tarreau98de12a2018-12-12 07:03:00 +01006092 /* Perform some optimizations to reduce the number of buffer copies.
6093 * First, if the mux's buffer is empty and the htx area contains
6094 * exactly one data block of the same size as the requested count, and
6095 * this count fits within the frame size, the stream's window size, and
6096 * the connection's window size, then it's possible to simply swap the
6097 * caller's buffer with the mux's output buffer and adjust offsets and
6098 * length to match the entire DATA HTX block in the middle. In this
6099 * case we perform a true zero-copy operation from end-to-end. This is
6100 * the situation that happens all the time with large files. Second, if
6101 * this is not possible, but the mux's output buffer is empty, we still
6102 * have an opportunity to avoid the copy to the intermediary buffer, by
6103 * making the intermediary buffer's area point to the output buffer's
6104 * area. In this case we want to skip the HTX header to make sure that
6105 * copies remain aligned and that this operation remains possible all
6106 * the time. This goes for headers, data blocks and any data extracted
6107 * from the HTX blocks.
6108 */
6109 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02006110 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02006111 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006112 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01006113
Willy Tarreaubcc45952019-05-26 10:05:50 +02006114 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01006115 /* Too bad there are data left there. We're willing to memcpy/memmove
6116 * up to 1/4 of the buffer, which means that it's OK to copy a large
6117 * frame into a buffer containing few data if it needs to be realigned,
6118 * and that it's also OK to copy few data without realigning. Otherwise
6119 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01006120 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006121 if (fsize + 9 <= b_room(mbuf) &&
6122 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02006123 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
6124 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 +01006125 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02006126 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01006127
Willy Tarreau9c218e72019-05-26 10:08:28 +02006128 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6129 goto retry;
6130
Willy Tarreau98de12a2018-12-12 07:03:00 +01006131 h2c->flags |= H2_CF_MUX_MFULL;
6132 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006133 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 +01006134 goto end;
6135 }
6136
Christopher Faulet925abdf2021-04-27 22:51:07 +02006137 if (htx->flags & HTX_FL_EOM) {
6138 /* EOM+empty: we may need to add END_STREAM (except for tunneled
6139 * message)
6140 */
6141 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
6142 es_now = 1;
6143 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01006144 /* map an H2 frame to the HTX block so that we can put the
6145 * frame header there.
6146 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006147 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
6148 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01006149
6150 /* prepend an H2 DATA frame header just before the DATA block */
6151 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
6152 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
Christopher Faulet925abdf2021-04-27 22:51:07 +02006153 if (es_now)
6154 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreau98de12a2018-12-12 07:03:00 +01006155 h2_set_frame_size(outbuf.area, fsize);
6156
6157 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02006158 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01006159 h2c->mws -= fsize;
6160
6161 /* and exchange with our old area */
6162 buf->area = old_area;
6163 buf->data = buf->head = 0;
6164 total += fsize;
Christopher Faulet925abdf2021-04-27 22:51:07 +02006165 fsize = 0;
Willy Tarreau936db562023-10-18 11:39:43 +02006166 h2c->flags |= H2_CF_MBUF_HAS_DATA;
Willy Tarreau7838a792019-08-12 18:42:03 +02006167
6168 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 +02006169 goto out;
Willy Tarreau98de12a2018-12-12 07:03:00 +01006170 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01006171
Willy Tarreau98de12a2018-12-12 07:03:00 +01006172 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006173 /* for DATA and EOM we'll have to emit a frame, even if empty */
6174
6175 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006176 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6177 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006178 break;
6179 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006180 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006181 }
6182
6183 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02006184 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6185 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006186 h2c->flags |= H2_CF_MUX_MFULL;
6187 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006188 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006189 goto end;
6190 }
6191
6192 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
6193 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
6194 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6195 outbuf.data = 9;
6196
6197 /* we have in <fsize> the exact number of bytes we need to copy from
6198 * the HTX buffer. We need to check this against the connection's and
6199 * the stream's send windows, and to ensure that this fits in the max
6200 * frame size and in the buffer's available space minus 9 bytes (for
6201 * the frame header). The connection's flow control is applied last so
6202 * that we can use a separate list of streams which are immediately
6203 * unblocked on window opening. Note: we don't implement padding.
6204 */
6205
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006206 if (!fsize)
6207 goto send_empty;
6208
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02006209 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006210 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreau2b718102021-04-21 07:32:39 +02006211 if (LIST_INLIST(&h2s->list))
Willy Tarreaude4a5382023-10-17 08:25:19 +02006212 h2_remove_from_list(h2s);
Willy Tarreau2b718102021-04-21 07:32:39 +02006213 LIST_APPEND(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02006214 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 +01006215 goto end;
6216 }
6217
Willy Tarreauee573762018-12-04 15:25:57 +01006218 if (fsize > count)
6219 fsize = count;
6220
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02006221 if (fsize > h2s_mws(h2s))
6222 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006223
6224 if (h2c->mfs && fsize > h2c->mfs)
6225 fsize = h2c->mfs; // >0
6226
6227 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02006228 /* It doesn't fit at once. If it at least fits once split and
6229 * the amount of data to move is low, let's defragment the
6230 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006231 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006232 if (b_space_wraps(mbuf) &&
6233 (fsize + 9 <= b_room(mbuf)) &&
6234 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006235 goto realign_again;
6236 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01006237 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006238
6239 if (fsize <= 0) {
6240 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02006241 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6242 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006243 h2c->flags |= H2_CF_MUX_MFULL;
6244 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006245 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006246 goto end;
6247 }
6248 }
6249
6250 if (h2c->mws <= 0) {
6251 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02006252 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 +01006253 goto end;
6254 }
6255
6256 if (fsize > h2c->mws)
6257 fsize = h2c->mws;
6258
6259 /* now let's copy this this into the output buffer */
6260 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02006261 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01006262 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01006263 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006264
6265 send_empty:
6266 /* update the frame's size */
6267 h2_set_frame_size(outbuf.area, fsize);
6268
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006269 /* consume incoming HTX block */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006270 total += fsize;
6271 if (fsize == bsize) {
6272 htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006273 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
6274 /* EOM+empty: we may need to add END_STREAM (except for tunneled
6275 * message)
6276 */
6277 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
6278 es_now = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02006279 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006280 }
6281 else {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006282 /* we've truncated this block */
6283 htx_cut_data_blk(htx, blk, fsize);
6284 }
6285
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006286 if (es_now)
6287 outbuf.area[4] |= H2_F_DATA_END_STREAM;
6288
6289 /* commit the H2 response */
6290 b_add(mbuf, fsize + 9);
Willy Tarreau936db562023-10-18 11:39:43 +02006291 h2c->flags |= H2_CF_MBUF_HAS_DATA;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006292
Christopher Faulet925abdf2021-04-27 22:51:07 +02006293 out:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006294 if (es_now) {
6295 if (h2s->st == H2_SS_OPEN)
6296 h2s->st = H2_SS_HLOC;
6297 else
6298 h2s_close(h2s);
6299
6300 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02006301 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 +01006302 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006303 else if (fsize) {
6304 if (fsize == bsize) {
6305 TRACE_DEVEL("more data may be available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6306 goto new_frame;
6307 }
6308 else if (trunc_out) {
6309 /* we've truncated this block */
6310 goto new_frame;
6311 }
6312 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006313
6314 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006315 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006316 return total;
6317}
6318
Christopher Faulet991febd2020-12-02 15:17:31 +01006319/* Skip the message payload (DATA blocks) and emit an empty DATA frame with the
6320 * ES flag set for stream <h2s>. This function is called for response known to
6321 * have no payload. Only DATA blocks are skipped. This means the trailers are
Ilya Shipitsinacf84592021-02-06 22:29:08 +05006322 * still emitted. The caller must check the stream's status to detect any error
Christopher Faulet991febd2020-12-02 15:17:31 +01006323 * which might have happened subsequently to a successful send. Returns the
6324 * number of data bytes consumed, or zero if nothing done.
6325 */
6326static size_t h2s_skip_data(struct h2s *h2s, struct buffer *buf, size_t count)
6327{
6328 struct h2c *h2c = h2s->h2c;
6329 struct htx *htx;
6330 int bsize; /* htx block size */
6331 int fsize; /* h2 frame size */
6332 struct htx_blk *blk;
6333 enum htx_blk_type type;
6334 size_t total = 0;
6335
6336 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6337
Christopher Faulet991febd2020-12-02 15:17:31 +01006338 htx = htx_from_buf(buf);
6339
6340 next_data:
6341 if (!count || htx_is_empty(htx))
6342 goto end;
6343 blk = htx_get_head_blk(htx);
6344 type = htx_get_blk_type(blk);
6345 bsize = htx_get_blksz(blk);
6346 fsize = bsize;
6347 if (type != HTX_BLK_DATA)
6348 goto end;
6349
6350 if (fsize > count)
6351 fsize = count;
6352
6353 if (fsize != bsize)
6354 goto skip_data;
6355
6356 if (!(htx->flags & HTX_FL_EOM) || !htx_is_unique_blk(htx, blk))
6357 goto skip_data;
6358
6359 /* Here, it is the last block and it is also the end of the message. So
6360 * we can emit an empty DATA frame with the ES flag set
6361 */
6362 if (h2_send_empty_data_es(h2s) <= 0)
6363 goto end;
6364
6365 if (h2s->st == H2_SS_OPEN)
6366 h2s->st = H2_SS_HLOC;
6367 else
6368 h2s_close(h2s);
6369
6370 skip_data:
6371 /* consume incoming HTX block */
6372 total += fsize;
6373 if (fsize == bsize) {
6374 TRACE_DEVEL("more data may be available, trying to skip another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6375 htx_remove_blk(htx, blk);
6376 goto next_data;
6377 }
6378 else {
6379 /* we've truncated this block */
6380 htx_cut_data_blk(htx, blk, fsize);
6381 }
6382
6383 end:
6384 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6385 return total;
6386}
6387
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006388/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
6389 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
6390 * processed. The caller must check the stream's status to detect any error
6391 * which might have happened subsequently to a successful send. The htx blocks
6392 * are automatically removed from the message. The htx message is assumed to be
6393 * valid since produced from the internal code. Processing stops when meeting
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006394 * the EOT, which *is* removed. All trailers are processed at once and sent as a
6395 * single frame. The ES flag is always set.
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006396 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006397static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006398{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02006399 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006400 struct h2c *h2c = h2s->h2c;
6401 struct htx_blk *blk;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006402 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02006403 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006404 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006405 int ret = 0;
6406 int hdr;
6407 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006408
Willy Tarreau7838a792019-08-12 18:42:03 +02006409 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
6410
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006411 /* get trailers. */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006412 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006413 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006414 type = htx_get_blk_type(blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006415
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006416 if (type == HTX_BLK_UNUSED)
6417 continue;
6418
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006419 if (type == HTX_BLK_EOT)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006420 break;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006421 if (type == HTX_BLK_TLR) {
6422 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
6423 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
6424 goto fail;
6425 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006426
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006427 list[hdr].n = htx_get_blk_name(htx, blk);
6428 list[hdr].v = htx_get_blk_value(htx, blk);
6429 hdr++;
6430 }
6431 else {
6432 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 +01006433 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02006434 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006435 }
6436
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006437 /* marker for end of trailers */
6438 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006439
Willy Tarreau9c218e72019-05-26 10:08:28 +02006440 mbuf = br_tail(h2c->mbuf);
6441 retry:
6442 if (!h2_get_buf(h2c, mbuf)) {
6443 h2c->flags |= H2_CF_MUX_MALLOC;
6444 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006445 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 +02006446 goto end;
6447 }
6448
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006449 chunk_reset(&outbuf);
6450
6451 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006452 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6453 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006454 break;
6455 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006456 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006457 }
6458
6459 if (outbuf.size < 9)
6460 goto full;
6461
6462 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
6463 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
6464 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6465 outbuf.data = 9;
6466
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006467 /* encode all headers */
6468 for (idx = 0; idx < hdr; idx++) {
6469 /* these ones do not exist in H2 or must not appear in
6470 * trailers and must be dropped.
6471 */
6472 if (isteq(list[idx].n, ist("host")) ||
6473 isteq(list[idx].n, ist("content-length")) ||
6474 isteq(list[idx].n, ist("connection")) ||
6475 isteq(list[idx].n, ist("proxy-connection")) ||
6476 isteq(list[idx].n, ist("keep-alive")) ||
6477 isteq(list[idx].n, ist("upgrade")) ||
6478 isteq(list[idx].n, ist("te")) ||
6479 isteq(list[idx].n, ist("transfer-encoding")))
6480 continue;
6481
Christopher Faulet86d144c2019-08-14 16:32:25 +02006482 /* Skip all pseudo-headers */
6483 if (*(list[idx].n.ptr) == ':')
6484 continue;
6485
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01006486 if (!h2_encode_header(&outbuf, list[idx].n, list[idx].v, H2_EV_TX_FRAME|H2_EV_TX_HDR,
6487 ist(TRC_LOC), __FUNCTION__, h2c, h2s)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006488 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006489 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006490 goto realign_again;
6491 goto full;
6492 }
6493 }
6494
Willy Tarreau5121e5d2019-05-06 15:13:41 +02006495 if (outbuf.data == 9) {
6496 /* here we have a problem, we have nothing to emit (either we
6497 * received an empty trailers block followed or we removed its
6498 * contents above). Because of this we can't send a HEADERS
6499 * frame, so we have to cheat and instead send an empty DATA
6500 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01006501 */
6502 outbuf.area[3] = H2_FT_DATA;
6503 outbuf.area[4] = H2_F_DATA_END_STREAM;
6504 }
6505
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006506 /* update the frame's size */
6507 h2_set_frame_size(outbuf.area, outbuf.data - 9);
6508
Willy Tarreau572d9f52019-10-11 16:58:37 +02006509 if (outbuf.data > h2c->mfs + 9) {
6510 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
6511 /* output full */
6512 if (b_space_wraps(mbuf))
6513 goto realign_again;
6514 goto full;
6515 }
6516 }
6517
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006518 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02006519 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 +02006520 b_add(mbuf, outbuf.data);
Willy Tarreau936db562023-10-18 11:39:43 +02006521 h2c->flags |= H2_CF_MBUF_HAS_DATA;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006522 h2s->flags |= H2_SF_ES_SENT;
6523
6524 if (h2s->st == H2_SS_OPEN)
6525 h2s->st = H2_SS_HLOC;
6526 else
6527 h2s_close(h2s);
6528
6529 /* OK we could properly deliver the response */
6530 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02006531 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006532 ret = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006533 blk = htx_get_head_blk(htx);
6534 while (blk) {
6535 type = htx_get_blk_type(blk);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006536 ret += htx_get_blksz(blk);
6537 blk = htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006538 /* The removed block is the EOT */
6539 if (type == HTX_BLK_EOT)
6540 break;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006541 }
6542
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006543 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006544 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006545 return ret;
6546 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02006547 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6548 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006549 h2c->flags |= H2_CF_MUX_MFULL;
6550 h2s->flags |= H2_SF_BLK_MROOM;
6551 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006552 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 +01006553 goto end;
6554 fail:
6555 /* unparsable HTX messages, too large ones to be produced in the local
6556 * list etc go here (unrecoverable errors).
6557 */
6558 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
6559 ret = 0;
6560 goto end;
6561}
6562
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006563/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6564 * event subscriber <es> is not allowed to change from a previous call as long
6565 * as at least one event is still subscribed. The <event_type> must only be a
6566 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006567 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006568static int h2_subscribe(struct stconn *sc, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02006569{
Willy Tarreau36c22322022-05-27 10:41:24 +02006570 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02006571 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006572
Willy Tarreau7838a792019-08-12 18:42:03 +02006573 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006574
6575 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006576 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006577
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006578 es->events |= event_type;
6579 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006580
6581 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006582 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006583
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006584 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006585 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02006586 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02006587 !LIST_INLIST(&h2s->list)) {
Willy Tarreaude4a5382023-10-17 08:25:19 +02006588 if (h2s->flags & H2_SF_BLK_MFCTL) {
6589 TRACE_DEVEL("Adding to fctl list", H2_EV_STRM_SEND, h2c->conn, h2s);
Willy Tarreau2b718102021-04-21 07:32:39 +02006590 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreaude4a5382023-10-17 08:25:19 +02006591 }
6592 else {
6593 TRACE_DEVEL("Adding to send list", H2_EV_STRM_SEND, h2c->conn, h2s);
Willy Tarreau2b718102021-04-21 07:32:39 +02006594 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaude4a5382023-10-17 08:25:19 +02006595 }
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02006596 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02006597 }
Willy Tarreau7838a792019-08-12 18:42:03 +02006598 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006599 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006600}
6601
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006602/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6603 * The <es> pointer is not allowed to differ from the one passed to the
6604 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006605 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006606static int h2_unsubscribe(struct stconn *sc, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006607{
Willy Tarreau36c22322022-05-27 10:41:24 +02006608 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006609
Willy Tarreau7838a792019-08-12 18:42:03 +02006610 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006611
6612 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006613 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006614
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006615 es->events &= ~event_type;
6616 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01006617 h2s->subs = NULL;
6618
6619 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006620 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006621
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006622 if (event_type & SUB_RETRY_SEND) {
Frédéric Lécaille67fda162022-06-30 12:01:54 +02006623 TRACE_DEVEL("unsubscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006624 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006625 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
Willy Tarreaude4a5382023-10-17 08:25:19 +02006626 h2_remove_from_list(h2s);
Olivier Houchardd846c262018-10-19 17:24:29 +02006627 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01006628
Willy Tarreau7838a792019-08-12 18:42:03 +02006629 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006630 return 0;
6631}
6632
6633
Christopher Faulet564e39c2021-09-21 15:50:55 +02006634/* Called from the upper layer, to receive data
6635 *
6636 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
6637 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
6638 * means the caller wants to flush input data (from the mux buffer and the
6639 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
6640 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
6641 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
6642 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
6643 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
6644 * copy as much data as possible.
6645 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006646static size_t h2_rcv_buf(struct stconn *sc, struct buffer *buf, size_t count, int flags)
Olivier Houchard511efea2018-08-16 15:30:32 +02006647{
Willy Tarreau36c22322022-05-27 10:41:24 +02006648 struct h2s *h2s = __sc_mux_strm(sc);
Willy Tarreau082f5592018-11-25 08:03:32 +01006649 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01006650 struct htx *h2s_htx = NULL;
6651 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02006652 size_t ret = 0;
6653
Willy Tarreau7838a792019-08-12 18:42:03 +02006654 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
6655
Olivier Houchard511efea2018-08-16 15:30:32 +02006656 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006657 h2s_htx = htx_from_buf(&h2s->rxbuf);
Christopher Fauletec361bb2022-02-21 15:12:54 +01006658 if (htx_is_empty(h2s_htx) && !(h2s_htx->flags & HTX_FL_PARSING_ERROR)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02006659 /* Here htx_to_buf() will set buffer data to 0 because
6660 * the HTX is empty.
6661 */
6662 htx_to_buf(h2s_htx, &h2s->rxbuf);
6663 goto end;
6664 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02006665 ret = h2s_htx->data;
6666 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01006667
Christopher Faulet9b79a102019-07-15 11:22:56 +02006668 /* <buf> is empty and the message is small enough, swap the
6669 * buffers. */
6670 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01006671 htx_to_buf(buf_htx, buf);
6672 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006673 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
6674 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01006675 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02006676
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006677 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_UNUSED);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006678
6679 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
6680 buf_htx->flags |= HTX_FL_PARSING_ERROR;
6681 if (htx_is_empty(buf_htx))
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006682 se_fl_set(h2s->sd, SE_FL_EOI);
Willy Tarreau86724e22018-12-01 23:19:43 +01006683 }
Christopher Faulet72722c02023-02-23 14:26:34 +01006684 else if (htx_is_empty(h2s_htx)) {
Christopher Faulet42432f32020-11-20 17:43:16 +01006685 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOM);
Christopher Faulet72722c02023-02-23 14:26:34 +01006686 }
6687
Christopher Faulet9b79a102019-07-15 11:22:56 +02006688 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
6689 htx_to_buf(buf_htx, buf);
6690 htx_to_buf(h2s_htx, &h2s->rxbuf);
6691 ret -= h2s_htx->data;
6692
Christopher Faulet37070b22019-02-14 15:12:14 +01006693 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02006694 if (b_data(&h2s->rxbuf))
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006695 se_fl_set(h2s->sd, SE_FL_RCV_MORE | SE_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006696 else {
Christopher Faulet34f81d52023-05-04 16:41:37 +02006697 if (!(h2c->flags & H2_CF_IS_BACK) && (h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_ES_RCVD))) {
Christopher Faulet4403cdf2023-05-04 15:49:12 +02006698 /* If request ES is reported to the upper layer, it means the
6699 * H2S now expects data from the opposite side.
6700 */
6701 se_expect_data(h2s->sd);
6702 }
6703
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006704 se_fl_clr(h2s->sd, SE_FL_RCV_MORE | SE_FL_WANT_ROOM);
Christopher Faulet531dd052023-05-24 11:14:38 +02006705 h2s_propagate_term_flags(h2c, h2s);
Olivier Houchard638b7992018-08-16 15:41:52 +02006706 if (b_size(&h2s->rxbuf)) {
6707 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01006708 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02006709 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006710 }
6711
Willy Tarreau082f5592018-11-25 08:03:32 +01006712 if (ret && h2c->dsi == h2s->id) {
6713 /* demux is blocking on this stream's buffer */
6714 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006715 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006716 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006717
Willy Tarreau7838a792019-08-12 18:42:03 +02006718 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006719 return ret;
6720}
6721
Olivier Houchardd846c262018-10-19 17:24:29 +02006722
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006723/* Called from the upper layer, to send data from buffer <buf> for no more than
6724 * <count> bytes. Returns the number of bytes effectively sent. Some status
Willy Tarreau4596fe22022-05-17 19:07:51 +02006725 * flags may be updated on the stream connector.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006726 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006727static size_t h2_snd_buf(struct stconn *sc, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006728{
Willy Tarreau36c22322022-05-27 10:41:24 +02006729 struct h2s *h2s = __sc_mux_strm(sc);
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006730 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006731 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006732 struct htx *htx;
6733 struct htx_blk *blk;
6734 enum htx_blk_type btype;
6735 uint32_t bsize;
6736 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006737
Willy Tarreau7838a792019-08-12 18:42:03 +02006738 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6739
Olivier Houchardd360ac62019-03-22 17:37:16 +01006740 /* If we were not just woken because we wanted to send but couldn't,
6741 * and there's somebody else that is waiting to send, do nothing,
6742 * we will subscribe later and be put at the end of the list
6743 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006744 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006745 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
Willy Tarreaude4a5382023-10-17 08:25:19 +02006746 if (LIST_INLIST(&h2s->list))
6747 TRACE_DEVEL("stream already waiting, leaving", H2_EV_H2S_SEND|H2_EV_H2S_BLK, h2s->h2c->conn, h2s);
6748 else {
6749 TRACE_DEVEL("other streams already waiting, going to the queue and leaving", H2_EV_H2S_SEND|H2_EV_H2S_BLK, h2s->h2c->conn, h2s);
6750 h2s->h2c->flags |= H2_CF_WAIT_INLIST;
6751 }
Olivier Houchardd360ac62019-03-22 17:37:16 +01006752 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006753 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006754 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006755
Willy Tarreau7838a792019-08-12 18:42:03 +02006756 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6757 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 +02006758 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006759 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006760
Willy Tarreaucab22952019-10-31 15:48:18 +01006761 if (h2s->h2c->st0 >= H2_CS_ERROR) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006762 se_fl_set(h2s->sd, SE_FL_ERROR);
Willy Tarreaucab22952019-10-31 15:48:18 +01006763 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);
6764 return 0;
6765 }
6766
Christopher Faulet9b79a102019-07-15 11:22:56 +02006767 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006768
Willy Tarreau0bad0432018-06-14 16:54:01 +02006769 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006770 h2s->flags |= H2_SF_OUTGOING_DATA;
6771
Christopher Faulet2e47e3a2023-01-13 11:40:24 +01006772 if (htx->extra && htx->extra != HTX_UNKOWN_PAYLOAD_LENGTH)
Willy Tarreau48770452022-08-18 16:03:51 +02006773 h2s->flags |= H2_SF_MORE_HTX_DATA;
6774 else
6775 h2s->flags &= ~H2_SF_MORE_HTX_DATA;
6776
Willy Tarreau751f2d02018-10-05 09:35:00 +02006777 if (h2s->id == 0) {
6778 int32_t id = h2c_get_next_sid(h2s->h2c);
6779
6780 if (id < 0) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006781 se_fl_set(h2s->sd, SE_FL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02006782 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 +02006783 return 0;
6784 }
6785
6786 eb32_delete(&h2s->by_id);
6787 h2s->by_id.key = h2s->id = id;
6788 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006789 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006790 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6791 }
6792
Christopher Faulet9b79a102019-07-15 11:22:56 +02006793 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6794 count && !htx_is_empty(htx)) {
6795 idx = htx_get_head(htx);
6796 blk = htx_get_blk(htx, idx);
6797 btype = htx_get_blk_type(blk);
6798 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006799
Christopher Faulet9b79a102019-07-15 11:22:56 +02006800 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006801 case HTX_BLK_REQ_SL:
6802 /* start-line before headers */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01006803 ret = h2s_snd_bhdrs(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006804 if (ret > 0) {
6805 total += ret;
6806 count -= ret;
6807 if (ret < bsize)
6808 goto done;
6809 }
6810 break;
6811
Willy Tarreau115e83b2018-12-01 19:17:53 +01006812 case HTX_BLK_RES_SL:
6813 /* start-line before headers */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01006814 ret = h2s_snd_fhdrs(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006815 if (ret > 0) {
6816 total += ret;
6817 count -= ret;
6818 if (ret < bsize)
6819 goto done;
6820 }
6821 break;
6822
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006823 case HTX_BLK_DATA:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006824 /* all these cause the emission of a DATA frame (possibly empty) */
Christopher Faulet991febd2020-12-02 15:17:31 +01006825 if (!(h2s->h2c->flags & H2_CF_IS_BACK) &&
6826 (h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BODYLESS_RESP)) == H2_SF_BODYLESS_RESP)
6827 ret = h2s_skip_data(h2s, buf, count);
6828 else
6829 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006830 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006831 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006832 total += ret;
6833 count -= ret;
6834 if (ret < bsize)
6835 goto done;
6836 }
6837 break;
6838
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006839 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006840 case HTX_BLK_EOT:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006841 /* This is the first trailers block, all the subsequent ones */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006842 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006843 if (ret > 0) {
6844 total += ret;
6845 count -= ret;
6846 if (ret < bsize)
6847 goto done;
6848 }
6849 break;
6850
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006851 default:
6852 htx_remove_blk(htx, blk);
6853 total += bsize;
6854 count -= bsize;
6855 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006856 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006857 }
6858
Christopher Faulet9b79a102019-07-15 11:22:56 +02006859 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006860 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006861 /* trim any possibly pending data after we close (extra CR-LF,
6862 * unprocessed trailers, abnormal extra data, ...)
6863 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006864 total += count;
6865 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006866 }
6867
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006868 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006869 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006870 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 +02006871 se_fl_set_error(h2s->sd);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006872 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006873 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006874 }
6875
Christopher Faulet9b79a102019-07-15 11:22:56 +02006876 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006877
Olivier Houchard7505f942018-08-21 18:10:44 +02006878 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006879 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006880 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 +02006881 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006882 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006883
Olivier Houchard7505f942018-08-21 18:10:44 +02006884 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006885 /* If we're waiting for flow control, and we got a shutr on the
6886 * connection, we will never be unlocked, so add an error on
Willy Tarreau4596fe22022-05-17 19:07:51 +02006887 * the stream connector.
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006888 */
Christopher Fauletff7925d2022-10-11 19:12:40 +02006889 if ((h2s->h2c->flags & H2_CF_RCVD_SHUT) &&
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006890 !b_data(&h2s->h2c->dbuf) &&
6891 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006892 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 +01006893 se_fl_set_error(h2s->sd);
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006894 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006895
Willy Tarreau5723f292020-01-10 15:16:57 +01006896 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6897 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006898 /* Ok we managed to send something, leave the send_list if we were still there */
Willy Tarreaude4a5382023-10-17 08:25:19 +02006899 h2_remove_from_list(h2s);
6900 TRACE_DEVEL("Removed from h2s list", H2_EV_H2S_SEND|H2_EV_H2C_SEND, h2s->h2c->conn, h2s);
Olivier Houchardd360ac62019-03-22 17:37:16 +01006901 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006902
Willy Tarreau7838a792019-08-12 18:42:03 +02006903 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006904 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006905}
6906
Willy Tarreau90bffa22022-09-01 19:06:44 +02006907/* appends some info about stream <h2s> to buffer <msg>, or does nothing if
Willy Tarreau7051f732022-09-02 15:22:12 +02006908 * <h2s> is NULL. Returns non-zero if the stream is considered suspicious. May
6909 * emit multiple lines, each new one being prefixed with <pfx>, if <pfx> is not
6910 * NULL, otherwise a single line is used.
Willy Tarreau90bffa22022-09-01 19:06:44 +02006911 */
Willy Tarreau7051f732022-09-02 15:22:12 +02006912static int h2_dump_h2s_info(struct buffer *msg, const struct h2s *h2s, const char *pfx)
Willy Tarreau90bffa22022-09-01 19:06:44 +02006913{
6914 int ret = 0;
6915
6916 if (!h2s)
6917 return ret;
6918
Willy Tarreau7051f732022-09-02 15:22:12 +02006919 chunk_appendf(msg, " h2s.id=%d .st=%s .flg=0x%04x .rxbuf=%u@%p+%u/%u",
Willy Tarreau90bffa22022-09-01 19:06:44 +02006920 h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
6921 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
Willy Tarreau7051f732022-09-02 15:22:12 +02006922 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf));
6923
6924 if (pfx)
6925 chunk_appendf(msg, "\n%s", pfx);
6926
6927 chunk_appendf(msg, " .sc=%p", h2s_sc(h2s));
Willy Tarreau90bffa22022-09-01 19:06:44 +02006928 if (h2s_sc(h2s))
6929 chunk_appendf(msg, "(.flg=0x%08x .app=%p)",
6930 h2s_sc(h2s)->flags, h2s_sc(h2s)->app);
6931
Willy Tarreau7051f732022-09-02 15:22:12 +02006932 chunk_appendf(msg, " .sd=%p", h2s->sd);
Willy Tarreau90bffa22022-09-01 19:06:44 +02006933 chunk_appendf(msg, "(.flg=0x%08x)", se_fl_get(h2s->sd));
6934
Willy Tarreau7051f732022-09-02 15:22:12 +02006935 if (pfx)
6936 chunk_appendf(msg, "\n%s", pfx);
6937
Willy Tarreau90bffa22022-09-01 19:06:44 +02006938 chunk_appendf(msg, " .subs=%p", h2s->subs);
6939 if (h2s->subs) {
6940 chunk_appendf(msg, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
6941 chunk_appendf(msg, " tl.calls=%d tl.ctx=%p tl.fct=",
6942 h2s->subs->tasklet->calls,
6943 h2s->subs->tasklet->context);
6944 if (h2s->subs->tasklet->calls >= 1000000)
6945 ret = 1;
6946 resolve_sym_name(msg, NULL, h2s->subs->tasklet->process);
6947 chunk_appendf(msg, ")");
6948 }
6949 return ret;
6950}
6951
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006952/* appends some info about connection <h2c> to buffer <msg>, or does nothing if
6953 * <h2c> is NULL. Returns non-zero if the connection is considered suspicious.
Willy Tarreau7051f732022-09-02 15:22:12 +02006954 * May emit multiple lines, each new one being prefixed with <pfx>, if <pfx> is
6955 * not NULL, otherwise a single line is used.
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006956 */
Willy Tarreau7051f732022-09-02 15:22:12 +02006957static int h2_dump_h2c_info(struct buffer *msg, struct h2c *h2c, const char *pfx)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006958{
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006959 const struct buffer *hmbuf, *tmbuf;
6960 const struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006961 struct eb32_node *node;
6962 int fctl_cnt = 0;
6963 int send_cnt = 0;
6964 int tree_cnt = 0;
6965 int orph_cnt = 0;
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006966 int ret = 0;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006967
6968 if (!h2c)
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006969 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006970
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006971 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006972 fctl_cnt++;
6973
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006974 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006975 send_cnt++;
6976
6977 node = eb32_first(&h2c->streams_by_id);
6978 while (node) {
6979 h2s = container_of(node, struct h2s, by_id);
6980 tree_cnt++;
Willy Tarreau7be4ee02022-05-18 07:31:41 +02006981 if (!h2s_sc(h2s))
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006982 orph_cnt++;
6983 node = eb32_next(node);
6984 }
6985
Willy Tarreau60f62682019-05-26 11:32:27 +02006986 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006987 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006988 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau22892322024-01-17 16:57:23 +01006989 " .nbst=%u .nbsc=%u, .glitches=%d",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006990 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau22892322024-01-17 16:57:23 +01006991 h2c->nb_streams, h2c->nb_sc, h2c->glitches);
Willy Tarreau7051f732022-09-02 15:22:12 +02006992
6993 if (pfx)
6994 chunk_appendf(msg, "\n%s", pfx);
6995
6996 chunk_appendf(msg, " .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
6997 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u",
6998 fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006999 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01007000 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
Willy Tarreau7051f732022-09-02 15:22:12 +02007001 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf));
7002
7003 if (pfx)
7004 chunk_appendf(msg, "\n%s", pfx);
7005
Christopher Faulet68ee7842022-10-12 10:21:33 +02007006 chunk_appendf(msg, " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreau60f62682019-05-26 11:32:27 +02007007 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
7008 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
7009 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02007010 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
7011 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01007012
Willy Tarreauf8c77092022-11-29 15:26:43 +01007013 chunk_appendf(msg, " .task=%p", h2c->task);
7014 if (h2c->task) {
7015 chunk_appendf(msg, " .exp=%s",
7016 h2c->task->expire ? tick_is_expired(h2c->task->expire, now_ms) ? "<PAST>" :
7017 human_time(TICKS_TO_MS(h2c->task->expire - now_ms), TICKS_TO_MS(1000)) : "<NEVER>");
7018 }
Willy Tarreau7051f732022-09-02 15:22:12 +02007019
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02007020 return ret;
7021}
7022
7023/* for debugging with CLI's "show fd" command */
7024static int h2_show_fd(struct buffer *msg, struct connection *conn)
7025{
7026 struct h2c *h2c = conn->ctx;
7027 const struct h2s *h2s;
7028 struct eb32_node *node;
7029 int ret = 0;
7030
7031 if (!h2c)
7032 return ret;
7033
Willy Tarreau7051f732022-09-02 15:22:12 +02007034 ret |= h2_dump_h2c_info(msg, h2c, NULL);
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02007035
7036 node = eb32_last(&h2c->streams_by_id);
7037 if (node) {
7038 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau90bffa22022-09-01 19:06:44 +02007039 chunk_appendf(msg, " last_h2s=%p", h2s);
Willy Tarreau7051f732022-09-02 15:22:12 +02007040 ret |= h2_dump_h2s_info(msg, h2s, NULL);
Willy Tarreau987c0632018-12-18 10:32:05 +01007041 }
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02007042
Willy Tarreau06bf83e2021-01-21 09:13:35 +01007043 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02007044}
Willy Tarreau62f52692017-10-08 23:01:42 +02007045
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02007046/* for debugging with CLI's "show sess" command. May emit multiple lines, each
7047 * new one being prefixed with <pfx>, if <pfx> is not NULL, otherwise a single
7048 * line is used. Each field starts with a space so it's safe to print it after
7049 * existing fields.
7050 */
7051static int h2_show_sd(struct buffer *msg, struct sedesc *sd, const char *pfx)
7052{
7053 struct h2s *h2s = sd->se;
7054 int ret = 0;
7055
7056 if (!h2s)
7057 return ret;
7058
7059 chunk_appendf(msg, " h2s=%p", h2s);
Willy Tarreau7051f732022-09-02 15:22:12 +02007060 ret |= h2_dump_h2s_info(msg, h2s, pfx);
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02007061 if (pfx)
7062 chunk_appendf(msg, "\n%s", pfx);
7063 chunk_appendf(msg, " h2c=%p", h2s->h2c);
Willy Tarreau7051f732022-09-02 15:22:12 +02007064 ret |= h2_dump_h2c_info(msg, h2s->h2c, pfx);
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02007065 return ret;
7066}
7067
Olivier Houchardcd4159f2020-03-10 18:39:42 +01007068/* Migrate the the connection to the current thread.
7069 * Return 0 if successful, non-zero otherwise.
7070 * Expected to be called with the old thread lock held.
7071 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02007072static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01007073{
7074 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02007075 struct task *task;
Willy Tarreau960f37c2023-11-17 10:56:33 +01007076 struct task *new_task;
7077 struct tasklet *new_tasklet;
7078
7079 /* Pre-allocate tasks so that we don't have to roll back after the xprt
7080 * has been migrated.
7081 */
7082 new_task = task_new_here();
7083 new_tasklet = tasklet_new();
7084 if (!new_task || !new_tasklet)
7085 goto fail;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01007086
7087 if (fd_takeover(conn->handle.fd, conn) != 0)
Willy Tarreau960f37c2023-11-17 10:56:33 +01007088 goto fail;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02007089
7090 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
7091 /* We failed to takeover the xprt, even if the connection may
7092 * still be valid, flag it as error'd, as we have already
7093 * taken over the fd, and wake the tasklet, so that it will
7094 * destroy it.
7095 */
7096 conn->flags |= CO_FL_ERROR;
7097 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau960f37c2023-11-17 10:56:33 +01007098 goto fail;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02007099 }
7100
Olivier Houchardcd4159f2020-03-10 18:39:42 +01007101 if (h2c->wait_event.events)
7102 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
7103 h2c->wait_event.events, &h2c->wait_event);
Willy Tarreau617e80f2020-07-01 16:39:33 +02007104
7105 task = h2c->task;
7106 if (task) {
Willy Tarreau960f37c2023-11-17 10:56:33 +01007107 /* only assign a task if there was already one, otherwise
7108 * the preallocated new task will be released.
7109 */
Willy Tarreau617e80f2020-07-01 16:39:33 +02007110 task->context = NULL;
7111 h2c->task = NULL;
7112 __ha_barrier_store();
7113 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01007114
Willy Tarreau960f37c2023-11-17 10:56:33 +01007115 h2c->task = new_task;
7116 new_task = NULL;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01007117 h2c->task->process = h2_timeout_task;
7118 h2c->task->context = h2c;
7119 }
Willy Tarreau960f37c2023-11-17 10:56:33 +01007120
7121 /* To let the tasklet know it should free itself, and do nothing else,
7122 * set its context to NULL.
7123 */
7124 h2c->wait_event.tasklet->context = NULL;
7125 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
7126
7127 h2c->wait_event.tasklet = new_tasklet;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01007128 h2c->wait_event.tasklet->process = h2_io_cb;
7129 h2c->wait_event.tasklet->context = h2c;
7130 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
7131 SUB_RETRY_RECV, &h2c->wait_event);
7132
Willy Tarreau960f37c2023-11-17 10:56:33 +01007133 if (new_task)
7134 __task_free(new_task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01007135 return 0;
Willy Tarreau960f37c2023-11-17 10:56:33 +01007136 fail:
7137 if (new_task)
7138 __task_free(new_task);
7139 tasklet_free(new_tasklet);
7140 return -1;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01007141}
7142
Willy Tarreau62f52692017-10-08 23:01:42 +02007143/*******************************************************/
7144/* functions below are dedicated to the config parsers */
7145/*******************************************************/
7146
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02007147/* config parser for global "tune.h2.header-table-size" */
7148static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01007149 const struct proxy *defpx, const char *file, int line,
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02007150 char **err)
7151{
7152 if (too_many_args(1, args, err, NULL))
7153 return -1;
7154
7155 h2_settings_header_table_size = atoi(args[1]);
7156 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
7157 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
7158 return -1;
7159 }
7160 return 0;
7161}
Willy Tarreau62f52692017-10-08 23:01:42 +02007162
Willy Tarreau9d7abda2023-04-17 15:04:34 +02007163/* config parser for global "tune.h2.{be.,fe.,}initial-window-size" */
Willy Tarreaue6baec02017-07-27 11:45:11 +02007164static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01007165 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue6baec02017-07-27 11:45:11 +02007166 char **err)
7167{
Willy Tarreau9d7abda2023-04-17 15:04:34 +02007168 int *vptr;
7169
Willy Tarreaue6baec02017-07-27 11:45:11 +02007170 if (too_many_args(1, args, err, NULL))
7171 return -1;
7172
Willy Tarreau9d7abda2023-04-17 15:04:34 +02007173 /* backend/frontend/default */
7174 vptr = (args[0][8] == 'b') ? &h2_be_settings_initial_window_size :
7175 (args[0][8] == 'f') ? &h2_fe_settings_initial_window_size :
7176 &h2_settings_initial_window_size;
7177
7178 *vptr = atoi(args[1]);
7179 if (*vptr < 0) {
Willy Tarreaue6baec02017-07-27 11:45:11 +02007180 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
7181 return -1;
7182 }
7183 return 0;
7184}
7185
Willy Tarreauca1027c2023-04-18 15:57:03 +02007186/* config parser for global "tune.h2.{be.,fe.,}max-concurrent-streams" */
Willy Tarreau5242ef82017-07-27 11:47:28 +02007187static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01007188 const struct proxy *defpx, const char *file, int line,
Willy Tarreau5242ef82017-07-27 11:47:28 +02007189 char **err)
7190{
Willy Tarreauca1027c2023-04-18 15:57:03 +02007191 uint *vptr;
7192
Willy Tarreau5242ef82017-07-27 11:47:28 +02007193 if (too_many_args(1, args, err, NULL))
7194 return -1;
7195
Willy Tarreauca1027c2023-04-18 15:57:03 +02007196 /* backend/frontend/default */
7197 vptr = (args[0][8] == 'b') ? &h2_be_settings_max_concurrent_streams :
7198 (args[0][8] == 'f') ? &h2_fe_settings_max_concurrent_streams :
7199 &h2_settings_max_concurrent_streams;
7200
7201 *vptr = atoi(args[1]);
7202 if ((int)*vptr < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02007203 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
7204 return -1;
7205 }
7206 return 0;
7207}
7208
Willy Tarreau4869ed52023-10-13 18:11:59 +02007209/* config parser for global "tune.h2.fe.max-total-streams" */
7210static int h2_parse_max_total_streams(char **args, int section_type, struct proxy *curpx,
7211 const struct proxy *defpx, const char *file, int line,
7212 char **err)
7213{
7214 uint *vptr;
7215
7216 if (too_many_args(1, args, err, NULL))
7217 return -1;
7218
7219 /* frontend only for now */
7220 vptr = &h2_fe_max_total_streams;
7221
7222 *vptr = atoi(args[1]);
7223 if ((int)*vptr < 0) {
7224 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
7225 return -1;
7226 }
7227 return 0;
7228}
7229
Willy Tarreaua24b35c2019-02-21 13:24:36 +01007230/* config parser for global "tune.h2.max-frame-size" */
7231static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01007232 const struct proxy *defpx, const char *file, int line,
Willy Tarreaua24b35c2019-02-21 13:24:36 +01007233 char **err)
7234{
7235 if (too_many_args(1, args, err, NULL))
7236 return -1;
7237
7238 h2_settings_max_frame_size = atoi(args[1]);
7239 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
7240 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
7241 return -1;
7242 }
7243 return 0;
7244}
7245
Willy Tarreau62f52692017-10-08 23:01:42 +02007246
7247/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05007248/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02007249/***************************************/
7250
7251/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01007252static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02007253 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02007254 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02007255 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02007256 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02007257 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02007258 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02007259 .attach = h2_attach,
Willy Tarreaud1373532022-05-27 11:00:59 +02007260 .get_first_sc = h2_get_first_sc,
Willy Tarreau62f52692017-10-08 23:01:42 +02007261 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01007262 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01007263 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01007264 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02007265 .shutr = h2_shutr,
7266 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02007267 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02007268 .show_fd = h2_show_fd,
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02007269 .show_sd = h2_show_sd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01007270 .takeover = h2_takeover,
Christopher Fauleta97cced2022-04-12 18:04:10 +02007271 .flags = MX_FL_HTX|MX_FL_HOL_RISK|MX_FL_NO_UPG,
Willy Tarreau62f52692017-10-08 23:01:42 +02007272 .name = "H2",
7273};
7274
Christopher Faulet32f61c02018-04-10 14:33:41 +02007275static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02007276 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02007277
Willy Tarreau0108d902018-11-25 19:14:37 +01007278INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
7279
Willy Tarreau62f52692017-10-08 23:01:42 +02007280/* config keyword parsers */
7281static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau9d7abda2023-04-17 15:04:34 +02007282 { CFG_GLOBAL, "tune.h2.be.initial-window-size", h2_parse_initial_window_size },
Willy Tarreauca1027c2023-04-18 15:57:03 +02007283 { CFG_GLOBAL, "tune.h2.be.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreau9d7abda2023-04-17 15:04:34 +02007284 { CFG_GLOBAL, "tune.h2.fe.initial-window-size", h2_parse_initial_window_size },
Willy Tarreauca1027c2023-04-18 15:57:03 +02007285 { CFG_GLOBAL, "tune.h2.fe.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreau4869ed52023-10-13 18:11:59 +02007286 { CFG_GLOBAL, "tune.h2.fe.max-total-streams", h2_parse_max_total_streams },
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02007287 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02007288 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02007289 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01007290 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02007291 { 0, NULL, NULL }
7292}};
7293
Willy Tarreau0108d902018-11-25 19:14:37 +01007294INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02007295
7296/* initialize internal structs after the config is parsed.
7297 * Returns zero on success, non-zero on error.
7298 */
7299static int init_h2()
7300{
7301 pool_head_hpack_tbl = create_pool("hpack_tbl",
7302 h2_settings_header_table_size,
7303 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01007304 if (!pool_head_hpack_tbl) {
7305 ha_alert("failed to allocate hpack_tbl memory pool\n");
7306 return (ERR_ALERT | ERR_FATAL);
7307 }
7308 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02007309}
7310
7311REGISTER_POST_CHECK(init_h2);