blob: 4e1a440986e7a07aef2f46f53a91d64ffe145ad3 [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>
Willy Tarreau48d25b32020-06-04 18:58:52 +020029#include <haproxy/session-t.h>
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +010030#include <haproxy/stats.h>
Willy Tarreaucb086c62022-05-27 09:47:12 +020031#include <haproxy/stconn.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020032#include <haproxy/stream.h>
Willy Tarreauc6d61d72020-06-04 19:02:42 +020033#include <haproxy/trace.h>
Willy Tarreau62f52692017-10-08 23:01:42 +020034
35
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010036/* dummy streams returned for closed, error, refused, idle and states */
Willy Tarreau2a856182017-05-16 15:20:39 +020037static const struct h2s *h2_closed_stream;
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010038static const struct h2s *h2_error_stream;
Willy Tarreau8d0d58b2018-12-23 18:29:12 +010039static const struct h2s *h2_refused_stream;
Willy Tarreau2a856182017-05-16 15:20:39 +020040static const struct h2s *h2_idle_stream;
41
Willy Tarreau5ab6b572017-09-22 08:05:00 +020042
Willy Tarreau6c0fadf2022-09-12 19:07:51 +020043/**** H2 connection descriptor ****/
Willy Tarreau5ab6b572017-09-22 08:05:00 +020044struct h2c {
45 struct connection *conn;
46
47 enum h2_cs st0; /* mux state */
48 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
49
50 /* 16 bit hole here */
51 uint32_t flags; /* connection flags: H2_CF_* */
Willy Tarreau2e2083a2019-01-31 10:34:07 +010052 uint32_t streams_limit; /* maximum number of concurrent streams the peer supports */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020053 int32_t max_id; /* highest ID known on this connection, <0 before preface */
54 uint32_t rcvd_c; /* newly received data to ACK for the connection */
Willy Tarreau617592c2022-06-08 16:32:22 +020055 uint32_t rcvd_s; /* newly received data to ACK for the current stream (dsi) or zero */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020056
57 /* states for the demux direction */
58 struct hpack_dht *ddht; /* demux dynamic header table */
Willy Tarreauc9fa0482018-07-10 17:43:27 +020059 struct buffer dbuf; /* demux buffer */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020060
61 int32_t dsi; /* demux stream ID (<0 = idle) */
62 int32_t dfl; /* demux frame length (if dsi >= 0) */
63 int8_t dft; /* demux frame type (if dsi >= 0) */
64 int8_t dff; /* demux frame flags (if dsi >= 0) */
Willy Tarreau05e5daf2017-12-11 15:17:36 +010065 uint8_t dpl; /* demux pad length (part of dfl), init to 0 */
66 /* 8 bit hole here */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020067 int32_t last_sid; /* last processed stream ID for GOAWAY, <0 before preface */
68
69 /* states for the mux direction */
Willy Tarreau51330962019-05-26 09:38:07 +020070 struct buffer mbuf[H2C_MBUF_CNT]; /* mux buffers (ring) */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020071 int32_t miw; /* mux initial window size for all new streams */
72 int32_t mws; /* mux window size. Can be negative. */
73 int32_t mfs; /* mux's max frame size */
74
Willy Tarreauea392822017-10-31 10:02:25 +010075 int timeout; /* idle timeout duration in ticks */
Willy Tarreau599391a2017-11-24 10:16:00 +010076 int shut_timeout; /* idle timeout duration in ticks after GOAWAY was sent */
Willy Tarreau15a47332022-03-18 15:57:34 +010077 int idle_start; /* date of the last time the connection went idle */
78 /* 32-bit hole here */
Willy Tarreau49745612017-12-03 18:56:02 +010079 unsigned int nb_streams; /* number of streams in the tree */
Willy Tarreau36c22322022-05-27 10:41:24 +020080 unsigned int nb_sc; /* number of attached stream connectors */
Willy Tarreaud64a3eb2019-01-23 10:22:21 +010081 unsigned int nb_reserved; /* number of reserved streams */
Willy Tarreaue9634bd2019-01-23 10:25:10 +010082 unsigned int stream_cnt; /* total number of streams seen */
Willy Tarreau0b37d652018-10-03 10:33:02 +020083 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +010084 struct task *task; /* timeout management task */
Amaury Denoyellec92697d2020-10-27 17:16:01 +010085 struct h2_counters *px_counters; /* h2 counters attached to proxy */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020086 struct eb_root streams_by_id; /* all active streams by their ID */
87 struct list send_list; /* list of blocked streams requesting to send */
88 struct list fctl_list; /* list of streams blocked by connection's fctl */
Willy Tarreau9edf6db2019-10-02 10:49:59 +020089 struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */
Willy Tarreau44e973f2018-03-01 17:49:30 +010090 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +020091 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020092};
93
Willy Tarreau2c249eb2019-05-13 18:06:17 +020094
Willy Tarreau18312642017-10-11 07:57:07 +020095/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
Christopher Fauletfafd1b02020-11-03 18:25:52 +010096 * it is being processed in the internal HTTP representation (HTX).
Willy Tarreau18312642017-10-11 07:57:07 +020097 */
98struct h2s {
Willy Tarreau95acc8b2022-05-27 16:14:10 +020099 struct sedesc *sd;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100100 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200101 struct h2c *h2c;
Willy Tarreau18312642017-10-11 07:57:07 +0200102 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200103 int32_t id; /* stream ID */
104 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200105 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200106 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
107 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200108 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100109 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200110 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Willy Tarreau4596fe22022-05-17 19:07:51 +0200111 struct wait_event *subs; /* recv wait_event the stream connector associated is waiting on (via h2_subscribe) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200112 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Willy Tarreau5723f292020-01-10 15:16:57 +0100113 struct tasklet *shut_tl; /* deferred shutdown tasklet, to retry to send an RST after we failed to,
114 * in case there's no other subscription to do it */
Amaury Denoyelle74162742020-12-11 17:53:05 +0100115
116 char upgrade_protocol[16]; /* rfc 8441: requested protocol on Extended CONNECT */
Willy Tarreau18312642017-10-11 07:57:07 +0200117};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200118
Willy Tarreauc6405142017-09-21 20:23:50 +0200119/* descriptor for an h2 frame header */
120struct h2_fh {
121 uint32_t len; /* length, host order, 24 bits */
122 uint32_t sid; /* stream id, host order, 31 bits */
123 uint8_t ft; /* frame type */
124 uint8_t ff; /* frame flags */
125};
126
Willy Tarreau12ae2122019-08-08 18:23:12 +0200127/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200128static void h2_trace(enum trace_level level, uint64_t mask, \
129 const struct trace_source *src,
130 const struct ist where, const struct ist func,
131 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200132
133/* The event representation is split like this :
134 * strm - application layer
135 * h2s - internal H2 stream
136 * h2c - internal H2 connection
137 * conn - external connection
138 *
139 */
140static const struct trace_event h2_trace_events[] = {
141#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200142 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200143#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200144 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200145#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200146 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200147#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200148 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200149#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200150 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200151#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200152 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200153#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200154 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200155#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200156 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200157#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200158 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200159#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200160 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200161#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200162 { .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 +0200163#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200164 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200165#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200166 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200167#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200168 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200169#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200170 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200171#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200172 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200173#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200174 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200175#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200176 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200177#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200178 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200179#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200180 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200181#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200182 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200183#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200184 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200185#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200186 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200187#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200188 { .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 +0200189#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200190 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200191#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200192 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200193#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200194 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200195#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200196 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200197#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200198 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200199#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200200 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200201#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200202 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200203#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200204 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200205#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200206 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200207#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200208 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200209#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200210 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200211#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200212 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200213#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200214 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200215#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200216 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200217#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200218 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200219#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200220 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200221#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200222 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200223#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200224 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200225#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200226 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200227#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200228 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200229#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200230 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200231#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200232 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200233#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200234 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200235#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200236 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200237#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200238 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200239#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200240 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200241#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200242 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200243#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200244 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200245 { }
246};
247
248static const struct name_desc h2_trace_lockon_args[4] = {
249 /* arg1 */ { /* already used by the connection */ },
250 /* arg2 */ { .name="h2s", .desc="H2 stream" },
251 /* arg3 */ { },
252 /* arg4 */ { }
253};
254
255static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200256#define H2_VERB_CLEAN 1
257 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
258#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200259 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200260#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200261 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200262#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200263 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200264#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200265 { .name="complete", .desc="add full data dump when available" },
266 { /* end */ }
267};
268
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200269static struct trace_source trace_h2 __read_mostly = {
Willy Tarreau12ae2122019-08-08 18:23:12 +0200270 .name = IST("h2"),
271 .desc = "HTTP/2 multiplexer",
272 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200273 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200274 .known_events = h2_trace_events,
275 .lockon_args = h2_trace_lockon_args,
276 .decoding = h2_trace_decoding,
277 .report_events = ~0, // report everything by default
278};
279
280#define TRACE_SOURCE &trace_h2
281INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
282
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100283/* h2 stats module */
284enum {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100285 H2_ST_HEADERS_RCVD,
286 H2_ST_DATA_RCVD,
287 H2_ST_SETTINGS_RCVD,
288 H2_ST_RST_STREAM_RCVD,
289 H2_ST_GOAWAY_RCVD,
290
Amaury Denoyellea8879232020-10-27 17:16:03 +0100291 H2_ST_CONN_PROTO_ERR,
292 H2_ST_STRM_PROTO_ERR,
293 H2_ST_RST_STREAM_RESP,
294 H2_ST_GOAWAY_RESP,
295
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100296 H2_ST_OPEN_CONN,
297 H2_ST_OPEN_STREAM,
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100298 H2_ST_TOTAL_CONN,
299 H2_ST_TOTAL_STREAM,
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100300
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100301 H2_STATS_COUNT /* must be the last member of the enum */
302};
303
304static struct name_desc h2_stats[] = {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100305 [H2_ST_HEADERS_RCVD] = { .name = "h2_headers_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100306 .desc = "Total number of received HEADERS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100307 [H2_ST_DATA_RCVD] = { .name = "h2_data_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100308 .desc = "Total number of received DATA frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100309 [H2_ST_SETTINGS_RCVD] = { .name = "h2_settings_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100310 .desc = "Total number of received SETTINGS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100311 [H2_ST_RST_STREAM_RCVD] = { .name = "h2_rst_stream_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100312 .desc = "Total number of received RST_STREAM frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100313 [H2_ST_GOAWAY_RCVD] = { .name = "h2_goaway_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100314 .desc = "Total number of received GOAWAY frames" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100315
316 [H2_ST_CONN_PROTO_ERR] = { .name = "h2_detected_conn_protocol_errors",
317 .desc = "Total number of connection protocol errors" },
318 [H2_ST_STRM_PROTO_ERR] = { .name = "h2_detected_strm_protocol_errors",
319 .desc = "Total number of stream protocol errors" },
320 [H2_ST_RST_STREAM_RESP] = { .name = "h2_rst_stream_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100321 .desc = "Total number of RST_STREAM sent on detected error" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100322 [H2_ST_GOAWAY_RESP] = { .name = "h2_goaway_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100323 .desc = "Total number of GOAWAY sent on detected error" },
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100324
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100325 [H2_ST_OPEN_CONN] = { .name = "h2_open_connections",
326 .desc = "Count of currently open connections" },
327 [H2_ST_OPEN_STREAM] = { .name = "h2_backend_open_streams",
328 .desc = "Count of currently open streams" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100329 [H2_ST_TOTAL_CONN] = { .name = "h2_total_connections",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100330 .desc = "Total number of connections" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100331 [H2_ST_TOTAL_STREAM] = { .name = "h2_backend_total_streams",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100332 .desc = "Total number of streams" },
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100333};
334
335static struct h2_counters {
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100336 long long headers_rcvd; /* total number of HEADERS frame received */
337 long long data_rcvd; /* total number of DATA frame received */
338 long long settings_rcvd; /* total number of SETTINGS frame received */
339 long long rst_stream_rcvd; /* total number of RST_STREAM frame received */
340 long long goaway_rcvd; /* total number of GOAWAY frame received */
Amaury Denoyellea8879232020-10-27 17:16:03 +0100341
342 long long conn_proto_err; /* total number of protocol errors detected */
343 long long strm_proto_err; /* total number of protocol errors detected */
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100344 long long rst_stream_resp; /* total number of RST_STREAM frame sent on error */
345 long long goaway_resp; /* total number of GOAWAY frame sent on error */
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100346
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100347 long long open_conns; /* count of currently open connections */
348 long long open_streams; /* count of currently open streams */
349 long long total_conns; /* total number of connections */
350 long long total_streams; /* total number of streams */
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100351} h2_counters;
352
353static void h2_fill_stats(void *data, struct field *stats)
354{
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100355 struct h2_counters *counters = data;
356
357 stats[H2_ST_HEADERS_RCVD] = mkf_u64(FN_COUNTER, counters->headers_rcvd);
358 stats[H2_ST_DATA_RCVD] = mkf_u64(FN_COUNTER, counters->data_rcvd);
359 stats[H2_ST_SETTINGS_RCVD] = mkf_u64(FN_COUNTER, counters->settings_rcvd);
360 stats[H2_ST_RST_STREAM_RCVD] = mkf_u64(FN_COUNTER, counters->rst_stream_rcvd);
361 stats[H2_ST_GOAWAY_RCVD] = mkf_u64(FN_COUNTER, counters->goaway_rcvd);
Amaury Denoyellea8879232020-10-27 17:16:03 +0100362
363 stats[H2_ST_CONN_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->conn_proto_err);
364 stats[H2_ST_STRM_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->strm_proto_err);
365 stats[H2_ST_RST_STREAM_RESP] = mkf_u64(FN_COUNTER, counters->rst_stream_resp);
366 stats[H2_ST_GOAWAY_RESP] = mkf_u64(FN_COUNTER, counters->goaway_resp);
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100367
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100368 stats[H2_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
369 stats[H2_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
370 stats[H2_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
371 stats[H2_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100372}
373
374static struct stats_module h2_stats_module = {
375 .name = "h2",
376 .fill_stats = h2_fill_stats,
377 .stats = h2_stats,
378 .stats_count = H2_STATS_COUNT,
379 .counters = &h2_counters,
380 .counters_size = sizeof(h2_counters),
381 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
382 .clearable = 1,
383};
384
385INITCALL1(STG_REGISTER, stats_register_module, &h2_stats_module);
386
Willy Tarreau8ceae722018-11-26 11:58:30 +0100387/* the h2c connection pool */
388DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
389
390/* the h2s stream pool */
391DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
392
Willy Tarreaudc572362018-12-12 08:08:05 +0100393/* The default connection window size is 65535, it may only be enlarged using
394 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
395 * we'll pretend we already received the difference between the two to send
396 * an equivalent window update to enlarge it to 2G-1.
397 */
398#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
399
Willy Tarreau455d5682019-05-24 19:42:18 +0200400/* maximum amount of data we're OK with re-aligning for buffer optimizations */
401#define MAX_DATA_REALIGN 1024
402
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200403/* a few settings from the global section */
404static int h2_settings_header_table_size = 4096; /* initial value */
Glenn Strauss0012f892022-06-04 22:11:50 -0400405static int h2_settings_initial_window_size = 65536; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100406static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100407static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200408
Willy Tarreaub22b5f02022-05-10 14:57:16 +0200409/* a dummy closed endpoint */
Willy Tarreauea59b022022-05-17 17:53:22 +0200410static const struct sedesc closed_ep = {
Willy Tarreauc1054922022-05-18 07:43:52 +0200411 .sc = NULL,
Willy Tarreaub605c422022-05-17 17:04:55 +0200412 .flags = SE_FL_DETACHED,
Willy Tarreaub22b5f02022-05-10 14:57:16 +0200413};
414
Willy Tarreau2a856182017-05-16 15:20:39 +0200415/* a dmumy closed stream */
416static const struct h2s *h2_closed_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200417 .sd = (struct sedesc *)&closed_ep,
Willy Tarreau2a856182017-05-16 15:20:39 +0200418 .h2c = NULL,
419 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100420 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100421 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200422 .id = 0,
423};
424
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100425/* a dmumy closed stream returning a PROTOCOL_ERROR error */
426static const struct h2s *h2_error_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200427 .sd = (struct sedesc *)&closed_ep,
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100428 .h2c = NULL,
429 .st = H2_SS_CLOSED,
430 .errcode = H2_ERR_PROTOCOL_ERROR,
431 .flags = 0,
432 .id = 0,
433};
434
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100435/* a dmumy closed stream returning a REFUSED_STREAM error */
436static const struct h2s *h2_refused_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200437 .sd = (struct sedesc *)&closed_ep,
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100438 .h2c = NULL,
439 .st = H2_SS_CLOSED,
440 .errcode = H2_ERR_REFUSED_STREAM,
441 .flags = 0,
442 .id = 0,
443};
444
Willy Tarreau2a856182017-05-16 15:20:39 +0200445/* and a dummy idle stream for use with any unannounced stream */
446static const struct h2s *h2_idle_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200447 .sd = (struct sedesc *)&closed_ep,
Willy Tarreau2a856182017-05-16 15:20:39 +0200448 .h2c = NULL,
449 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100450 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200451 .id = 0,
452};
453
Willy Tarreau144f84a2021-03-02 16:09:26 +0100454struct task *h2_timeout_task(struct task *t, void *context, unsigned int state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200455static int h2_send(struct h2c *h2c);
456static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200457static int h2_process(struct h2c *h2c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100458/* h2_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100459struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100460static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Willy Tarreau7cfbb812023-01-26 16:02:01 +0100461static 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 +0100462static int h2_frt_transfer_data(struct h2s *h2s);
Willy Tarreau144f84a2021-03-02 16:09:26 +0100463struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state);
Willy Tarreau36c22322022-05-27 10:41:24 +0200464static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct stconn *sc, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100465static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200466
Willy Tarreau7be4ee02022-05-18 07:31:41 +0200467/* returns the stconn associated to the H2 stream */
468static forceinline struct stconn *h2s_sc(const struct h2s *h2s)
469{
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200470 return h2s->sd->sc;
Willy Tarreau7be4ee02022-05-18 07:31:41 +0200471}
472
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200473/* the H2 traces always expect that arg1, if non-null, is of type connection
474 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
475 * that arg3, if non-null, is either of type htx for tx headers, or of type
476 * buffer for everything else.
477 */
478static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
479 const struct ist where, const struct ist func,
480 const void *a1, const void *a2, const void *a3, const void *a4)
481{
482 const struct connection *conn = a1;
483 const struct h2c *h2c = conn ? conn->ctx : NULL;
484 const struct h2s *h2s = a2;
485 const struct buffer *buf = a3;
486 const struct htx *htx;
487 int pos;
488
489 if (!h2c) // nothing to add
490 return;
491
Willy Tarreau17104d42019-08-30 07:12:55 +0200492 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200493 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
494
Willy Tarreau8e6f7492021-06-16 17:47:24 +0200495 if (mask & H2_EV_H2C_NEW) // inside h2_init, otherwise it's hard to match conn & h2c
496 conn_append_debug_info(&trace_buf, conn, " : ");
497
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100498 if (h2c->errcode)
499 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
500
Willy Tarreau0f458712022-08-18 11:19:57 +0200501 if (h2c->flags & H2_CF_DEM_IN_PROGRESS && // frame processing has started, type and length are valid
Willy Tarreau73db4342019-09-25 07:28:44 +0200502 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
Willy Tarreau8520d872020-09-18 07:39:29 +0200503 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 +0200504 }
505
506 if (h2s) {
507 if (h2s->id <= 0)
508 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
509 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100510 if (h2s->id && h2s->errcode)
511 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200512 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200513 }
514
515 /* Let's dump decoded requests and responses right after parsing. They
516 * are traced at level USER with a few recognizable flags.
517 */
518 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
519 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
520 htx = htxbuf(buf); // recv req/res
521 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
522 htx = a3; // send req/res
523 else
524 htx = NULL;
525
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200526 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200527 const struct htx_blk *blk = htx_get_blk(htx, pos);
528 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
529 enum htx_blk_type type = htx_get_blk_type(blk);
530
531 if (type == HTX_BLK_REQ_SL)
532 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200533 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200534 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
535 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
536 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
537 else if (type == HTX_BLK_RES_SL)
538 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200539 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200540 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
541 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
542 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
543 }
544}
545
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200546
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100547/* Detect a pending read0 for a H2 connection. It happens if a read0 was
548 * already reported on a previous xprt->rcvbuf() AND a frame parser failed
549 * to parse pending data, confirming no more progress is possible because
550 * we're facing a truncated frame. The function returns 1 to report a read0
551 * or 0 otherwise.
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200552 */
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100553static inline int h2c_read0_pending(struct h2c *h2c)
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200554{
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100555 return !!(h2c->flags & H2_CF_END_REACHED);
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200556}
557
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200558/* returns true if the connection is allowed to expire, false otherwise. A
Willy Tarreau34395832022-03-18 14:59:54 +0100559 * connection may expire when it has no attached streams. As long as streams
560 * are attached, the application layer is responsible for timeout management,
561 * and each layer will detach when it doesn't want to wait anymore. When the
562 * last one leaves, the connection must take over timeout management.
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200563 */
564static inline int h2c_may_expire(const struct h2c *h2c)
565{
Willy Tarreau36c22322022-05-27 10:41:24 +0200566 return !h2c->nb_sc;
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200567}
568
Willy Tarreau15a47332022-03-18 15:57:34 +0100569/* update h2c timeout if needed */
570static void h2c_update_timeout(struct h2c *h2c)
571{
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200572 int is_idle_conn = 0;
573
Willy Tarreau15a47332022-03-18 15:57:34 +0100574 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
575
576 if (!h2c->task)
577 goto leave;
578
579 if (h2c_may_expire(h2c)) {
580 /* no more streams attached */
581 if (h2c->last_sid >= 0) {
582 /* GOAWAY sent, closing in progress */
583 h2c->task->expire = tick_add_ifset(now_ms, h2c->shut_timeout);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200584 is_idle_conn = 1;
Willy Tarreau15a47332022-03-18 15:57:34 +0100585 } else if (br_data(h2c->mbuf)) {
586 /* pending output data: always the regular data timeout */
587 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
Willy Tarreau6ff91e22022-04-14 11:43:35 +0200588 } else if (!(h2c->flags & H2_CF_IS_BACK) && h2c->max_id > 0 && !b_data(&h2c->dbuf)) {
Willy Tarreau15a47332022-03-18 15:57:34 +0100589 /* idle after having seen one stream => keep-alive */
Willy Tarreau86b08a32022-04-13 17:40:28 +0200590 int to;
591
592 if (tick_isset(h2c->proxy->timeout.httpka))
593 to = h2c->proxy->timeout.httpka;
594 else
595 to = h2c->proxy->timeout.httpreq;
596
597 h2c->task->expire = tick_add_ifset(h2c->idle_start, to);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200598 is_idle_conn = 1;
Willy Tarreau15a47332022-03-18 15:57:34 +0100599 } else {
600 /* before first request, or started to deserialize a
601 * new req => http-request, but only set, not refresh.
602 */
603 int exp = (h2c->flags & H2_CF_IS_BACK) ? TICK_ETERNITY : h2c->proxy->timeout.httpreq;
604 h2c->task->expire = tick_add_ifset(h2c->idle_start, exp);
605 }
606 /* if a timeout above was not set, fall back to the default one */
607 if (!tick_isset(h2c->task->expire))
608 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200609
610 if ((h2c->proxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) &&
611 is_idle_conn && tick_isset(global.close_spread_end)) {
612 /* If a soft-stop is in progress and a close-spread-time
613 * is set, we want to spread idle connection closing roughly
614 * evenly across the defined window. This should only
615 * act on idle frontend connections.
616 * If the window end is already in the past, we wake the
617 * timeout task up immediately so that it can be closed.
618 */
619 int remaining_window = tick_remain(now_ms, global.close_spread_end);
620 if (remaining_window) {
621 /* We don't need to reset the expire if it would
622 * already happen before the close window end.
623 */
624 if (tick_isset(h2c->task->expire) &&
625 tick_is_le(global.close_spread_end, h2c->task->expire)) {
626 /* Set an expire value shorter than the current value
627 * because the close spread window end comes earlier.
628 */
629 h2c->task->expire = tick_add(now_ms, statistical_prng_range(remaining_window));
630 }
631 }
632 else {
633 /* We are past the soft close window end, wake the timeout
634 * task up immediately.
635 */
636 task_wakeup(h2c->task, TASK_WOKEN_TIMER);
637 }
638 }
639
Willy Tarreau15a47332022-03-18 15:57:34 +0100640 } else {
641 h2c->task->expire = TICK_ETERNITY;
642 }
643 task_queue(h2c->task);
644 leave:
645 TRACE_LEAVE(H2_EV_H2C_WAKE);
646}
647
Olivier Houchard7a977432019-03-21 15:47:13 +0100648static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200649h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100650{
651 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
Christopher Fauletff7925d2022-10-11 19:12:40 +0200652 ((h2c->flags & H2_CF_ERROR) || /* errors close immediately */
Olivier Houchard7a977432019-03-21 15:47:13 +0100653 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
654 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200655 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Christopher Fauletff7925d2022-10-11 19:12:40 +0200656 ((h2c->flags & H2_CF_RCVD_SHUT) ||
Olivier Houchard7a977432019-03-21 15:47:13 +0100657 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
658 return 1;
659
660 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100661}
662
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200663/*****************************************************/
664/* functions below are for dynamic buffer management */
665/*****************************************************/
666
Willy Tarreau315d8072017-12-10 22:17:57 +0100667/* indicates whether or not the we may call the h2_recv() function to attempt
668 * to receive data into the buffer and/or demux pending data. The condition is
669 * a bit complex due to some API limits for now. The rules are the following :
670 * - if an error or a shutdown was detected on the connection and the buffer
671 * is empty, we must not attempt to receive
672 * - if the demux buf failed to be allocated, we must not try to receive and
673 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100674 * - if no flag indicates a blocking condition, we may attempt to receive,
675 * regardless of whether the demux buffer is full or not, so that only
676 * de demux part decides whether or not to block. This is needed because
677 * the connection API indeed prevents us from re-enabling receipt that is
678 * already enabled in a polled state, so we must always immediately stop
679 * as soon as the demux can't proceed so as never to hit an end of read
680 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100681 * - otherwise must may not attempt
682 */
683static inline int h2_recv_allowed(const struct h2c *h2c)
684{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200685 if (b_data(&h2c->dbuf) == 0 &&
Christopher Fauletff7925d2022-10-11 19:12:40 +0200686 ((h2c->flags & (H2_CF_RCVD_SHUT|H2_CF_ERROR)) || h2c->st0 >= H2_CS_ERROR))
Willy Tarreau315d8072017-12-10 22:17:57 +0100687 return 0;
688
689 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100690 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100691 return 1;
692
693 return 0;
694}
695
Willy Tarreau47b515a2018-12-21 16:09:41 +0100696/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200697static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100698{
699 if (!h2_recv_allowed(h2c))
700 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200701 if ((!consider_buffer || !b_data(&h2c->dbuf))
702 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100703 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200704 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100705}
706
707
Willy Tarreau4596fe22022-05-17 19:07:51 +0200708/* returns true if the front connection has too many stream connectors attached */
Willy Tarreau36c22322022-05-27 10:41:24 +0200709static inline int h2_frt_has_too_many_sc(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200710{
Willy Tarreau36c22322022-05-27 10:41:24 +0200711 return h2c->nb_sc > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200712}
713
Willy Tarreau44e973f2018-03-01 17:49:30 +0100714/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
715 * flags are used to figure what buffer was requested. It returns 1 if the
716 * allocation succeeds, in which case the connection is woken up, or 0 if it's
717 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200718 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100719static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200720{
721 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100722 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200723
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100724 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc(&h2c->dbuf)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200725 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200726 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200727 return 1;
728 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200729
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100730 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc(br_tail(h2c->mbuf))) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100731 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200732
733 if (h2c->flags & H2_CF_DEM_MROOM) {
734 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200735 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200736 }
Willy Tarreau14398122017-09-22 14:26:04 +0200737 return 1;
738 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100739
740 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
Willy Tarreau7be4ee02022-05-18 07:31:41 +0200741 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s_sc(h2s) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100742 b_alloc(&h2s->rxbuf)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100743 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200744 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100745 return 1;
746 }
747
Willy Tarreau14398122017-09-22 14:26:04 +0200748 return 0;
749}
750
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200751static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200752{
753 struct buffer *buf = NULL;
754
Willy Tarreau2b718102021-04-21 07:32:39 +0200755 if (likely(!LIST_INLIST(&h2c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100756 unlikely((buf = b_alloc(bptr)) == NULL)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100757 h2c->buf_wait.target = h2c;
758 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreaub4e34762021-09-30 19:02:18 +0200759 LIST_APPEND(&th_ctx->buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200760 }
761 return buf;
762}
763
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200764static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200765{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200766 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100767 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100768 offer_buffers(NULL, 1);
Willy Tarreau14398122017-09-22 14:26:04 +0200769 }
770}
771
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200772static inline void h2_release_mbuf(struct h2c *h2c)
773{
774 struct buffer *buf;
775 unsigned int count = 0;
776
777 while (b_size(buf = br_head_pick(h2c->mbuf))) {
778 b_free(buf);
779 count++;
780 }
781 if (count)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100782 offer_buffers(NULL, count);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200783}
784
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100785/* returns the number of allocatable outgoing streams for the connection taking
786 * the last_sid and the reserved ones into account.
787 */
788static inline int h2_streams_left(const struct h2c *h2c)
789{
790 int ret;
791
792 /* consider the number of outgoing streams we're allowed to create before
793 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
794 * nb_reserved is the number of streams which don't yet have an ID.
795 */
796 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
797 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
798 if (ret < 0)
799 ret = 0;
800 return ret;
801}
802
Willy Tarreau00f18a32019-01-26 12:19:01 +0100803/* returns the number of streams in use on a connection to figure if it's
Willy Tarreau36c22322022-05-27 10:41:24 +0200804 * idle or not. We check nb_sc and not nb_streams as the caller will want
Willy Tarreau00f18a32019-01-26 12:19:01 +0100805 * to know if it was the last one after a detach().
806 */
807static int h2_used_streams(struct connection *conn)
808{
809 struct h2c *h2c = conn->ctx;
810
Willy Tarreau36c22322022-05-27 10:41:24 +0200811 return h2c->nb_sc;
Willy Tarreau00f18a32019-01-26 12:19:01 +0100812}
813
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100814/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100815static int h2_avail_streams(struct connection *conn)
816{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100817 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100818 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100819 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100820
Willy Tarreau6afec462019-01-28 06:40:19 +0100821 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
822 * streams on the connection.
823 */
824 if (h2c->last_sid >= 0)
825 return 0;
826
Willy Tarreauc61966f2019-10-31 15:10:03 +0100827 if (h2c->st0 >= H2_CS_ERROR)
828 return 0;
829
Willy Tarreau86949782019-01-31 10:42:05 +0100830 /* note: may be negative if a SETTINGS frame changes the limit */
831 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100832
833 /* we must also consider the limit imposed by stream IDs */
834 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100835 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100836 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100837 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
838 ret1 = MIN(ret1, ret2);
839 }
840 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100841}
842
Willy Tarreau11e8a8c2023-01-24 19:43:11 +0100843/* inconditionally produce a trace of the header. Please do not call this one
844 * and use h2_trace_header() instead which first checks if traces are enabled.
845 */
846void _h2_trace_header(const struct ist hn, const struct ist hv,
847 uint64_t mask, const struct ist trc_loc, const char *func,
848 const struct h2c *h2c, const struct h2s *h2s)
849{
850 struct ist n_ist, v_ist;
851 const char *c_str, *s_str;
852
853 chunk_reset(&trash);
854 c_str = chunk_newstr(&trash);
855 if (h2c) {
856 chunk_appendf(&trash, "h2c=%p(%c,%s) ",
857 h2c, (h2c->flags & H2_CF_IS_BACK) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
858 }
859
860 s_str = chunk_newstr(&trash);
861 if (h2s) {
862 if (h2s->id <= 0)
863 chunk_appendf(&trash, "dsi=%d ", h2s->h2c->dsi);
864 chunk_appendf(&trash, "h2s=%p(%d,%s) ", h2s, h2s->id, h2s_st_to_str(h2s->st));
865 }
866 else if (h2c)
867 chunk_appendf(&trash, "dsi=%d ", h2c->dsi);
868
869 n_ist = ist2(chunk_newstr(&trash), 0);
870 istscpy(&n_ist, hn, 256);
871 trash.data += n_ist.len;
872 if (n_ist.len != hn.len)
873 chunk_appendf(&trash, " (... +%ld)", (long)(hn.len - n_ist.len));
874
875 v_ist = ist2(chunk_newstr(&trash), 0);
876 istscpy(&v_ist, hv, 1024);
877 trash.data += v_ist.len;
878 if (v_ist.len != hv.len)
879 chunk_appendf(&trash, " (... +%ld)", (long)(hv.len - v_ist.len));
880
881 TRACE_PRINTF_LOC(TRACE_LEVEL_USER, mask, trc_loc, func,
882 h2c->conn, 0, 0, 0,
883 "%s%s%s %s: %s", c_str, s_str,
884 (mask & H2_EV_TX_HDR) ? "sndh" : "rcvh",
885 n_ist.ptr, v_ist.ptr);
886}
887
888/* produce a trace of the header after checking that tracing is enabled */
889static inline void h2_trace_header(const struct ist hn, const struct ist hv,
890 uint64_t mask, const struct ist trc_loc, const char *func,
891 const struct h2c *h2c, const struct h2s *h2s)
892{
893 if ((TRACE_SOURCE)->verbosity >= H2_VERB_ADVANCED &&
894 TRACE_ENABLED(TRACE_LEVEL_USER, mask, h2c ? h2c->conn : 0, h2s, 0, 0))
895 _h2_trace_header(hn, hv, mask, trc_loc, func, h2c, h2s);
896}
897
898/* hpack-encode header name <hn> and value <hv>, possibly emitting a trace if
899 * currently enabled. This is done on behalf of function <func> at <trc_loc>
900 * passed as ist(TRC_LOC), h2c <h2c>, and h2s <h2s>, all of which may be NULL.
901 * The trace is only emitted if the header is emitted (in which case non-zero
902 * is returned). The trash is modified. In the traces, the header's name will
903 * be truncated to 256 chars and the header's value to 1024 chars.
904 */
905static inline int h2_encode_header(struct buffer *buf, const struct ist hn, const struct ist hv,
906 uint64_t mask, const struct ist trc_loc, const char *func,
907 const struct h2c *h2c, const struct h2s *h2s)
908{
909 int ret;
910
911 ret = hpack_encode_header(buf, hn, hv);
912 if (ret)
913 h2_trace_header(hn, hv, mask, trc_loc, func, h2c, h2s);
914
915 return ret;
916}
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200917
Willy Tarreau62f52692017-10-08 23:01:42 +0200918/*****************************************************************/
919/* functions below are dedicated to the mux setup and management */
920/*****************************************************************/
921
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200922/* Initialize the mux once it's attached. For outgoing connections, the context
923 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200924 * connections from the fact that the context is still NULL (even during mux
925 * upgrades). <input> is always used as Input buffer and may contain data. It is
926 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200927 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200928static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
929 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200930{
931 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100932 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200933 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200934
Christopher Fauletf81ef032019-10-04 15:19:43 +0200935 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200936
Willy Tarreaubafbe012017-11-24 17:34:44 +0100937 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200938 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200939 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200940
Christopher Faulete9b70722019-04-08 10:46:02 +0200941 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200942 h2c->flags = H2_CF_IS_BACK;
943 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
944 if (tick_isset(prx->timeout.serverfin))
945 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100946
947 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
948 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200949 } else {
950 h2c->flags = H2_CF_NONE;
951 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
952 if (tick_isset(prx->timeout.clientfin))
953 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100954
955 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
956 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200957 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100958
Willy Tarreau0b37d652018-10-03 10:33:02 +0200959 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100960 h2c->task = NULL;
Willy Tarreau15a47332022-03-18 15:57:34 +0100961 h2c->idle_start = now_ms;
Willy Tarreau3f133572017-10-31 19:21:06 +0100962 if (tick_isset(h2c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +0200963 t = task_new_here();
Willy Tarreau3f133572017-10-31 19:21:06 +0100964 if (!t)
965 goto fail;
966
967 h2c->task = t;
968 t->process = h2_timeout_task;
969 t->context = h2c;
970 t->expire = tick_add(now_ms, h2c->timeout);
971 }
Willy Tarreauea392822017-10-31 10:02:25 +0100972
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200973 h2c->wait_event.tasklet = tasklet_new();
974 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200975 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200976 h2c->wait_event.tasklet->process = h2_io_cb;
977 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100978 h2c->wait_event.events = 0;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200979 if (!conn_is_back(conn)) {
980 /* Connection might already be in the stopping_list if subject
981 * to h1->h2 upgrade.
982 */
983 if (!LIST_INLIST(&conn->stopping_list)) {
984 LIST_APPEND(&mux_stopping_data[tid].list,
985 &conn->stopping_list);
986 }
987 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200988
Willy Tarreau2bdcc702020-05-19 11:31:11 +0200989 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +0200990 if (!h2c->ddht)
991 goto fail;
992
993 /* Initialise the context. */
994 h2c->st0 = H2_CS_PREFACE;
995 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100996 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200997 h2c->max_id = -1;
998 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100999 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001000 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +01001001 h2c->nb_streams = 0;
Willy Tarreau36c22322022-05-27 10:41:24 +02001002 h2c->nb_sc = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001003 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001004 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001005
Christopher Faulet51f73eb2019-04-08 11:22:47 +02001006 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001007 h2c->dsi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001008
Willy Tarreau32218eb2017-09-22 08:07:25 +02001009 h2c->last_sid = -1;
1010
Willy Tarreau51330962019-05-26 09:38:07 +02001011 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +02001012 h2c->miw = 65535; /* mux initial window size */
1013 h2c->mws = 65535; /* mux window size */
1014 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +02001015 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001016 LIST_INIT(&h2c->send_list);
1017 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02001018 LIST_INIT(&h2c->blocked_list);
Willy Tarreau90f366b2021-02-20 11:49:49 +01001019 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001020
Christopher Fauletf81ef032019-10-04 15:19:43 +02001021 conn->ctx = h2c;
1022
Willy Tarreau8e6f7492021-06-16 17:47:24 +02001023 TRACE_USER("new H2 connection", H2_EV_H2C_NEW, conn);
1024
Willy Tarreau3f133572017-10-31 19:21:06 +01001025 if (t)
1026 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +01001027
Willy Tarreau01b44822018-10-03 14:26:37 +02001028 if (h2c->flags & H2_CF_IS_BACK) {
1029 /* FIXME: this is temporary, for outgoing connections we need
1030 * to immediately allocate a stream until the code is modified
Willy Tarreau36c22322022-05-27 10:41:24 +02001031 * so that the caller calls ->attach(). For now the outgoing sc
Christopher Fauletf81ef032019-10-04 15:19:43 +02001032 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +02001033 */
1034 struct h2s *h2s;
1035
Christopher Fauletf81ef032019-10-04 15:19:43 +02001036 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +02001037 if (!h2s)
1038 goto fail_stream;
1039 }
1040
Willy Tarreau4781b152021-04-06 13:53:36 +02001041 HA_ATOMIC_INC(&h2c->px_counters->open_conns);
1042 HA_ATOMIC_INC(&h2c->px_counters->total_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001043
Willy Tarreau0f383582018-10-03 14:22:21 +02001044 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02001045 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001046 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001047 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +02001048 fail_stream:
1049 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +02001050 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001051 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001052 if (h2c->wait_event.tasklet)
1053 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001054 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +02001055 fail_no_h2c:
Willy Tarreau3b990fe2022-01-12 17:24:26 +01001056 if (!conn_is_back(conn))
1057 LIST_DEL_INIT(&conn->stopping_list);
Christopher Fauletf81ef032019-10-04 15:19:43 +02001058 conn->ctx = conn_ctx; /* restore saved ctx */
1059 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001060 return -1;
1061}
1062
Willy Tarreau751f2d02018-10-05 09:35:00 +02001063/* returns the next allocatable outgoing stream ID for the H2 connection, or
1064 * -1 if no more is allocatable.
1065 */
1066static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1067{
1068 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001069
1070 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001071 id = -1;
1072 return id;
1073}
1074
Willy Tarreau2373acc2017-10-12 17:35:14 +02001075/* returns the stream associated with id <id> or NULL if not found */
1076static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1077{
1078 struct eb32_node *node;
1079
Willy Tarreau751f2d02018-10-05 09:35:00 +02001080 if (id == 0)
1081 return (struct h2s *)h2_closed_stream;
1082
Willy Tarreau2a856182017-05-16 15:20:39 +02001083 if (id > h2c->max_id)
1084 return (struct h2s *)h2_idle_stream;
1085
Willy Tarreau2373acc2017-10-12 17:35:14 +02001086 node = eb32_lookup(&h2c->streams_by_id, id);
1087 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001088 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001089
1090 return container_of(node, struct h2s, by_id);
1091}
1092
Christopher Faulet73c12072019-04-08 11:23:22 +02001093/* release function. This one should be called to free all resources allocated
1094 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001095 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001096static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001097{
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001098 struct connection *conn = h2c->conn;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001099
Willy Tarreau7838a792019-08-12 18:42:03 +02001100 TRACE_ENTER(H2_EV_H2C_END);
1101
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001102 hpack_dht_free(h2c->ddht);
Christopher Faulet61840e72019-04-15 09:33:32 +02001103
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001104 if (LIST_INLIST(&h2c->buf_wait.list))
1105 LIST_DEL_INIT(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001106
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001107 h2_release_buf(h2c, &h2c->dbuf);
1108 h2_release_mbuf(h2c);
Willy Tarreau14398122017-09-22 14:26:04 +02001109
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001110 if (h2c->task) {
1111 h2c->task->context = NULL;
1112 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
1113 h2c->task = NULL;
1114 }
1115 if (h2c->wait_event.tasklet)
1116 tasklet_free(h2c->wait_event.tasklet);
1117 if (conn && h2c->wait_event.events != 0)
1118 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
1119 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001120
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001121 HA_ATOMIC_DEC(&h2c->px_counters->open_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001122
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001123 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001124
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001125 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001126 if (!conn_is_back(conn))
1127 LIST_DEL_INIT(&conn->stopping_list);
1128
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001129 conn->mux = NULL;
1130 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001131 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001132
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001133 conn_stop_tracking(conn);
Willy Tarreau0b222472021-10-21 22:24:31 +02001134
1135 /* there might be a GOAWAY frame still pending in the TCP
1136 * stack, and if the peer continues to send (i.e. window
1137 * updates etc), this can result in losing the GOAWAY. For
1138 * this reason we try to drain anything received in between.
1139 */
1140 conn->flags |= CO_FL_WANT_DRAIN;
1141
1142 conn_xprt_shutw(conn);
1143 conn_xprt_close(conn);
1144 conn_sock_shutw(conn, !conn_is_back(conn));
1145 conn_ctrl_close(conn);
1146
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001147 if (conn->destroy_cb)
1148 conn->destroy_cb(conn);
1149 conn_free(conn);
1150 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001151
1152 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001153}
1154
1155
Willy Tarreau71681172017-10-23 14:39:06 +02001156/******************************************************/
1157/* functions below are for the H2 protocol processing */
1158/******************************************************/
1159
1160/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001161static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001162{
1163 return h2s ? h2s->id : 0;
1164}
1165
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001166/* returns the sum of the stream's own window size and the mux's initial
1167 * window, which together form the stream's effective window size.
1168 */
1169static inline int h2s_mws(const struct h2s *h2s)
1170{
1171 return h2s->sws + h2s->h2c->miw;
1172}
1173
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001174/* marks an error on the connection. Before settings are sent, we must not send
1175 * a GOAWAY frame, and the error state will prevent h2c_send_goaway_error()
1176 * from verifying this so we set H2_CF_GOAWAY_FAILED to make sure it will not
1177 * even try.
1178 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001179static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001180{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001181 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001182 h2c->errcode = err;
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001183 if (h2c->st0 < H2_CS_SETTINGS1)
1184 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau741d6df2017-10-17 08:00:59 +02001185 h2c->st0 = H2_CS_ERROR;
1186}
1187
Willy Tarreau175cebb2019-01-24 10:02:24 +01001188/* marks an error on the stream. It may also update an already closed stream
1189 * (e.g. to report an error after an RST was received).
1190 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001191static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001192{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001193 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001194 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001195 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001196 if (h2s->st < H2_SS_ERROR)
1197 h2s->st = H2_SS_ERROR;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001198 se_fl_set_error(h2s->sd);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001199 }
1200}
1201
Willy Tarreau7e094452018-12-19 18:08:52 +01001202/* attempt to notify the data layer of recv availability */
1203static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1204{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001205 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001206 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001207 tasklet_wakeup(h2s->subs->tasklet);
1208 h2s->subs->events &= ~SUB_RETRY_RECV;
1209 if (!h2s->subs->events)
1210 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001211 }
1212}
1213
1214/* attempt to notify the data layer of send availability */
1215static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1216{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001217 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001218 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001219 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001220 tasklet_wakeup(h2s->subs->tasklet);
1221 h2s->subs->events &= ~SUB_RETRY_SEND;
1222 if (!h2s->subs->events)
1223 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001224 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001225 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1226 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1227 tasklet_wakeup(h2s->shut_tl);
1228 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001229}
1230
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001231/* alerts the data layer, trying to wake it up by all means, following
1232 * this sequence :
1233 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1234 * - if its subscribed to send, then it's woken up for send
1235 * - if it was subscribed to neither, its ->wake() callback is called
1236 * It is safe to call this function with a closed stream which doesn't have a
Willy Tarreau4596fe22022-05-17 19:07:51 +02001237 * stream connector anymore.
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001238 */
1239static void __maybe_unused h2s_alert(struct h2s *h2s)
1240{
Willy Tarreau7838a792019-08-12 18:42:03 +02001241 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1242
Willy Tarreauf96508a2020-01-10 11:12:48 +01001243 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001244 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001245 h2s_notify_recv(h2s);
1246 h2s_notify_send(h2s);
1247 }
Willy Tarreau2f2318d2022-05-18 10:17:16 +02001248 else if (h2s_sc(h2s) && h2s_sc(h2s)->app_ops->wake != NULL) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001249 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau2f2318d2022-05-18 10:17:16 +02001250 h2s_sc(h2s)->app_ops->wake(h2s_sc(h2s));
Willy Tarreau7838a792019-08-12 18:42:03 +02001251 }
1252
1253 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001254}
1255
Willy Tarreaue4820742017-07-27 13:37:23 +02001256/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001257static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001258{
1259 uint8_t *out = frame;
1260
1261 *out = len >> 16;
1262 write_n16(out + 1, len);
1263}
1264
Willy Tarreau54c15062017-10-10 17:10:03 +02001265/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1266 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1267 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001268 * available in the buffer's input prior to calling this function. The buffer
1269 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001270 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001271static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001272 const struct buffer *b, int o)
1273{
Willy Tarreau591d4452018-06-15 17:21:00 +02001274 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 +02001275}
1276
Willy Tarreau1f094672017-11-20 21:27:45 +01001277static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001278{
Willy Tarreau591d4452018-06-15 17:21:00 +02001279 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001280}
1281
Willy Tarreau1f094672017-11-20 21:27:45 +01001282static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001283{
Willy Tarreau591d4452018-06-15 17:21:00 +02001284 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001285}
1286
Willy Tarreau1f094672017-11-20 21:27:45 +01001287static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001288{
Willy Tarreau591d4452018-06-15 17:21:00 +02001289 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001290}
1291
1292
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001293/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1294 * The algorithm is not obvious. It turns out that H2 headers are neither
1295 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1296 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001297 *
1298 * b0 b1 b2 b3 b4 b5..b8
1299 * +----------+---------+--------+----+----+----------------------+
1300 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1301 * +----------+---------+--------+----+----+----------------------+
1302 *
1303 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1304 * we get the sid properly aligned and ordered, and 16 bits of len properly
1305 * ordered as well. The type and flags can be extracted using bit shifts from
1306 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001307 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1308 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001309 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001310static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001311{
1312 uint64_t w;
1313
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001314 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001315 return 0;
1316
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001317 w = h2_get_n64(b, o + 1);
1318 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001319 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1320 h->ff = w >> 32;
1321 h->ft = w >> 40;
1322 h->len += w >> 48;
1323 return 1;
1324}
1325
1326/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1327 * h2_peek_frame_hdr() above.
1328 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001329static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001330{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001331 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001332}
1333
1334/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001335static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001336{
1337 int ret;
1338
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001339 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001340 if (ret > 0)
1341 h2_skip_frame_hdr(b);
1342 return ret;
1343}
1344
Willy Tarreaucb985a42019-10-07 16:56:34 +02001345
1346/* try to fragment the headers frame present at the beginning of buffer <b>,
1347 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1348 * success. Typical causes of failure include a buffer not large enough to
1349 * add extra frame headers. The existing frame size is read in the current
1350 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1351 * and its length will be adjusted. The stream ID for continuation frames will
1352 * be copied from the initial frame's.
1353 */
1354static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1355{
1356 size_t remain = b->data - 9;
1357 int extra_frames = (remain - 1) / mfs;
1358 size_t fsize;
1359 char *fptr;
1360 int frame;
1361
1362 if (b->data <= mfs + 9)
1363 return 1;
1364
1365 /* Too large a frame, we need to fragment it using CONTINUATION
1366 * frames. We start from the end and move tails as needed.
1367 */
1368 if (b->data + extra_frames * 9 > b->size)
1369 return 0;
1370
1371 for (frame = extra_frames; frame; frame--) {
1372 fsize = ((remain - 1) % mfs) + 1;
1373 remain -= fsize;
1374
1375 /* move data */
1376 fptr = b->area + 9 + remain + (frame - 1) * 9;
1377 memmove(fptr + 9, b->area + 9 + remain, fsize);
1378 b->data += 9;
1379
1380 /* write new frame header */
1381 h2_set_frame_size(fptr, fsize);
1382 fptr[3] = H2_FT_CONTINUATION;
1383 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1384 write_n32(fptr + 5, read_n32(b->area + 5));
1385 }
1386
1387 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1388 h2_set_frame_size(b->area, remain);
1389 return 1;
1390}
1391
1392
Willy Tarreau00dd0782018-03-01 16:31:34 +01001393/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1394 * its connection if the stream was not yet closed. Please use this exclusively
1395 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001396 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001397static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001398{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001399 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001400 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001401 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001402 if (!h2s->id)
1403 h2s->h2c->nb_reserved--;
Willy Tarreau7be4ee02022-05-18 07:31:41 +02001404 if (h2s_sc(h2s)) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001405 if (!se_fl_test(h2s->sd, SE_FL_EOS) && !b_data(&h2s->rxbuf))
Willy Tarreaua27db382019-03-25 18:13:16 +01001406 h2s_notify_recv(h2s);
1407 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001408 HA_ATOMIC_DEC(&h2s->h2c->px_counters->open_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001409
Willy Tarreau7838a792019-08-12 18:42:03 +02001410 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001411 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001412 h2s->st = H2_SS_CLOSED;
1413}
1414
Willy Tarreau71049cc2018-03-28 13:56:39 +02001415/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001416/* h2s_destroy should only ever be called by the thread that owns the stream,
1417 * that means that a tasklet should be used if we want to destroy the h2s
1418 * from another thread
1419 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001420static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001421{
Willy Tarreau7838a792019-08-12 18:42:03 +02001422 struct connection *conn = h2s->h2c->conn;
1423
1424 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1425
Willy Tarreau0a10de62018-03-01 16:27:53 +01001426 h2s_close(h2s);
1427 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001428 if (b_size(&h2s->rxbuf)) {
1429 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01001430 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02001431 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001432
1433 if (h2s->subs)
1434 h2s->subs->events = 0;
1435
Joseph Herlantd77575d2018-11-25 10:54:45 -08001436 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001437 * reference left would be in the h2c send_list/fctl_list, and if
1438 * we're in it, we're getting out anyway
1439 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001440 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001441
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001442 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001443 tasklet_free(h2s->shut_tl);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001444 BUG_ON(h2s->sd && !se_fl_test(h2s->sd, SE_FL_ORPHAN));
1445 sedesc_free(h2s->sd);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001446 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001447
1448 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001449}
1450
Willy Tarreaua8e49542018-10-03 18:53:55 +02001451/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1452 * stream tree. In case of error, nothing is added and NULL is returned. The
1453 * causes of errors can be any failed memory allocation. The caller is
1454 * responsible for checking if the connection may support an extra stream
1455 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001456 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001457static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001458{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001459 struct h2s *h2s;
1460
Willy Tarreau7838a792019-08-12 18:42:03 +02001461 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1462
Willy Tarreaubafbe012017-11-24 17:34:44 +01001463 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001464 if (!h2s)
1465 goto out;
1466
Willy Tarreau5723f292020-01-10 15:16:57 +01001467 h2s->shut_tl = tasklet_new();
1468 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001469 pool_free(pool_head_h2s, h2s);
1470 goto out;
1471 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001472 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001473 h2s->shut_tl->process = h2_deferred_shut;
1474 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001475 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001476 h2s->h2c = h2c;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001477 h2s->sd = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001478 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001479 h2s->flags = H2_SF_NONE;
1480 h2s->errcode = H2_ERR_NO_ERROR;
1481 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001482 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001483 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001484 h2s->rxbuf = BUF_NULL;
Amaury Denoyelle74162742020-12-11 17:53:05 +01001485 memset(h2s->upgrade_protocol, 0, sizeof(h2s->upgrade_protocol));
Willy Tarreau751f2d02018-10-05 09:35:00 +02001486
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001487 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001488 if (id > 0)
1489 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001490 else
1491 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001492
1493 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001494 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001495 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001496
Willy Tarreau4781b152021-04-06 13:53:36 +02001497 HA_ATOMIC_INC(&h2c->px_counters->open_streams);
1498 HA_ATOMIC_INC(&h2c->px_counters->total_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001499
Willy Tarreau7838a792019-08-12 18:42:03 +02001500 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001501 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001502 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001503 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001504 return NULL;
1505}
1506
1507/* creates a new stream <id> on the h2c connection and returns it, or NULL in
Christopher Faulet7d013e72020-12-15 16:56:50 +01001508 * case of memory allocation error. <input> is used as input buffer for the new
1509 * stream. On success, it is transferred to the stream and the mux is no longer
1510 * responsible of it. On error, <input> is unchanged, thus the mux must still
1511 * take care of it.
Willy Tarreaua8e49542018-10-03 18:53:55 +02001512 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001513static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id, struct buffer *input, uint32_t flags)
Willy Tarreaua8e49542018-10-03 18:53:55 +02001514{
1515 struct session *sess = h2c->conn->owner;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001516 struct h2s *h2s;
1517
Willy Tarreau7838a792019-08-12 18:42:03 +02001518 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1519
Willy Tarreaue872f752022-05-12 09:24:41 +02001520 if (h2c->nb_streams >= h2_settings_max_concurrent_streams) {
1521 TRACE_ERROR("HEADERS frame causing MAX_CONCURRENT_STREAMS to be exceeded", H2_EV_H2S_NEW|H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001522 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001523 }
Willy Tarreaua8e49542018-10-03 18:53:55 +02001524
1525 h2s = h2s_new(h2c, id);
1526 if (!h2s)
Willy Tarreaue872f752022-05-12 09:24:41 +02001527 goto out_alloc;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001528
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001529 h2s->sd = sedesc_new();
1530 if (!h2s->sd)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001531 goto out_close;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001532 h2s->sd->se = h2s;
1533 h2s->sd->conn = h2c->conn;
1534 se_fl_set(h2s->sd, SE_FL_T_MUX | SE_FL_ORPHAN | SE_FL_NOT_FIRST);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001535
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001536 /* FIXME wrong analogy between ext-connect and websocket, this need to
1537 * be refine.
1538 */
1539 if (flags & H2_SF_EXT_CONNECT_RCVD)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001540 se_fl_set(h2s->sd, SE_FL_WEBSOCKET);
Christopher Fauletb669d682022-03-22 18:37:19 +01001541
Willy Tarreaud0de6772022-02-04 09:05:37 +01001542 /* The stream will record the request's accept date (which is either the
1543 * end of the connection's or the date immediately after the previous
1544 * request) and the idle time, which is the delay since the previous
1545 * request. We can set the value now, it will be copied by stream_new().
1546 */
1547 sess->t_idle = tv_ms_elapsed(&sess->tv_accept, &now) - sess->t_handshake;
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001548
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001549 if (!sc_new_from_endp(h2s->sd, sess, input))
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001550 goto out_close;
Willy Tarreaucd6bb1a2022-05-10 15:00:03 +02001551
Willy Tarreau36c22322022-05-27 10:41:24 +02001552 h2c->nb_sc++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001553
Willy Tarreau590a0512018-09-05 11:56:48 +02001554 /* We want the accept date presented to the next stream to be the one
1555 * we have now, the handshake time to be null (since the next stream
1556 * is not delayed by a handshake), and the idle time to count since
1557 * right now.
1558 */
1559 sess->accept_date = date;
1560 sess->tv_accept = now;
1561 sess->t_handshake = 0;
Willy Tarreaud0de6772022-02-04 09:05:37 +01001562 sess->t_idle = 0;
Willy Tarreau590a0512018-09-05 11:56:48 +02001563
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001564 /* OK done, the stream lives its own life now */
Willy Tarreau36c22322022-05-27 10:41:24 +02001565 if (h2_frt_has_too_many_sc(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001566 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001567 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001568 return h2s;
1569
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001570 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001571 h2s_destroy(h2s);
Willy Tarreaue872f752022-05-12 09:24:41 +02001572 out_alloc:
1573 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 +02001574 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001575 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001576 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001577 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001578}
1579
Willy Tarreau36c22322022-05-27 10:41:24 +02001580/* allocates a new stream associated to stream connector <sc> on the h2c
Willy Tarreau4596fe22022-05-17 19:07:51 +02001581 * connection and returns it, or NULL in case of memory allocation error or if
1582 * the highest possible stream ID was reached.
Willy Tarreau751f2d02018-10-05 09:35:00 +02001583 */
Willy Tarreau36c22322022-05-27 10:41:24 +02001584static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct stconn *sc, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001585{
1586 struct h2s *h2s = NULL;
1587
Willy Tarreau7838a792019-08-12 18:42:03 +02001588 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1589
Willy Tarreaue872f752022-05-12 09:24:41 +02001590 if (h2c->nb_streams >= h2c->streams_limit) {
1591 TRACE_ERROR("Aborting stream since negotiated limit is too low", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001592 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001593 }
Willy Tarreau751f2d02018-10-05 09:35:00 +02001594
Willy Tarreaue872f752022-05-12 09:24:41 +02001595 if (h2_streams_left(h2c) < 1) {
1596 TRACE_ERROR("Aborting stream since no more streams left", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreaua80dca82019-01-24 17:08:28 +01001597 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001598 }
Willy Tarreaua80dca82019-01-24 17:08:28 +01001599
Willy Tarreau751f2d02018-10-05 09:35:00 +02001600 /* Defer choosing the ID until we send the first message to create the stream */
1601 h2s = h2s_new(h2c, 0);
Willy Tarreaue872f752022-05-12 09:24:41 +02001602 if (!h2s) {
1603 TRACE_ERROR("Failed to allocate a new stream", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001604 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001605 }
Willy Tarreau751f2d02018-10-05 09:35:00 +02001606
Willy Tarreau36c22322022-05-27 10:41:24 +02001607 if (sc_attach_mux(sc, h2s, h2c->conn) < 0) {
Willy Tarreaue872f752022-05-12 09:24:41 +02001608 TRACE_ERROR("Failed to allocate a new stream", H2_EV_H2S_NEW, h2c->conn);
Christopher Faulet070b91b2022-03-31 19:27:18 +02001609 h2s_destroy(h2s);
1610 h2s = NULL;
1611 goto out;
1612 }
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001613 h2s->sd = sc->sedesc;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001614 h2s->sess = sess;
Willy Tarreau36c22322022-05-27 10:41:24 +02001615 h2c->nb_sc++;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001616
Willy Tarreau751f2d02018-10-05 09:35:00 +02001617 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001618 if (likely(h2s))
1619 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1620 else
1621 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001622 return h2s;
1623}
1624
Willy Tarreaube5b7152017-09-25 16:25:39 +02001625/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1626 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1627 * the various settings codes.
1628 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001629static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001630{
1631 struct buffer *res;
1632 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001633 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001634 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001635 int ret = 0;
1636
1637 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001638
Willy Tarreaube5b7152017-09-25 16:25:39 +02001639 chunk_init(&buf, buf_data, sizeof(buf_data));
1640 chunk_memcpy(&buf,
1641 "\x00\x00\x00" /* length : 0 for now */
1642 "\x04\x00" /* type : 4 (settings), flags : 0 */
1643 "\x00\x00\x00\x00", /* stream ID : 0 */
1644 9);
1645
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001646 if (h2c->flags & H2_CF_IS_BACK) {
1647 /* send settings_enable_push=0 */
1648 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1649 }
1650
Amaury Denoyellebefeae82021-07-09 17:14:30 +02001651 /* rfc 8441 #3 SETTINGS_ENABLE_CONNECT_PROTOCOL=1,
1652 * sent automatically unless disabled in the global config */
1653 if (!(global.tune.options & GTUNE_DISABLE_H2_WEBSOCKET))
1654 chunk_memcat(&buf, "\x00\x08\x00\x00\x00\x01", 6);
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01001655
Willy Tarreaube5b7152017-09-25 16:25:39 +02001656 if (h2_settings_header_table_size != 4096) {
1657 char str[6] = "\x00\x01"; /* header_table_size */
1658
1659 write_n32(str + 2, h2_settings_header_table_size);
1660 chunk_memcat(&buf, str, 6);
1661 }
1662
1663 if (h2_settings_initial_window_size != 65535) {
1664 char str[6] = "\x00\x04"; /* initial_window_size */
1665
1666 write_n32(str + 2, h2_settings_initial_window_size);
1667 chunk_memcat(&buf, str, 6);
1668 }
1669
1670 if (h2_settings_max_concurrent_streams != 0) {
1671 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1672
1673 /* Note: 0 means "unlimited" for haproxy's config but not for
1674 * the protocol, so never send this value!
1675 */
1676 write_n32(str + 2, h2_settings_max_concurrent_streams);
1677 chunk_memcat(&buf, str, 6);
1678 }
1679
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001680 mfs = h2_settings_max_frame_size;
1681 if (mfs > global.tune.bufsize)
1682 mfs = global.tune.bufsize;
1683
1684 if (!mfs)
1685 mfs = global.tune.bufsize;
1686
1687 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001688 char str[6] = "\x00\x05"; /* max_frame_size */
1689
1690 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1691 * match bufsize - rewrite size, but at the moment it seems
1692 * that clients don't take care of it.
1693 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001694 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001695 chunk_memcat(&buf, str, 6);
1696 }
1697
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001698 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001699
1700 res = br_tail(h2c->mbuf);
1701 retry:
1702 if (!h2_get_buf(h2c, res)) {
1703 h2c->flags |= H2_CF_MUX_MALLOC;
1704 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001705 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001706 }
1707
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001708 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001709 if (unlikely(ret <= 0)) {
1710 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001711 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1712 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001713 h2c->flags |= H2_CF_MUX_MFULL;
1714 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001715 }
1716 else {
1717 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001718 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001719 }
1720 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001721 out:
1722 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001723 return ret;
1724}
1725
Willy Tarreau52eed752017-09-22 15:05:09 +02001726/* Try to receive a connection preface, then upon success try to send our
1727 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1728 * missing data. It may return an error in h2c.
1729 */
1730static int h2c_frt_recv_preface(struct h2c *h2c)
1731{
1732 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001733 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001734
Willy Tarreau7838a792019-08-12 18:42:03 +02001735 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1736
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001737 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001738
1739 if (unlikely(ret1 <= 0)) {
Christopher Fauletb5f7b522021-07-26 12:06:53 +02001740 if (!ret1)
1741 h2c->flags |= H2_CF_DEM_SHORT_READ;
Christopher Fauletff7925d2022-10-11 19:12:40 +02001742 if (ret1 < 0 || (h2c->flags & H2_CF_RCVD_SHUT)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001743 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 +02001744 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauee4684f2021-06-17 08:08:48 +02001745 if (b_data(&h2c->dbuf) ||
1746 !(((const struct session *)h2c->conn->owner)->fe->options & PR_O_IGNORE_PRB))
1747 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001748 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001749 ret2 = 0;
1750 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001751 }
1752
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001753 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001754 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001755 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001756 out:
1757 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001758 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001759}
1760
Willy Tarreau01b44822018-10-03 14:26:37 +02001761/* Try to send a connection preface, then upon success try to send our
1762 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1763 * missing data. It may return an error in h2c.
1764 */
1765static int h2c_bck_send_preface(struct h2c *h2c)
1766{
1767 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001768 int ret = 0;
1769
1770 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001771
Willy Tarreaubcc45952019-05-26 10:05:50 +02001772 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001773 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001774 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001775 h2c->flags |= H2_CF_MUX_MALLOC;
1776 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001777 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001778 }
1779
1780 if (!b_data(res)) {
1781 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001782 ret = b_istput(res, ist(H2_CONN_PREFACE));
1783 if (unlikely(ret <= 0)) {
1784 if (!ret) {
1785 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1786 goto retry;
1787 h2c->flags |= H2_CF_MUX_MFULL;
1788 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001789 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001790 }
1791 else {
1792 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001793 ret = 0;
1794 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001795 }
1796 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001797 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001798 ret = h2c_send_settings(h2c);
1799 out:
1800 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1801 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001802}
1803
Willy Tarreau081d4722017-05-16 21:51:05 +02001804/* try to send a GOAWAY frame on the connection to report an error or a graceful
1805 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1806 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1807 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1808 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1809 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1810 * on unrecoverable failure. It will not attempt to send one again in this last
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001811 * case, nor will it send one if settings were not sent (e.g. still waiting for
1812 * a preface) so that it is safe to use h2c_error() to report such errors.
Willy Tarreau081d4722017-05-16 21:51:05 +02001813 */
1814static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1815{
1816 struct buffer *res;
1817 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001818 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001819
Willy Tarreau7838a792019-08-12 18:42:03 +02001820 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1821
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001822 if ((h2c->flags & H2_CF_GOAWAY_FAILED) || h2c->st0 < H2_CS_SETTINGS1) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001823 ret = 1; // claim that it worked
1824 goto out;
1825 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001826
Willy Tarreau9c218e72019-05-26 10:08:28 +02001827 /* len: 8, type: 7, flags: none, sid: 0 */
1828 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1829
1830 if (h2c->last_sid < 0)
1831 h2c->last_sid = h2c->max_id;
1832
1833 write_n32(str + 9, h2c->last_sid);
1834 write_n32(str + 13, h2c->errcode);
1835
Willy Tarreaubcc45952019-05-26 10:05:50 +02001836 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001837 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001838 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001839 h2c->flags |= H2_CF_MUX_MALLOC;
1840 if (h2s)
1841 h2s->flags |= H2_SF_BLK_MROOM;
1842 else
1843 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001844 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001845 }
1846
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001847 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001848 if (unlikely(ret <= 0)) {
1849 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001850 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1851 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001852 h2c->flags |= H2_CF_MUX_MFULL;
1853 if (h2s)
1854 h2s->flags |= H2_SF_BLK_MROOM;
1855 else
1856 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001857 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001858 }
1859 else {
1860 /* we cannot report this error using GOAWAY, so we mark
1861 * it and claim a success.
1862 */
1863 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1864 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001865 ret = 1;
1866 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001867 }
1868 }
1869 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001870
1871 /* some codes are not for real errors, just attempts to close cleanly */
1872 switch (h2c->errcode) {
1873 case H2_ERR_NO_ERROR:
1874 case H2_ERR_ENHANCE_YOUR_CALM:
1875 case H2_ERR_REFUSED_STREAM:
1876 case H2_ERR_CANCEL:
1877 break;
1878 default:
Willy Tarreau4781b152021-04-06 13:53:36 +02001879 HA_ATOMIC_INC(&h2c->px_counters->goaway_resp);
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001880 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001881 out:
1882 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001883 return ret;
1884}
1885
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001886/* Try to send an RST_STREAM frame on the connection for the indicated stream
1887 * during mux operations. This stream must be valid and cannot be closed
1888 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1889 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1890 * not yet.
1891 *
1892 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1893 * to write the message, it subscribes the stream to future notifications.
1894 */
1895static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1896{
1897 struct buffer *res;
1898 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001899 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001900
Willy Tarreau7838a792019-08-12 18:42:03 +02001901 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1902
1903 if (!h2s || h2s->st == H2_SS_CLOSED) {
1904 ret = 1;
1905 goto out;
1906 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001907
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001908 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1909 * RST_STREAM in response to a RST_STREAM frame.
1910 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001911 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001912 ret = 1;
1913 goto ignore;
1914 }
1915
Willy Tarreau9c218e72019-05-26 10:08:28 +02001916 /* len: 4, type: 3, flags: none */
1917 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1918 write_n32(str + 5, h2s->id);
1919 write_n32(str + 9, h2s->errcode);
1920
Willy Tarreaubcc45952019-05-26 10:05:50 +02001921 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001922 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001923 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001924 h2c->flags |= H2_CF_MUX_MALLOC;
1925 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001926 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001927 }
1928
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001929 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001930 if (unlikely(ret <= 0)) {
1931 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001932 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1933 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001934 h2c->flags |= H2_CF_MUX_MFULL;
1935 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001936 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001937 }
1938 else {
1939 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001940 ret = 0;
1941 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001942 }
1943 }
1944
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001945 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001946 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001947 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001948 out:
1949 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001950 return ret;
1951}
1952
1953/* Try to send an RST_STREAM frame on the connection for the stream being
1954 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001955 * error code, even if the stream is one of the dummy ones, and will update
1956 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001957 *
1958 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1959 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001960 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001961 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001962 */
1963static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1964{
1965 struct buffer *res;
1966 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001967 int ret = 0;
1968
1969 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001970
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001971 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1972 * RST_STREAM in response to a RST_STREAM frame.
1973 */
1974 if (h2c->dft == H2_FT_RST_STREAM) {
1975 ret = 1;
1976 goto ignore;
1977 }
1978
Willy Tarreau9c218e72019-05-26 10:08:28 +02001979 /* len: 4, type: 3, flags: none */
1980 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1981
1982 write_n32(str + 5, h2c->dsi);
1983 write_n32(str + 9, h2s->errcode);
1984
Willy Tarreaubcc45952019-05-26 10:05:50 +02001985 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001986 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001987 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001988 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001989 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001990 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001991 }
1992
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001993 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02001994 if (unlikely(ret <= 0)) {
1995 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001996 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1997 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001998 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001999 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002000 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002001 }
2002 else {
2003 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002004 ret = 0;
2005 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002006 }
2007 }
2008
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002009 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02002010 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002011 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002012 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002013 }
2014
Willy Tarreau7838a792019-08-12 18:42:03 +02002015 out:
Willy Tarreau4781b152021-04-06 13:53:36 +02002016 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_resp);
Willy Tarreau7838a792019-08-12 18:42:03 +02002017 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002018 return ret;
2019}
2020
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002021/* try to send an empty DATA frame with the ES flag set to notify about the
2022 * end of stream and match a shutdown(write). If an ES was already sent as
2023 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
2024 * on success or zero if nothing was done. In case of lack of room to write the
2025 * message, it subscribes the requesting stream to future notifications.
2026 */
2027static int h2_send_empty_data_es(struct h2s *h2s)
2028{
2029 struct h2c *h2c = h2s->h2c;
2030 struct buffer *res;
2031 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002032 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002033
Willy Tarreau7838a792019-08-12 18:42:03 +02002034 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
2035
2036 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
2037 ret = 1;
2038 goto out;
2039 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002040
Willy Tarreau9c218e72019-05-26 10:08:28 +02002041 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
2042 memcpy(str, "\x00\x00\x00\x00\x01", 5);
2043 write_n32(str + 5, h2s->id);
2044
Willy Tarreaubcc45952019-05-26 10:05:50 +02002045 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002046 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002047 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002048 h2c->flags |= H2_CF_MUX_MALLOC;
2049 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002050 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002051 }
2052
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002053 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002054 if (likely(ret > 0)) {
2055 h2s->flags |= H2_SF_ES_SENT;
2056 }
2057 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002058 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2059 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002060 h2c->flags |= H2_CF_MUX_MFULL;
2061 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002062 }
2063 else {
2064 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002065 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002066 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002067 out:
2068 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002069 return ret;
2070}
2071
Willy Tarreau4596fe22022-05-17 19:07:51 +02002072/* wake a specific stream and assign its stream connector some SE_FL_* flags
2073 * among SE_FL_ERR_PENDING and SE_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002074 * is automatically updated accordingly. If the stream is orphaned, it is
2075 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002076 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002077static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002078{
Willy Tarreau7838a792019-08-12 18:42:03 +02002079 struct h2c *h2c = h2s->h2c;
2080
2081 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2082
Willy Tarreau7be4ee02022-05-18 07:31:41 +02002083 if (!h2s_sc(h2s)) {
Christopher Fauletf02ca002019-03-07 16:21:34 +01002084 /* this stream was already orphaned */
2085 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002086 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002087 return;
2088 }
2089
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002090 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002091 if (h2s->st == H2_SS_OPEN)
2092 h2s->st = H2_SS_HREM;
2093 else if (h2s->st == H2_SS_HLOC)
2094 h2s_close(h2s);
2095 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002096
Christopher Fauletff7925d2022-10-11 19:12:40 +02002097 if (h2s->h2c->st0 >= H2_CS_ERROR || (h2s->h2c->flags & (H2_CF_ERR_PENDING|H2_CF_ERROR)) ||
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002098 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
Christopher Fauletff7925d2022-10-11 19:12:40 +02002099 se_fl_set_error(h2s->sd);
Willy Tarreau23482912019-05-07 15:23:14 +02002100
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002101 if (h2s->st < H2_SS_ERROR)
2102 h2s->st = H2_SS_ERROR;
2103 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002104
2105 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002106 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002107}
2108
2109/* wake the streams attached to the connection, whose id is greater than <last>
2110 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002111 */
Willy Tarreau23482912019-05-07 15:23:14 +02002112static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002113{
2114 struct eb32_node *node;
2115 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002116
Willy Tarreau7838a792019-08-12 18:42:03 +02002117 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2118
Christopher Fauletf02ca002019-03-07 16:21:34 +01002119 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002120 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2121 while (node) {
2122 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002123 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002124 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002125 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002126
Christopher Fauletf02ca002019-03-07 16:21:34 +01002127 /* Wake all streams with unassigned ID (ID == 0) */
2128 node = eb32_lookup(&h2c->streams_by_id, 0);
2129 while (node) {
2130 h2s = container_of(node, struct h2s, by_id);
2131 if (h2s->id > 0)
2132 break;
2133 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002134 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002135 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002136
2137 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002138}
2139
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002140/* Wake up all blocked streams whose window size has become positive after the
2141 * mux's initial window was adjusted. This should be done after having processed
2142 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002143 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002144static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002145{
2146 struct h2s *h2s;
2147 struct eb32_node *node;
2148
Willy Tarreau7838a792019-08-12 18:42:03 +02002149 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2150
Willy Tarreau3421aba2017-07-27 15:41:03 +02002151 node = eb32_first(&h2c->streams_by_id);
2152 while (node) {
2153 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002154 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002155 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002156 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002157 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2158 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002159 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002160 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002161 node = eb32_next(node);
2162 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002163
2164 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002165}
2166
2167/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2168 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002169 * return an error in h2c. The caller must have already verified frame length
2170 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002171 */
2172static int h2c_handle_settings(struct h2c *h2c)
2173{
2174 unsigned int offset;
2175 int error;
2176
Willy Tarreau7838a792019-08-12 18:42:03 +02002177 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2178
Willy Tarreau3421aba2017-07-27 15:41:03 +02002179 if (h2c->dff & H2_F_SETTINGS_ACK) {
2180 if (h2c->dfl) {
2181 error = H2_ERR_FRAME_SIZE_ERROR;
2182 goto fail;
2183 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002184 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002185 }
2186
Willy Tarreau3421aba2017-07-27 15:41:03 +02002187 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002188 if (b_data(&h2c->dbuf) < h2c->dfl) {
2189 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002190 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002191 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002192
2193 /* parse the frame */
2194 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002195 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2196 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002197
2198 switch (type) {
2199 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2200 /* we need to update all existing streams with the
2201 * difference from the previous iws.
2202 */
2203 if (arg < 0) { // RFC7540#6.5.2
2204 error = H2_ERR_FLOW_CONTROL_ERROR;
2205 goto fail;
2206 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002207 h2c->miw = arg;
2208 break;
2209 case H2_SETTINGS_MAX_FRAME_SIZE:
2210 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002211 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 +02002212 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002213 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002214 goto fail;
2215 }
2216 h2c->mfs = arg;
2217 break;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01002218 case H2_SETTINGS_HEADER_TABLE_SIZE:
2219 h2c->flags |= H2_CF_SHTS_UPDATED;
2220 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002221 case H2_SETTINGS_ENABLE_PUSH:
2222 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002223 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002224 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002225 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002226 goto fail;
2227 }
2228 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002229 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2230 if (h2c->flags & H2_CF_IS_BACK) {
2231 /* the limit is only for the backend; for the frontend it is our limit */
2232 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2233 arg = h2_settings_max_concurrent_streams;
2234 h2c->streams_limit = arg;
2235 }
2236 break;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002237 case H2_SETTINGS_ENABLE_CONNECT_PROTOCOL:
Amaury Denoyelle0df04362021-10-18 09:43:29 +02002238 if (arg == 1)
2239 h2c->flags |= H2_CF_RCVD_RFC8441;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002240 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002241 }
2242 }
2243
2244 /* need to ACK this frame now */
2245 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002246 done:
2247 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002248 return 1;
2249 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002250 if (!(h2c->flags & H2_CF_IS_BACK))
2251 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002252 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002253 out0:
2254 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 +02002255 return 0;
2256}
2257
2258/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2259 * success or one of the h2_status values.
2260 */
2261static int h2c_ack_settings(struct h2c *h2c)
2262{
2263 struct buffer *res;
2264 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002265 int ret = 0;
2266
2267 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002268
Willy Tarreau9c218e72019-05-26 10:08:28 +02002269 memcpy(str,
2270 "\x00\x00\x00" /* length : 0 (no data) */
2271 "\x04" "\x01" /* type : 4, flags : ACK */
2272 "\x00\x00\x00\x00" /* stream ID */, 9);
2273
Willy Tarreaubcc45952019-05-26 10:05:50 +02002274 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002275 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002276 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002277 h2c->flags |= H2_CF_MUX_MALLOC;
2278 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002279 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002280 }
2281
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002282 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002283 if (unlikely(ret <= 0)) {
2284 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002285 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2286 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002287 h2c->flags |= H2_CF_MUX_MFULL;
2288 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002289 }
2290 else {
2291 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002292 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002293 }
2294 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002295 out:
2296 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002297 return ret;
2298}
2299
Willy Tarreaucf68c782017-10-10 17:11:41 +02002300/* processes a PING frame and schedules an ACK if needed. The caller must pass
2301 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002302 * missing data. The caller must have already verified frame length
2303 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002304 */
2305static int h2c_handle_ping(struct h2c *h2c)
2306{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002307 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002308 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002309 h2c->st0 = H2_CS_FRAME_A;
2310 return 1;
2311}
2312
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002313/* Try to send a window update for stream id <sid> and value <increment>.
2314 * Returns > 0 on success or zero on missing room or failure. It may return an
2315 * error in h2c.
2316 */
2317static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2318{
2319 struct buffer *res;
2320 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002321 int ret = 0;
2322
2323 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002324
Willy Tarreau9c218e72019-05-26 10:08:28 +02002325 /* length: 4, type: 8, flags: none */
2326 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2327 write_n32(str + 5, sid);
2328 write_n32(str + 9, increment);
2329
Willy Tarreaubcc45952019-05-26 10:05:50 +02002330 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002331 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002332 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002333 h2c->flags |= H2_CF_MUX_MALLOC;
2334 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002335 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002336 }
2337
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002338 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002339 if (unlikely(ret <= 0)) {
2340 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002341 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2342 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002343 h2c->flags |= H2_CF_MUX_MFULL;
2344 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002345 }
2346 else {
2347 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002348 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002349 }
2350 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002351 out:
2352 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002353 return ret;
2354}
2355
2356/* try to send pending window update for the connection. It's safe to call it
2357 * with no pending updates. Returns > 0 on success or zero on missing room or
2358 * failure. It may return an error in h2c.
2359 */
2360static int h2c_send_conn_wu(struct h2c *h2c)
2361{
2362 int ret = 1;
2363
Willy Tarreau7838a792019-08-12 18:42:03 +02002364 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2365
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002366 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002367 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002368
Willy Tarreau97aaa672018-12-23 09:49:04 +01002369 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2370 /* increase the advertised connection window to 2G on
2371 * first update.
2372 */
2373 h2c->flags |= H2_CF_WINDOW_OPENED;
2374 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2375 }
2376
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002377 /* send WU for the connection */
2378 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2379 if (ret > 0)
2380 h2c->rcvd_c = 0;
2381
Willy Tarreau7838a792019-08-12 18:42:03 +02002382 out:
2383 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002384 return ret;
2385}
2386
2387/* try to send pending window update for the current dmux stream. It's safe to
2388 * call it with no pending updates. Returns > 0 on success or zero on missing
2389 * room or failure. It may return an error in h2c.
2390 */
2391static int h2c_send_strm_wu(struct h2c *h2c)
2392{
2393 int ret = 1;
2394
Willy Tarreau7838a792019-08-12 18:42:03 +02002395 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2396
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002397 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002398 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002399
2400 /* send WU for the stream */
2401 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2402 if (ret > 0)
2403 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002404 out:
2405 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002406 return ret;
2407}
2408
Willy Tarreaucf68c782017-10-10 17:11:41 +02002409/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2410 * success, 0 on missing data or one of the h2_status values.
2411 */
2412static int h2c_ack_ping(struct h2c *h2c)
2413{
2414 struct buffer *res;
2415 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002416 int ret = 0;
2417
2418 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002419
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002420 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002421 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002422
Willy Tarreaucf68c782017-10-10 17:11:41 +02002423 memcpy(str,
2424 "\x00\x00\x08" /* length : 8 (same payload) */
2425 "\x06" "\x01" /* type : 6, flags : ACK */
2426 "\x00\x00\x00\x00" /* stream ID */, 9);
2427
2428 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002429 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002430
Willy Tarreau9c218e72019-05-26 10:08:28 +02002431 res = br_tail(h2c->mbuf);
2432 retry:
2433 if (!h2_get_buf(h2c, res)) {
2434 h2c->flags |= H2_CF_MUX_MALLOC;
2435 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002436 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002437 }
2438
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002439 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002440 if (unlikely(ret <= 0)) {
2441 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002442 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2443 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002444 h2c->flags |= H2_CF_MUX_MFULL;
2445 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002446 }
2447 else {
2448 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002449 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002450 }
2451 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002452 out:
2453 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002454 return ret;
2455}
2456
Willy Tarreau26f95952017-07-27 17:18:30 +02002457/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2458 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002459 * h2c or h2s. The caller must have already verified frame length and stream ID
2460 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002461 */
2462static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2463{
2464 int32_t inc;
2465 int error;
2466
Willy Tarreau7838a792019-08-12 18:42:03 +02002467 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2468
Willy Tarreau26f95952017-07-27 17:18:30 +02002469 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002470 if (b_data(&h2c->dbuf) < h2c->dfl) {
2471 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002472 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002473 }
Willy Tarreau26f95952017-07-27 17:18:30 +02002474
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002475 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002476
2477 if (h2c->dsi != 0) {
2478 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002479
2480 /* it's not an error to receive WU on a closed stream */
2481 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002482 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002483
2484 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002485 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 +02002486 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002487 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002488 goto strm_err;
2489 }
2490
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002491 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002492 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 +02002493 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002494 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002495 goto strm_err;
2496 }
2497
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002498 h2s->sws += inc;
2499 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002500 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002501 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002502 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2503 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002504 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002505 }
2506 }
2507 else {
2508 /* connection window update */
2509 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002510 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002511 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002512 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002513 goto conn_err;
2514 }
2515
2516 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2517 error = H2_ERR_FLOW_CONTROL_ERROR;
2518 goto conn_err;
2519 }
2520
2521 h2c->mws += inc;
2522 }
2523
Willy Tarreau7838a792019-08-12 18:42:03 +02002524 done:
2525 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002526 return 1;
2527
2528 conn_err:
2529 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002530 out0:
2531 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 +02002532 return 0;
2533
2534 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002535 h2s_error(h2s, error);
2536 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002537 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002538 return 0;
2539}
2540
Willy Tarreaue96b0922017-10-30 00:28:29 +01002541/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002542 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2543 * have already verified frame length and stream ID validity. Described in
2544 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002545 */
2546static int h2c_handle_goaway(struct h2c *h2c)
2547{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002548 int last;
2549
Willy Tarreau7838a792019-08-12 18:42:03 +02002550 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002551 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002552 if (b_data(&h2c->dbuf) < h2c->dfl) {
2553 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002554 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002555 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002556 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002557
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002558 last = h2_get_n32(&h2c->dbuf, 0);
2559 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002560 if (h2c->last_sid < 0)
2561 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002562 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002563 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002564 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002565}
2566
Willy Tarreau92153fc2017-12-03 19:46:19 +01002567/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002568 * invalid. Returns > 0 on success or zero on missing data. It may return an
2569 * error in h2c. The caller must have already verified frame length and stream
2570 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002571 */
2572static int h2c_handle_priority(struct h2c *h2c)
2573{
Willy Tarreau7838a792019-08-12 18:42:03 +02002574 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2575
Willy Tarreau92153fc2017-12-03 19:46:19 +01002576 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002577 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002578 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002579 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002580 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002581 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002582
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002583 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002584 /* 7540#5.3 : can't depend on itself */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002585 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002586 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02002587 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002588 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002589 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002590 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002591 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002592 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002593}
2594
Willy Tarreaucd234e92017-08-18 10:59:39 +02002595/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002596 * Returns > 0 on success or zero on missing data. The caller must have already
2597 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002598 */
2599static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2600{
Willy Tarreau7838a792019-08-12 18:42:03 +02002601 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2602
Willy Tarreaucd234e92017-08-18 10:59:39 +02002603 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002604 if (b_data(&h2c->dbuf) < h2c->dfl) {
2605 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 +02002606 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002607 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002608 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002609
2610 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002611 if (h2s->st == H2_SS_CLOSED) {
2612 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 +02002613 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002614 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002615
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002616 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002617 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002618
Willy Tarreau7be4ee02022-05-18 07:31:41 +02002619 if (h2s_sc(h2s)) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02002620 se_fl_set_error(h2s->sd);
Willy Tarreauf830f012018-12-19 17:44:55 +01002621 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002622 }
2623
2624 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002625 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002626 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002627}
2628
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002629/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2630 * It may return an error in h2c or h2s. The caller must consider that the
2631 * return value is the new h2s in case one was allocated (most common case).
2632 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002633 * errors here are reported as connection errors since it's impossible to
2634 * recover from such errors after the compression context has been altered.
2635 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002636static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002637{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002638 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002639 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002640 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002641 int error;
2642
Willy Tarreau7838a792019-08-12 18:42:03 +02002643 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2644
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002645 if (!b_size(&h2c->dbuf)) {
2646 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002647 goto out; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002648 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002649
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002650 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2651 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002652 goto out; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002653 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002654
2655 /* now either the frame is complete or the buffer is complete */
2656 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002657 /* The stream exists/existed, this must be a trailers frame */
2658 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7cfbb812023-01-26 16:02:01 +01002659 error = h2c_dec_hdrs(h2c, &h2s->rxbuf, &h2s->flags, &body_len, NULL);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002660 /* unrecoverable error ? */
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002661 if (h2c->st0 >= H2_CS_ERROR) {
Willy Tarreau17c630b2023-01-19 23:58:11 +01002662 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 +01002663 sess_log(h2c->conn->owner);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002664 goto out;
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002665 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002666
Christopher Faulet485da0b2021-10-08 08:56:00 +02002667 if (error == 0) {
2668 /* Demux not blocked because of the stream, it is an incomplete frame */
2669 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2670 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002671 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002672 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002673
2674 if (error < 0) {
2675 /* Failed to decode this frame (e.g. too large request)
2676 * but the HPACK decompressor is still synchronized.
2677 */
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002678 sess_log(h2c->conn->owner);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002679 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
Willy Tarreau17c630b2023-01-19 23:58:11 +01002680 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 +02002681 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002682 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002683 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002684 goto done;
2685 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002686 /* the connection was already killed by an RST, let's consume
2687 * the data and send another RST.
2688 */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01002689 error = h2c_dec_hdrs(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002690 sess_log(h2c->conn->owner);
Willy Tarreau1f035502019-01-30 11:44:07 +01002691 h2s = (struct h2s*)h2_error_stream;
2692 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002693 }
2694 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2695 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2696 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002697 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau4781b152021-04-06 13:53:36 +02002698 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002699 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002700 goto conn_err;
2701 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002702 else if (h2c->flags & H2_CF_DEM_TOOMANY)
Willy Tarreau36c22322022-05-27 10:41:24 +02002703 goto out; // IDLE but too many sc still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002704
Willy Tarreau7cfbb812023-01-26 16:02:01 +01002705 error = h2c_dec_hdrs(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002706
Willy Tarreau25919232019-01-03 14:48:18 +01002707 /* unrecoverable error ? */
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002708 if (h2c->st0 >= H2_CS_ERROR) {
Willy Tarreau17c630b2023-01-19 23:58:11 +01002709 TRACE_USER("Unrecoverable error decoding H2 request", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW|H2_EV_STRM_END, h2c->conn, 0, &rxbuf);
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002710 sess_log(h2c->conn->owner);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002711 goto out;
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002712 }
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002713
Willy Tarreau25919232019-01-03 14:48:18 +01002714 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002715 if (error == 0) {
2716 /* Demux not blocked because of the stream, it is an incomplete frame */
2717 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2718 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau25919232019-01-03 14:48:18 +01002719 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002720 }
Willy Tarreau25919232019-01-03 14:48:18 +01002721
2722 /* Failed to decode this stream (e.g. too large request)
2723 * but the HPACK decompressor is still synchronized.
2724 */
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002725 sess_log(h2c->conn->owner);
Willy Tarreau25919232019-01-03 14:48:18 +01002726 h2s = (struct h2s*)h2_error_stream;
2727 goto send_rst;
2728 }
2729
Willy Tarreau29268e92021-06-17 08:29:14 +02002730 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn, 0, &rxbuf);
2731
Willy Tarreau198b5072022-05-12 09:08:51 +02002732 /* Now we cannot roll back and we won't come back here anymore for this
2733 * stream, this stream ID is open.
2734 */
2735 if (h2c->dsi > h2c->max_id)
2736 h2c->max_id = h2c->dsi;
2737
Willy Tarreau22de8d32018-09-05 19:55:58 +02002738 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002739 * positively from h2c_frt_stream_new(), the stream will report the error,
2740 * and if we return in error, h2c_frt_stream_new() will emit the error.
Christopher Faulet7d013e72020-12-15 16:56:50 +01002741 *
2742 * Xfer the rxbuf to the stream. On success, the new stream owns the
2743 * rxbuf. On error, it is released here.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002744 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02002745 h2s = h2c_frt_stream_new(h2c, h2c->dsi, &rxbuf, flags);
Willy Tarreau13278b42017-10-13 19:23:14 +02002746 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002747 h2s = (struct h2s*)h2_refused_stream;
2748 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002749 }
2750
2751 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002752 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002753 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002754
Willy Tarreau88d138e2019-01-02 19:38:14 +01002755 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002756 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002757 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002758
2759 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002760 if (h2s->st == H2_SS_OPEN)
2761 h2s->st = H2_SS_HREM;
2762 else
2763 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002764 }
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002765 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002766
2767 conn_err:
2768 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002769 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002770
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002771 out:
2772 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002773 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002774 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002775
2776 send_rst:
2777 /* make the demux send an RST for the current stream. We may only
2778 * do this if we're certain that the HEADERS frame was properly
2779 * decompressed so that the HPACK decoder is still kept up to date.
2780 */
2781 h2_release_buf(h2c, &rxbuf);
2782 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002783
Willy Tarreau022e5e52020-09-10 09:33:15 +02002784 TRACE_USER("rejected H2 request", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW|H2_EV_STRM_END, h2c->conn, 0, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002785 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002786 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002787}
2788
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002789/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2790 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2791 * errors here are reported as connection errors since it's impossible to
2792 * recover from such errors after the compression context has been altered.
2793 */
2794static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2795{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002796 struct buffer rxbuf = BUF_NULL;
2797 unsigned long long body_len = 0;
2798 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002799 int error;
2800
Willy Tarreau7838a792019-08-12 18:42:03 +02002801 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2802
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002803 if (!b_size(&h2c->dbuf)) {
2804 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002805 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002806 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002807
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002808 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2809 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002810 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002811 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002812
Christopher Faulet6884aa32019-09-23 15:28:20 +02002813 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7cfbb812023-01-26 16:02:01 +01002814 error = h2c_dec_hdrs(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len, h2s->upgrade_protocol);
Christopher Faulet6884aa32019-09-23 15:28:20 +02002815 }
2816 else {
2817 /* the connection was already killed by an RST, let's consume
2818 * the data and send another RST.
2819 */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01002820 error = h2c_dec_hdrs(h2c, &rxbuf, &flags, &body_len, NULL);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002821 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002822 h2c->st0 = H2_CS_FRAME_E;
2823 goto send_rst;
2824 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002825
Willy Tarreau25919232019-01-03 14:48:18 +01002826 /* unrecoverable error ? */
Willy Tarreau17c630b2023-01-19 23:58:11 +01002827 if (h2c->st0 >= H2_CS_ERROR) {
2828 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 +02002829 goto fail;
Willy Tarreau17c630b2023-01-19 23:58:11 +01002830 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002831
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002832 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2833 /* RFC7540#5.1 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002834 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 +01002835 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2836 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002837 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002838 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002839 }
2840
Willy Tarreau25919232019-01-03 14:48:18 +01002841 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002842 if (error == 0) {
2843 /* Demux not blocked because of the stream, it is an incomplete frame */
2844 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2845 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002846 goto fail; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002847 }
Willy Tarreau25919232019-01-03 14:48:18 +01002848
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002849 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002850 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 +01002851 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002852 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002853 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002854 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002855 }
2856
Christopher Fauletfa922f02019-05-07 10:55:17 +02002857 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002858 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002859
Willy Tarreau95acc8b2022-05-27 16:14:10 +02002860 if (se_fl_test(h2s->sd, SE_FL_ERROR) && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002861 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002862 else if (h2s->flags & H2_SF_ES_RCVD) {
2863 if (h2s->st == H2_SS_OPEN)
2864 h2s->st = H2_SS_HREM;
2865 else if (h2s->st == H2_SS_HLOC)
2866 h2s_close(h2s);
2867 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002868
Christopher Fauletf95f8762021-01-22 11:59:07 +01002869 /* Unblock busy server h2s waiting for the response headers to validate
2870 * the tunnel establishment or the end of the response of an oborted
2871 * tunnel
2872 */
2873 if ((h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY)) == (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY) ||
2874 (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)) {
2875 TRACE_STATE("Unblock h2s blocked on tunnel establishment/abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2876 h2s->flags &= ~H2_SF_BLK_MBUSY;
2877 }
2878
Willy Tarreau9abb3172021-06-16 18:32:42 +02002879 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 +02002880 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002881 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002882 fail:
2883 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2884 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002885
2886 send_rst:
2887 /* make the demux send an RST for the current stream. We may only
2888 * do this if we're certain that the HEADERS frame was properly
2889 * decompressed so that the HPACK decoder is still kept up to date.
2890 */
2891 h2_release_buf(h2c, &rxbuf);
2892 h2c->st0 = H2_CS_FRAME_E;
2893
Willy Tarreau022e5e52020-09-10 09:33:15 +02002894 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 +02002895 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2896 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002897}
2898
Willy Tarreau454f9052017-10-26 19:40:35 +02002899/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2900 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2901 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01002902static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02002903{
2904 int error;
2905
Willy Tarreau7838a792019-08-12 18:42:03 +02002906 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2907
Willy Tarreau454f9052017-10-26 19:40:35 +02002908 /* note that empty DATA frames are perfectly valid and sometimes used
2909 * to signal an end of stream (with the ES flag).
2910 */
2911
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002912 if (!b_size(&h2c->dbuf) && h2c->dfl) {
2913 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002914 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002915 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002916
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002917 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2918 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002919 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002920 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002921
2922 /* now either the frame is complete or the buffer is complete */
2923
Willy Tarreau454f9052017-10-26 19:40:35 +02002924 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2925 /* RFC7540#6.1 */
2926 error = H2_ERR_STREAM_CLOSED;
2927 goto strm_err;
2928 }
2929
Christopher Faulet4f09ec82019-06-19 09:25:58 +02002930 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002931 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002932 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 +01002933 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002934 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002935 goto strm_err;
2936 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002937 if (!(h2c->flags & H2_CF_IS_BACK) &&
2938 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT) &&
2939 ((h2c->dfl - h2c->dpl) || !(h2c->dff & H2_F_DATA_END_STREAM))) {
2940 /* a tunnel attempt was aborted but the client still try to send some raw data.
2941 * Thus the stream is closed with the CANCEL error. Here we take care it is not
2942 * an empty DATA Frame with the ES flag. The error is only handled if ES was
2943 * already sent to the client because depending on the scheduling, these data may
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002944 * have been sent before the server response but not handle here.
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002945 */
2946 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2947 error = H2_ERR_CANCEL;
2948 goto strm_err;
2949 }
Willy Tarreau1915ca22019-01-24 11:49:37 +01002950
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002951 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02002952 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002953
Willy Tarreau454f9052017-10-26 19:40:35 +02002954 /* call the upper layers to process the frame, then let the upper layer
2955 * notify the stream about any change.
2956 */
Willy Tarreau7be4ee02022-05-18 07:31:41 +02002957 if (!h2s_sc(h2s)) {
Willy Tarreau082c4572019-08-06 10:11:02 +02002958 /* The upper layer has already closed, this may happen on
2959 * 4xx/redirects during POST, or when receiving a response
2960 * from an H2 server after the client has aborted.
2961 */
2962 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002963 goto strm_err;
2964 }
2965
Willy Tarreau8f650c32017-11-21 19:36:21 +01002966 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002967 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01002968
Willy Tarreau721c9742017-11-07 11:05:42 +01002969 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002970 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002971 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002972 }
2973
2974 /* check for completion : the callee will change this to FRAME_A or
2975 * FRAME_H once done.
2976 */
2977 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02002978 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02002979
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002980 /* last frame */
2981 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002982 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002983 if (h2s->st == H2_SS_OPEN)
2984 h2s->st = H2_SS_HREM;
2985 else
2986 h2s_close(h2s);
2987
Willy Tarreau1915ca22019-01-24 11:49:37 +01002988 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
2989 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002990 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 +01002991 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002992 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002993 goto strm_err;
2994 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002995 }
2996
Christopher Fauletf95f8762021-01-22 11:59:07 +01002997 /* Unblock busy server h2s waiting for the end of the response for an
2998 * aborted tunnel
2999 */
3000 if ((h2c->flags & H2_CF_IS_BACK) &&
3001 (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)) {
3002 TRACE_STATE("Unblock h2s blocked on tunnel abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3003 h2s->flags &= ~H2_SF_BLK_MBUSY;
3004 }
3005
Willy Tarreau7838a792019-08-12 18:42:03 +02003006 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003007 return 1;
3008
Willy Tarreau454f9052017-10-26 19:40:35 +02003009 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01003010 h2s_error(h2s, error);
3011 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003012 fail:
3013 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 +02003014 return 0;
3015}
3016
Willy Tarreau63864812019-08-07 14:25:20 +02003017/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
3018 * valid for the current stream state. This is needed only after parsing the
3019 * frame header but in practice it can be performed at any time during
3020 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
3021 * or 0 in case of error, in which case either h2s or h2c will carry an error.
3022 */
3023static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
3024{
Willy Tarreau7838a792019-08-12 18:42:03 +02003025 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
3026
Willy Tarreau63864812019-08-07 14:25:20 +02003027 if (h2s->st == H2_SS_IDLE &&
3028 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
3029 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
3030 * this state MUST be treated as a connection error
3031 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003032 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 +02003033 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003034 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02003035 /* only log if no other stream can report the error */
3036 sess_log(h2c->conn->owner);
3037 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003038 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02003039 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 +02003040 return 0;
3041 }
3042
Willy Tarreau57a18162019-11-24 14:57:53 +01003043 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
3044 /* only PUSH_PROMISE would be permitted here */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003045 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 +01003046 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003047 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau57a18162019-11-24 14:57:53 +01003048 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
3049 return 0;
3050 }
3051
Willy Tarreau63864812019-08-07 14:25:20 +02003052 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
3053 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
3054 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
3055 * this state MUST be treated as a stream error.
3056 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
3057 * PUSH_PROMISE/CONTINUATION cause connection errors.
3058 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01003059 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003060 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 +02003061 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003062 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003063 }
3064 else {
Willy Tarreau63864812019-08-07 14:25:20 +02003065 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003066 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003067 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 +02003068 return 0;
3069 }
3070
3071 /* Below the management of frames received in closed state is a
3072 * bit hackish because the spec makes strong differences between
3073 * streams closed by receiving RST, sending RST, and seeing ES
3074 * in both directions. In addition to this, the creation of a
3075 * new stream reusing the identifier of a closed one will be
3076 * detected here. Given that we cannot keep track of all closed
3077 * streams forever, we consider that unknown closed streams were
3078 * closed on RST received, which allows us to respond with an
3079 * RST without breaking the connection (eg: to abort a transfer).
3080 * Some frames have to be silently ignored as well.
3081 */
3082 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
3083 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
3084 /* #5.1.1: The identifier of a newly
3085 * established stream MUST be numerically
3086 * greater than all streams that the initiating
3087 * endpoint has opened or reserved. This
3088 * governs streams that are opened using a
3089 * HEADERS frame and streams that are reserved
3090 * using PUSH_PROMISE. An endpoint that
3091 * receives an unexpected stream identifier
3092 * MUST respond with a connection error.
3093 */
3094 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003095 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 +02003096 return 0;
3097 }
3098
Willy Tarreau4c08f122019-09-26 08:47:15 +02003099 if (h2s->flags & H2_SF_RST_RCVD &&
3100 !(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 +02003101 /* RFC7540#5.1:closed: an endpoint that
3102 * receives any frame other than PRIORITY after
3103 * receiving a RST_STREAM MUST treat that as a
3104 * stream error of type STREAM_CLOSED.
3105 *
3106 * Note that old streams fall into this category
3107 * and will lead to an RST being sent.
3108 *
3109 * However, we cannot generalize this to all frame types. Those
3110 * carrying compression state must still be processed before
3111 * being dropped or we'll desynchronize the decoder. This can
3112 * happen with request trailers received after sending an
3113 * RST_STREAM, or with header/trailers responses received after
3114 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02003115 *
3116 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003117 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003118 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003119 */
3120 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3121 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003122 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 +02003123 return 0;
3124 }
3125
3126 /* RFC7540#5.1:closed: if this state is reached as a
3127 * result of sending a RST_STREAM frame, the peer that
3128 * receives the RST_STREAM might have already sent
3129 * frames on the stream that cannot be withdrawn. An
3130 * endpoint MUST ignore frames that it receives on
3131 * closed streams after it has sent a RST_STREAM
3132 * frame. An endpoint MAY choose to limit the period
3133 * over which it ignores frames and treat frames that
3134 * arrive after this time as being in error.
3135 */
3136 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3137 /* RFC7540#5.1:closed: any frame other than
3138 * PRIO/WU/RST in this state MUST be treated as
3139 * a connection error
3140 */
3141 if (h2c->dft != H2_FT_RST_STREAM &&
3142 h2c->dft != H2_FT_PRIORITY &&
3143 h2c->dft != H2_FT_WINDOW_UPDATE) {
3144 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003145 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 +02003146 return 0;
3147 }
3148 }
3149 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003150 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003151 return 1;
3152}
3153
Willy Tarreaubc933932017-10-09 16:21:43 +02003154/* process Rx frames to be demultiplexed */
3155static void h2_process_demux(struct h2c *h2c)
3156{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003157 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003158 struct h2_fh hdr;
3159 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003160 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003161
Willy Tarreau7838a792019-08-12 18:42:03 +02003162 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3163
Willy Tarreau081d4722017-05-16 21:51:05 +02003164 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003165 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003166
3167 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3168 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003169 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003170 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003171 goto out;
3172
Willy Tarreau52eed752017-09-22 15:05:09 +02003173 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3174 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003175 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003176 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003177 h2c->st0 = H2_CS_ERROR2;
Willy Tarreauee4684f2021-06-17 08:08:48 +02003178 if (b_data(&h2c->dbuf) ||
Christopher Faulet3f35da22021-07-26 10:18:35 +02003179 !(((const struct session *)h2c->conn->owner)->fe->options & (PR_O_NULLNOLOG|PR_O_IGNORE_PRB)))
Willy Tarreauee4684f2021-06-17 08:08:48 +02003180 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003181 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003182 goto done;
Willy Tarreau52eed752017-09-22 15:05:09 +02003183 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003184 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003185
3186 h2c->max_id = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02003187 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaued2b9d92022-08-18 15:30:41 +02003188 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau52eed752017-09-22 15:05:09 +02003189 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003190
3191 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003192 /* ensure that what is pending is a valid SETTINGS frame
3193 * without an ACK.
3194 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003195 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 +02003196 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003197 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003198 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003199 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003200 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 +02003201 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003202 if (!(h2c->flags & H2_CF_IS_BACK))
3203 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003204 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003205 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003206 }
3207
3208 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3209 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003210 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 +02003211 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3212 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003213 if (!(h2c->flags & H2_CF_IS_BACK))
3214 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003215 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003216 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003217 }
3218
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003219 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003220 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003221 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 +02003222 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3223 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003224 if (!(h2c->flags & H2_CF_IS_BACK))
3225 sess_log(h2c->conn->owner);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003226 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003227 }
3228
Willy Tarreau3bf69182018-12-21 15:34:50 +01003229 /* that's OK, switch to FRAME_P to process it. This is
3230 * a SETTINGS frame whose header has already been
3231 * deleted above.
3232 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003233 padlen = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +02003234 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003235 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003236 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003237 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003238
3239 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003240 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003241 int ret = 0;
3242
Willy Tarreau7838a792019-08-12 18:42:03 +02003243 if (!b_data(&h2c->dbuf)) {
3244 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003245 h2c->flags |= H2_CF_DEM_SHORT_READ;
3246 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003247 }
3248
3249 if (h2c->st0 >= H2_CS_ERROR) {
3250 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003251 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003252 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003253
3254 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003255 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003256 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr)) {
3257 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003258 break;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003259 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003260
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003261 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003262 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 +02003263 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003264 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003265 /* only log if no other stream can report the error */
3266 sess_log(h2c->conn->owner);
3267 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003268 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003269 break;
3270 }
3271
Willy Tarreau617592c2022-06-08 16:32:22 +02003272 if (h2c->rcvd_s && h2c->dsi != hdr.sid) {
3273 /* changed stream with a pending WU, need to
3274 * send it now.
3275 */
3276 TRACE_PROTO("sending stream WINDOW_UPDATE frame on stream switch", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
3277 ret = h2c_send_strm_wu(h2c);
3278 if (ret <= 0)
3279 break;
3280 }
3281
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003282 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003283 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3284 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3285 * we read the pad length and drop it from the remaining
3286 * payload (one byte + the 9 remaining ones = 10 total
3287 * removed), so we have a frame payload starting after the
3288 * pad len. Flow controlled frames (DATA) also count the
3289 * padlen in the flow control, so it must be adjusted.
3290 */
3291 if (hdr.len < 1) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003292 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 +01003293 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003294 if (!(h2c->flags & H2_CF_IS_BACK))
3295 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003296 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003297 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003298 }
3299 hdr.len--;
3300
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003301 if (b_data(&h2c->dbuf) < 10) {
3302 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003303 break; // missing padlen
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003304 }
Willy Tarreau3bf69182018-12-21 15:34:50 +01003305
3306 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3307
3308 if (padlen > hdr.len) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003309 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 +01003310 /* RFC7540#6.1 : pad length = length of
3311 * frame payload or greater => error.
3312 */
3313 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003314 if (!(h2c->flags & H2_CF_IS_BACK))
3315 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003316 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003317 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003318 }
3319
3320 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3321 h2c->rcvd_c++;
3322 h2c->rcvd_s++;
3323 }
3324 b_del(&h2c->dbuf, 1);
3325 }
3326 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003327
3328 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003329 h2c->dfl = hdr.len;
3330 h2c->dsi = hdr.sid;
3331 h2c->dft = hdr.ft;
3332 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003333 h2c->dpl = padlen;
Willy Tarreau0f458712022-08-18 11:19:57 +02003334 h2c->flags |= H2_CF_DEM_IN_PROGRESS;
Willy Tarreau73db4342019-09-25 07:28:44 +02003335 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 +02003336 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003337
3338 /* check for minimum basic frame format validity */
3339 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3340 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003341 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 +01003342 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003343 if (!(h2c->flags & H2_CF_IS_BACK))
3344 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003345 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003346 goto done;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003347 }
Willy Tarreau15a47332022-03-18 15:57:34 +01003348
3349 /* transition to HEADERS frame ends the keep-alive idle
3350 * timer and starts the http-request idle delay.
3351 */
3352 if (hdr.ft == H2_FT_HEADERS)
3353 h2c->idle_start = now_ms;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003354 }
3355
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003356 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3357 * H2_CS_FRAME_P indicates an incomplete previous operation
3358 * (most often the first attempt) and requires some validity
3359 * checks for the frame and the current state. The two other
3360 * ones are set after completion (or abortion) and must skip
3361 * validity checks.
3362 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003363 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3364
Willy Tarreau7be4ee02022-05-18 07:31:41 +02003365 if (tmp_h2s != h2s && h2s && h2s_sc(h2s) &&
Willy Tarreau567beb82018-12-18 16:52:44 +01003366 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003367 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003368 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003369 (h2s->flags & H2_SF_ES_RCVD) ||
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003370 se_fl_test(h2s->sd, SE_FL_ERROR | SE_FL_ERR_PENDING | SE_FL_EOS))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003371 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003372 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 +02003373 se_fl_set(h2s->sd, SE_FL_RCV_MORE);
Willy Tarreau7e094452018-12-19 18:08:52 +01003374 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003375 }
3376 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003377
Willy Tarreau63864812019-08-07 14:25:20 +02003378 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003379 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3380 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003381 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003382 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003383
Willy Tarreau7e98c052017-10-10 15:56:59 +02003384 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003385 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003386 if (h2c->st0 == H2_CS_FRAME_P) {
3387 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003388 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003389 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003390 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003391
Willy Tarreau7838a792019-08-12 18:42:03 +02003392 if (h2c->st0 == H2_CS_FRAME_A) {
3393 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 +02003394 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003395 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003396 break;
3397
Willy Tarreaucf68c782017-10-10 17:11:41 +02003398 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003399 if (h2c->st0 == H2_CS_FRAME_P) {
3400 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003401 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003402 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003403
Willy Tarreau7838a792019-08-12 18:42:03 +02003404 if (h2c->st0 == H2_CS_FRAME_A) {
3405 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 +02003406 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003407 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003408 break;
3409
Willy Tarreau26f95952017-07-27 17:18:30 +02003410 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003411 if (h2c->st0 == H2_CS_FRAME_P) {
3412 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 +02003413 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003414 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003415 break;
3416
Willy Tarreau61290ec2017-10-17 08:19:21 +02003417 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003418 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003419 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3420 * frames' parsers consume all following CONTINUATION
3421 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003422 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003423 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 +01003424 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003425 if (!(h2c->flags & H2_CF_IS_BACK))
3426 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003427 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003428 goto done;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003429
Willy Tarreau13278b42017-10-13 19:23:14 +02003430 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003431 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003432 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003433 if (h2c->flags & H2_CF_IS_BACK)
3434 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3435 else
3436 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003437 if (tmp_h2s) {
3438 h2s = tmp_h2s;
3439 ret = 1;
3440 }
3441 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003442 HA_ATOMIC_INC(&h2c->px_counters->headers_rcvd);
Willy Tarreau13278b42017-10-13 19:23:14 +02003443 break;
3444
Willy Tarreau454f9052017-10-26 19:40:35 +02003445 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003446 if (h2c->st0 == H2_CS_FRAME_P) {
3447 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003448 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003449 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003450 HA_ATOMIC_INC(&h2c->px_counters->data_rcvd);
Willy Tarreau454f9052017-10-26 19:40:35 +02003451
Willy Tarreau7838a792019-08-12 18:42:03 +02003452 if (h2c->st0 == H2_CS_FRAME_A) {
Willy Tarreau617592c2022-06-08 16:32:22 +02003453 /* rcvd_s will suffice to trigger the sending of a WU */
3454 h2c->st0 = H2_CS_FRAME_H;
Willy Tarreau7838a792019-08-12 18:42:03 +02003455 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003456 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003457
Willy Tarreau92153fc2017-12-03 19:46:19 +01003458 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003459 if (h2c->st0 == H2_CS_FRAME_P) {
3460 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003461 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003462 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003463 break;
3464
Willy Tarreaucd234e92017-08-18 10:59:39 +02003465 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003466 if (h2c->st0 == H2_CS_FRAME_P) {
3467 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 +02003468 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003469 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003470 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_rcvd);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003471 break;
3472
Willy Tarreaue96b0922017-10-30 00:28:29 +01003473 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003474 if (h2c->st0 == H2_CS_FRAME_P) {
3475 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003476 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003477 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003478 HA_ATOMIC_INC(&h2c->px_counters->goaway_rcvd);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003479 break;
3480
Willy Tarreau1c661982017-10-30 13:52:01 +01003481 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003482 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003483 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003484 /* drop frames that we ignore. They may be larger than
3485 * the buffer so we drain all of their contents until
3486 * we reach the end.
3487 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003488 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3489 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003490 h2c->dfl -= ret;
3491 ret = h2c->dfl == 0;
3492 }
3493
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003494 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003495 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003496 if (h2s->st == H2_SS_ERROR) {
3497 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 +01003498 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003499 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003500
Willy Tarreau7838a792019-08-12 18:42:03 +02003501 if (h2c->st0 == H2_CS_FRAME_E) {
3502 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 +01003503 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003504 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003505
Willy Tarreau7e98c052017-10-10 15:56:59 +02003506 /* error or missing data condition met above ? */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003507 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02003508 break;
3509
3510 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003511 if (h2c->dfl)
3512 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003513 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3514 b_del(&h2c->dbuf, ret);
3515 h2c->dfl -= ret;
3516 if (!h2c->dfl) {
Willy Tarreau0f458712022-08-18 11:19:57 +02003517 h2c->flags &= ~H2_CF_DEM_IN_PROGRESS;
Christopher Faulet5112a602019-09-26 16:38:28 +02003518 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3519 h2c->st0 = H2_CS_FRAME_H;
Christopher Faulet5112a602019-09-26 16:38:28 +02003520 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003521 }
3522 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003523
Willy Tarreau617592c2022-06-08 16:32:22 +02003524 if (h2c->rcvd_s > 0 &&
Christopher Faulet68ee7842022-10-12 10:21:33 +02003525 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM))) {
Willy Tarreau617592c2022-06-08 16:32:22 +02003526 TRACE_PROTO("sending stream WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn, h2s);
3527 h2c_send_strm_wu(h2c);
3528 }
3529
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003530 if (h2c->rcvd_c > 0 &&
Christopher Faulet68ee7842022-10-12 10:21:33 +02003531 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003532 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003533 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003534 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003535
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003536 done:
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003537 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_DEM_SHORT_READ)) {
3538 if (h2c->flags & H2_CF_RCVD_SHUT)
3539 h2c->flags |= H2_CF_END_REACHED;
3540 }
3541
Willy Tarreau7be4ee02022-05-18 07:31:41 +02003542 if (h2s && h2s_sc(h2s) &&
Willy Tarreau567beb82018-12-18 16:52:44 +01003543 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003544 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003545 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003546 (h2s->flags & H2_SF_ES_RCVD) ||
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003547 se_fl_test(h2s->sd, SE_FL_ERROR | SE_FL_ERR_PENDING | SE_FL_EOS))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003548 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003549 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 +02003550 se_fl_set(h2s->sd, SE_FL_RCV_MORE);
Willy Tarreau7e094452018-12-19 18:08:52 +01003551 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003552 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003553
Willy Tarreau7838a792019-08-12 18:42:03 +02003554 if (old_iw != h2c->miw) {
3555 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003556 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003557 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003558
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003559 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003560 out:
3561 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003562 return;
Willy Tarreaubc933932017-10-09 16:21:43 +02003563}
3564
Willy Tarreau989539b2020-01-10 17:01:29 +01003565/* resume each h2s eligible for sending in list head <head> */
3566static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3567{
3568 struct h2s *h2s, *h2s_back;
3569
3570 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3571
3572 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3573 if (h2c->mws <= 0 ||
3574 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3575 h2c->st0 >= H2_CS_ERROR)
3576 break;
3577
3578 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003579
Willy Tarreaud9464162020-01-10 18:25:07 +01003580 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003581 continue;
3582
Willy Tarreau5723f292020-01-10 15:16:57 +01003583 /* If the sender changed his mind and unsubscribed, let's just
3584 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003585 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003586 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3587 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003588 LIST_DEL_INIT(&h2s->list);
3589 continue;
3590 }
3591
Willy Tarreauf96508a2020-01-10 11:12:48 +01003592 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003593 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003594 tasklet_wakeup(h2s->subs->tasklet);
3595 h2s->subs->events &= ~SUB_RETRY_SEND;
3596 if (!h2s->subs->events)
3597 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003598 }
3599 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3600 tasklet_wakeup(h2s->shut_tl);
3601 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003602 }
3603
3604 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3605}
3606
Willy Tarreaubc933932017-10-09 16:21:43 +02003607/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3608 * the end.
3609 */
3610static int h2_process_mux(struct h2c *h2c)
3611{
Willy Tarreau7838a792019-08-12 18:42:03 +02003612 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3613
Willy Tarreau01b44822018-10-03 14:26:37 +02003614 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3615 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3616 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3617 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003618 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003619 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003620 goto fail;
3621 }
3622 h2c->st0 = H2_CS_SETTINGS1;
3623 }
3624 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003625 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003626 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003627 }
3628
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003629 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003630 if (h2c->rcvd_s > 0 &&
3631 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3632 h2c_send_strm_wu(h2c) < 0)
3633 goto fail;
3634
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003635 if (h2c->rcvd_c > 0 &&
3636 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3637 h2c_send_conn_wu(h2c) < 0)
3638 goto fail;
3639
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003640 /* First we always process the flow control list because the streams
3641 * waiting there were already elected for immediate emission but were
3642 * blocked just on this.
3643 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003644 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3645 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003646
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003647 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003648 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003649 if (h2c->st0 == H2_CS_ERROR) {
3650 if (h2c->max_id >= 0) {
3651 h2c_send_goaway_error(h2c, NULL);
3652 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003653 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003654 }
3655
3656 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3657 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003658 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003659 done:
3660 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3661 return 1;
3662 out0:
3663 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3664 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003665}
3666
Willy Tarreau62f52692017-10-08 23:01:42 +02003667
Willy Tarreau479998a2018-11-18 06:30:59 +01003668/* Attempt to read data, and subscribe if none available.
3669 * The function returns 1 if data has been received, otherwise zero.
3670 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003671static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003672{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003673 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003674 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003675 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003676 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003677
Willy Tarreau7838a792019-08-12 18:42:03 +02003678 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3679
3680 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3681 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003682 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003683 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003684
Willy Tarreau7838a792019-08-12 18:42:03 +02003685 if (!h2_recv_allowed(h2c)) {
3686 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003687 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003688 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003689
Willy Tarreau44e973f2018-03-01 17:49:30 +01003690 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003691 if (!buf) {
3692 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003693 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003694 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003695 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003696
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003697 if (!b_data(buf)) {
3698 /* try to pre-align the buffer like the
3699 * rxbufs will be to optimize memory copies. We'll make
3700 * sure that the frame header lands at the end of the
3701 * HTX block to alias it upon recv. We cannot use the
3702 * head because rcv_buf() will realign the buffer if
3703 * it's empty. Thus we cheat and pretend we already
3704 * have a few bytes there.
3705 */
3706 max = buf_room_for_htx_data(buf) + 9;
3707 buf->head = sizeof(struct htx) - 9;
3708 }
3709 else
3710 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003711
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003712 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003713
Christopher Fauletde9d6052021-04-23 12:25:18 +02003714 if (max && !ret && h2_recv_allowed(h2c)) {
3715 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
3716 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003717 } else if (ret) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02003718 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003719 h2c->flags &= ~H2_CF_DEM_SHORT_READ;
3720 }
Olivier Houchard81a15af2018-10-19 17:26:49 +02003721
Christopher Fauletde9d6052021-04-23 12:25:18 +02003722 if (conn_xprt_read0_pending(h2c->conn)) {
3723 TRACE_DATA("received read0", H2_EV_H2C_RECV, h2c->conn);
3724 h2c->flags |= H2_CF_RCVD_SHUT;
3725 }
Christopher Fauletff7925d2022-10-11 19:12:40 +02003726 if (h2c->conn->flags & CO_FL_ERROR) {
3727 TRACE_DATA("connection error", H2_EV_H2C_RECV, h2c->conn);
3728 h2c->flags |= H2_CF_ERROR;
3729 }
Christopher Fauletde9d6052021-04-23 12:25:18 +02003730
Olivier Houcharda1411e62018-08-17 18:42:48 +02003731 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003732 h2_release_buf(h2c, &h2c->dbuf);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003733 goto end;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003734 }
3735
Willy Tarreau7838a792019-08-12 18:42:03 +02003736 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003737 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003738 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003739 }
3740
Christopher Fauletff7925d2022-10-11 19:12:40 +02003741 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02003742 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003743 return !!ret || (h2c->flags & (H2_CF_RCVD_SHUT|H2_CF_ERROR));
Willy Tarreau62f52692017-10-08 23:01:42 +02003744}
3745
Willy Tarreau479998a2018-11-18 06:30:59 +01003746/* Try to send data if possible.
3747 * The function returns 1 if data have been sent, otherwise zero.
3748 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003749static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003750{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003751 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003752 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003753 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003754
Willy Tarreau7838a792019-08-12 18:42:03 +02003755 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003756
Christopher Fauletff7925d2022-10-11 19:12:40 +02003757 if (h2c->flags & (H2_CF_ERROR|H2_CF_ERR_PENDING)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003758 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003759 if (h2c->flags & H2_CF_RCVD_SHUT)
3760 h2c->flags |= H2_CF_ERROR;
3761 b_reset(br_tail(h2c->mbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003762 return 1;
3763 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003764
Willy Tarreau911db9b2020-01-23 16:27:54 +01003765 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003766 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003767 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003768 }
3769
Willy Tarreaubc933932017-10-09 16:21:43 +02003770 /* This loop is quite simple : it tries to fill as much as it can from
3771 * pending streams into the existing buffer until it's reportedly full
3772 * or the end of send requests is reached. Then it tries to send this
3773 * buffer's contents out, marks it not full if at least one byte could
3774 * be sent, and tries again.
3775 *
3776 * The snd_buf() function normally takes a "flags" argument which may
3777 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3778 * data immediately comes and CO_SFL_STREAMER to indicate that the
3779 * connection is streaming lots of data (used to increase TLS record
3780 * size at the expense of latency). The former can be sent any time
3781 * there's a buffer full flag, as it indicates at least one stream
3782 * attempted to send and failed so there are pending data. An
3783 * alternative would be to set it as long as there's an active stream
3784 * but that would be problematic for ACKs until we have an absolute
3785 * guarantee that all waiters have at least one byte to send. The
3786 * latter should possibly not be set for now.
3787 */
3788
3789 done = 0;
3790 while (!done) {
3791 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003792 unsigned int released = 0;
3793 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003794
3795 /* fill as much as we can into the current buffer */
3796 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3797 done = h2_process_mux(h2c);
3798
Olivier Houchard2b094432019-01-29 18:28:36 +01003799 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003800 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003801
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003802 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
Willy Tarreaue6dc7a02021-10-21 17:30:06 +02003803 (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003804 break;
3805
Christopher Faulet68ee7842022-10-12 10:21:33 +02003806 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM))
Willy Tarreaubc933932017-10-09 16:21:43 +02003807 flags |= CO_SFL_MSG_MORE;
3808
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003809 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3810 if (b_data(buf)) {
3811 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003812 if (!ret) {
3813 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003814 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003815 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003816 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003817 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003818 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003819 if (b_data(buf)) {
3820 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003821 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003822 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003823 }
3824 b_free(buf);
3825 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003826 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003827
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003828 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01003829 offer_buffers(NULL, released);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003830
Willy Tarreaubc933932017-10-09 16:21:43 +02003831 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003832 if (sent)
3833 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003834 }
3835
Christopher Fauletff7925d2022-10-11 19:12:40 +02003836 if (conn->flags & CO_FL_ERROR) {
3837 h2c->flags |= H2_CF_ERR_PENDING;
3838 if (h2c->flags & H2_CF_RCVD_SHUT)
3839 h2c->flags |= H2_CF_ERROR;
Willy Tarreau51330962019-05-26 09:38:07 +02003840 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003841 }
Christopher Fauletff7925d2022-10-11 19:12:40 +02003842
Olivier Houchard6ff20392018-07-17 18:46:31 +02003843 /* We're not full anymore, so we can wake any task that are waiting
3844 * for us.
3845 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003846 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3847 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003848
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003849 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003850 if (!br_data(h2c->mbuf)) {
3851 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003852 goto end;
Willy Tarreau7838a792019-08-12 18:42:03 +02003853 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003854schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003855 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3856 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003857 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003858 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003859 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003860end:
3861 return sent || (h2c->flags & (H2_CF_ERR_PENDING|H2_CF_ERROR));
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003862}
3863
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003864/* this is the tasklet referenced in h2c->wait_event.tasklet */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003865struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state)
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003866{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003867 struct connection *conn;
3868 struct tasklet *tl = (struct tasklet *)t;
3869 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003870 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003871 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003872
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003873 if (state & TASK_F_USR1) {
3874 /* the tasklet was idling on an idle connection, it might have
3875 * been stolen, let's be careful!
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003876 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003877 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3878 if (t->context == NULL) {
3879 /* The connection has been taken over by another thread,
3880 * we're no longer responsible for it, so just free the
3881 * tasklet, and do nothing.
3882 */
3883 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3884 tasklet_free(tl);
Willy Tarreau74163142021-03-13 11:30:19 +01003885 t = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003886 goto leave;
3887 }
3888 conn = h2c->conn;
3889 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003890
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003891 conn_in_list = conn->flags & CO_FL_LIST_MASK;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003892
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003893 /* Remove the connection from the list, to be sure nobody attempts
3894 * to use it while we handle the I/O events
3895 */
3896 if (conn_in_list)
3897 conn_delete_from_tree(&conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003898
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003899 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3900 } else {
3901 /* we're certain the connection was not in an idle list */
3902 conn = h2c->conn;
3903 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3904 conn_in_list = 0;
3905 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003906
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003907 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003908 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003909 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003910 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003911 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003912 ret = h2_process(h2c);
3913
3914 /* If we were in an idle list, we want to add it back into it,
3915 * unless h2_process() returned -1, which mean it has destroyed
3916 * the connection (testing !ret is enough, if h2_process() wasn't
3917 * called then ret will be 0 anyway.
3918 */
Willy Tarreau74163142021-03-13 11:30:19 +01003919 if (ret < 0)
3920 t = NULL;
3921
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003922 if (!ret && conn_in_list) {
3923 struct server *srv = objt_server(conn->target);
3924
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003925 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003926 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau85223482022-09-29 20:32:43 +02003927 eb64_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003928 else
Willy Tarreau85223482022-09-29 20:32:43 +02003929 eb64_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003930 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003931 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003932
Willy Tarreau38468772020-06-28 00:31:13 +02003933leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02003934 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreau74163142021-03-13 11:30:19 +01003935 return t;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003936}
Willy Tarreaua2af5122017-10-09 11:56:46 +02003937
Willy Tarreau62f52692017-10-08 23:01:42 +02003938/* callback called on any event by the connection handler.
3939 * It applies changes and returns zero, or < 0 if it wants immediate
3940 * destruction of the connection (which normally doesn not happen in h2).
3941 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003942static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003943{
Olivier Houchard7505f942018-08-21 18:10:44 +02003944 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003945
Willy Tarreau7838a792019-08-12 18:42:03 +02003946 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3947
Willy Tarreauf0961222021-02-05 11:41:46 +01003948 if (!(h2c->flags & H2_CF_DEM_BLOCK_ANY) &&
3949 (b_data(&h2c->dbuf) || (h2c->flags & H2_CF_RCVD_SHUT))) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003950 h2_process_demux(h2c);
3951
Christopher Fauletff7925d2022-10-11 19:12:40 +02003952 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_ERROR))
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003953 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003954
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003955 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003956 h2c->flags &= ~H2_CF_DEM_DFULL;
3957 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003958 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003959
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003960 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 +02003961 int send_goaway = 1;
3962 /* If a close-spread-time option is set, we want to avoid
3963 * closing all the active HTTP2 connections at once so we add a
3964 * random factor that will spread the closing.
3965 */
3966 if (tick_isset(global.close_spread_end)) {
3967 int remaining_window = tick_remain(now_ms, global.close_spread_end);
3968 if (remaining_window) {
3969 /* This should increase the closing rate the
3970 * further along the window we are. */
3971 send_goaway = (remaining_window <= statistical_prng_range(global.close_spread_time));
3972 }
3973 }
Remi Tricot-Le Breton4d7fdc62022-04-26 15:17:18 +02003974 else if (global.tune.options & GTUNE_DISABLE_ACTIVE_CLOSE)
3975 send_goaway = 0; /* let the client close his connection himself */
Willy Tarreau8ec14062017-12-30 18:08:13 +01003976 /* frontend is stopping, reload likely in progress, let's try
3977 * to announce a graceful shutdown if not yet done. We don't
3978 * care if it fails, it will be tried again later.
3979 */
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02003980 if (send_goaway) {
3981 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
3982 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3983 if (h2c->last_sid < 0)
3984 h2c->last_sid = (1U << 31) - 1;
3985 h2c_send_goaway_error(h2c, NULL);
3986 }
Willy Tarreau8ec14062017-12-30 18:08:13 +01003987 }
3988 }
3989
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003990 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003991 * If we received early data, and the handshake is done, wake
3992 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003993 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003994 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01003995 (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 +01003996 struct eb32_node *node;
3997 struct h2s *h2s;
3998
3999 h2c->flags |= H2_CF_WAIT_FOR_HS;
4000 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
4001
4002 while (node) {
4003 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004004 if (se_fl_test(h2s->sd, SE_FL_WAIT_FOR_HS))
Willy Tarreau7e094452018-12-19 18:08:52 +01004005 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004006 node = eb32_next(node);
4007 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004008 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004009
Christopher Fauletff7925d2022-10-11 19:12:40 +02004010 if ((h2c->flags & H2_CF_ERROR) || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01004011 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
4012 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
4013 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02004014 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004015
4016 if (eb_is_empty(&h2c->streams_by_id)) {
4017 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02004018 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004019 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004020 return -1;
4021 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004022
4023 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004024 if (conn->flags & CO_FL_LIST_MASK) {
4025 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004026 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004027 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4028 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004029 }
4030 else if (h2c->st0 == H2_CS_ERROR) {
4031 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004032 if (conn->flags & CO_FL_LIST_MASK) {
4033 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004034 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004035 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4036 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004037 }
4038
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004039 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01004040 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004041
Christopher Fauletff7925d2022-10-11 19:12:40 +02004042 if (h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
Olivier Houchard53216e72018-10-10 15:46:36 +02004043 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02004044 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02004045 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
4046 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02004047 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02004048
Willy Tarreau15a47332022-03-18 15:57:34 +01004049 h2c_update_timeout(h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +02004050 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004051 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004052 return 0;
4053}
4054
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004055/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004056static int h2_wake(struct connection *conn)
4057{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004058 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02004059 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004060
Willy Tarreau7838a792019-08-12 18:42:03 +02004061 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4062 ret = h2_process(h2c);
Willy Tarreau508f9892020-02-11 04:38:56 +01004063 if (ret >= 0)
4064 h2_wake_some_streams(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02004065 TRACE_LEAVE(H2_EV_H2C_WAKE);
4066 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004067}
4068
Willy Tarreauea392822017-10-31 10:02:25 +01004069/* Connection timeout management. The principle is that if there's no receipt
4070 * nor sending for a certain amount of time, the connection is closed. If the
4071 * MUX buffer still has lying data or is not allocatable, the connection is
4072 * immediately killed. If it's allocatable and empty, we attempt to send a
4073 * GOAWAY frame.
4074 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004075struct task *h2_timeout_task(struct task *t, void *context, unsigned int state)
Willy Tarreauea392822017-10-31 10:02:25 +01004076{
Olivier Houchard9f6af332018-05-25 14:04:04 +02004077 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01004078 int expired = tick_is_expired(t->expire, now_ms);
4079
Willy Tarreau7838a792019-08-12 18:42:03 +02004080 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
4081
Willy Tarreaubd42e922020-06-30 11:19:23 +02004082 if (h2c) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004083 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004084 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004085
4086 /* Somebody already stole the connection from us, so we should not
4087 * free it, we just have to free the task.
4088 */
4089 if (!t->context) {
4090 h2c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004091 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004092 goto do_leave;
4093 }
4094
4095
Willy Tarreaubd42e922020-06-30 11:19:23 +02004096 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004097 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004098 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
4099 return t;
4100 }
Willy Tarreauea392822017-10-31 10:02:25 +01004101
Willy Tarreaubd42e922020-06-30 11:19:23 +02004102 if (!h2c_may_expire(h2c)) {
4103 /* we do still have streams but all of them are idle, waiting
4104 * for the data layer, so we must not enforce the timeout here.
4105 */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004106 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004107 t->expire = TICK_ETERNITY;
4108 return t;
4109 }
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004110
Willy Tarreaubd42e922020-06-30 11:19:23 +02004111 /* We're about to destroy the connection, so make sure nobody attempts
4112 * to steal it from us.
4113 */
Willy Tarreaubd42e922020-06-30 11:19:23 +02004114 if (h2c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004115 conn_delete_from_tree(&h2c->conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004116
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004117 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004118 }
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004119
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004120do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02004121 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02004122
4123 if (!h2c) {
4124 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02004125 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02004126 return NULL;
4127 }
4128
4129 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01004130 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02004131 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01004132
Willy Tarreau662fafc2019-05-26 09:43:07 +02004133 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01004134 /* don't even try to send a GOAWAY, the buffer is stuck */
4135 h2c->flags |= H2_CF_GOAWAY_FAILED;
4136 }
4137
4138 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01004139 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01004140 if (h2c_send_goaway_error(h2c, NULL) <= 0)
4141 h2c->flags |= H2_CF_GOAWAY_FAILED;
4142
Willy Tarreau662fafc2019-05-26 09:43:07 +02004143 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004144 unsigned int released = 0;
4145 struct buffer *buf;
4146
4147 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
4148 if (b_data(buf)) {
4149 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
4150 if (!ret)
4151 break;
4152 b_del(buf, ret);
4153 if (b_data(buf))
4154 break;
4155 b_free(buf);
4156 released++;
4157 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02004158 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004159
4160 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01004161 offer_buffers(NULL, released);
Willy Tarreau787db9a2018-06-14 18:31:46 +02004162 }
Willy Tarreauea392822017-10-31 10:02:25 +01004163
Willy Tarreau4481e262019-10-31 15:36:30 +01004164 /* in any case this connection must not be considered idle anymore */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004165 if (h2c->conn->flags & CO_FL_LIST_MASK) {
4166 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004167 conn_delete_from_tree(&h2c->conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004168 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4169 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004170
Willy Tarreau0975f112018-03-29 15:22:59 +02004171 /* either we can release everything now or it will be done later once
4172 * the last stream closes.
4173 */
4174 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02004175 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01004176
Willy Tarreau7838a792019-08-12 18:42:03 +02004177 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01004178 return NULL;
4179}
4180
4181
Willy Tarreau62f52692017-10-08 23:01:42 +02004182/*******************************************/
4183/* functions below are used by the streams */
4184/*******************************************/
4185
4186/*
4187 * Attach a new stream to a connection
4188 * (Used for outgoing connections)
4189 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004190static int h2_attach(struct connection *conn, struct sedesc *sd, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02004191{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004192 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004193 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004194
Willy Tarreau7838a792019-08-12 18:42:03 +02004195 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004196 h2s = h2c_bck_stream_new(h2c, sd->sc, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004197 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004198 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Christopher Faulete00ad352021-12-16 14:44:31 +01004199 return -1;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004200 }
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004201
4202 /* the connection is not idle anymore, let's mark this */
4203 HA_ATOMIC_AND(&h2c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004204 xprt_set_used(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004205
Willy Tarreau7838a792019-08-12 18:42:03 +02004206 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Christopher Faulete00ad352021-12-16 14:44:31 +01004207 return 0;
Willy Tarreau62f52692017-10-08 23:01:42 +02004208}
4209
Willy Tarreau4596fe22022-05-17 19:07:51 +02004210/* Retrieves the first valid stream connector from this connection, or returns
4211 * NULL. We have to scan because we may have some orphan streams. It might be
Willy Tarreaufafd3982018-11-18 21:29:20 +01004212 * beneficial to scan backwards from the end to reduce the likeliness to find
4213 * orphans.
4214 */
Willy Tarreaud1373532022-05-27 11:00:59 +02004215static struct stconn *h2_get_first_sc(const struct connection *conn)
Willy Tarreaufafd3982018-11-18 21:29:20 +01004216{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004217 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004218 struct h2s *h2s;
4219 struct eb32_node *node;
4220
4221 node = eb32_first(&h2c->streams_by_id);
4222 while (node) {
4223 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau7be4ee02022-05-18 07:31:41 +02004224 if (h2s_sc(h2s))
4225 return h2s_sc(h2s);
Willy Tarreaufafd3982018-11-18 21:29:20 +01004226 node = eb32_next(node);
4227 }
4228 return NULL;
4229}
4230
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004231static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4232{
4233 int ret = 0;
4234 struct h2c *h2c = conn->ctx;
4235
4236 switch (mux_ctl) {
4237 case MUX_STATUS:
4238 /* Only consider the mux to be ready if we're done with
4239 * the preface and settings, and we had no error.
4240 */
4241 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4242 ret |= MUX_STATUS_READY;
4243 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02004244 case MUX_EXIT_STATUS:
4245 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004246 default:
4247 return -1;
4248 }
4249}
4250
Willy Tarreau62f52692017-10-08 23:01:42 +02004251/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004252 * Destroy the mux and the associated connection, if it is no longer used
4253 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004254static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004255{
Christopher Faulet73c12072019-04-08 11:23:22 +02004256 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004257
Willy Tarreau7838a792019-08-12 18:42:03 +02004258 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet4e610962022-04-14 11:23:50 +02004259 if (eb_is_empty(&h2c->streams_by_id)) {
4260 BUG_ON(h2c->conn->ctx != h2c);
Christopher Faulet73c12072019-04-08 11:23:22 +02004261 h2_release(h2c);
Christopher Faulet4e610962022-04-14 11:23:50 +02004262 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004263 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004264}
4265
4266/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004267 * Detach the stream from the connection and possibly release the connection.
4268 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004269static void h2_detach(struct sedesc *sd)
Willy Tarreau62f52692017-10-08 23:01:42 +02004270{
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004271 struct h2s *h2s = sd->se;
Willy Tarreau60935142017-10-16 18:11:19 +02004272 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004273 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004274
Willy Tarreau7838a792019-08-12 18:42:03 +02004275 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4276
Willy Tarreau7838a792019-08-12 18:42:03 +02004277 if (!h2s) {
4278 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004279 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004280 }
Willy Tarreau60935142017-10-16 18:11:19 +02004281
Willy Tarreaud9464162020-01-10 18:25:07 +01004282 /* there's no txbuf so we're certain not to be able to send anything */
4283 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004284
Olivier Houchardf502aca2018-12-14 19:42:40 +01004285 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004286 h2c = h2s->h2c;
Willy Tarreau36c22322022-05-27 10:41:24 +02004287 h2c->nb_sc--;
4288 if (!h2c->nb_sc)
Willy Tarreau15a47332022-03-18 15:57:34 +01004289 h2c->idle_start = now_ms;
4290
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004291 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
Willy Tarreau36c22322022-05-27 10:41:24 +02004292 !h2_frt_has_too_many_sc(h2c)) {
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004293 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004294 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004295 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004296 }
Willy Tarreau60935142017-10-16 18:11:19 +02004297
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004298 /* this stream may be blocked waiting for some data to leave (possibly
4299 * an ES or RST frame), so orphan it in this case.
4300 */
Christopher Fauletff7925d2022-10-11 19:12:40 +02004301 if (!(h2c->flags & (H2_CF_ERR_PENDING|H2_CF_ERROR)) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004302 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004303 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004304 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004305 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau15a47332022-03-18 15:57:34 +01004306 /* refresh the timeout if none was active, so that the last
4307 * leaving stream may arm it.
4308 */
4309 if (!tick_isset(h2c->task->expire))
4310 h2c_update_timeout(h2c);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004311 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004312 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004313
Christopher Faulet68ee7842022-10-12 10:21:33 +02004314 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi)) {
Willy Tarreau45f752e2017-10-30 15:44:59 +01004315 /* unblock the connection if it was blocked on this
4316 * stream.
4317 */
4318 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4319 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004320 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004321 }
4322
Willy Tarreau71049cc2018-03-28 13:56:39 +02004323 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004324
Christopher Faulet9b79a102019-07-15 11:22:56 +02004325 if (h2c->flags & H2_CF_IS_BACK) {
Christopher Fauletff7925d2022-10-11 19:12:40 +02004326 if (!(h2c->flags & (H2_CF_RCVD_SHUT|H2_CF_ERR_PENDING|H2_CF_ERROR))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004327 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004328 /* Add the connection in the session server list, if not already done */
4329 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4330 h2c->conn->owner = NULL;
4331 if (eb_is_empty(&h2c->streams_by_id)) {
4332 h2c->conn->mux->destroy(h2c);
4333 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4334 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004335 }
4336 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004337 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004338 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4339 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4340 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004341 return;
4342 }
4343 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004344 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004345 else {
4346 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004347 /* If the connection is owned by the session, first remove it
4348 * from its list
4349 */
4350 if (h2c->conn->owner) {
4351 session_unown_conn(h2c->conn->owner, h2c->conn);
4352 h2c->conn->owner = NULL;
4353 }
4354
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004355 /* mark that the tasklet may lose its context to another thread and
4356 * that the handler needs to check it under the idle conns lock.
4357 */
4358 HA_ATOMIC_OR(&h2c->wait_event.tasklet->state, TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004359 xprt_set_idle(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
4360
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004361 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004362 /* The server doesn't want it, let's kill the connection right away */
4363 h2c->conn->mux->destroy(h2c);
4364 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4365 return;
4366 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004367 /* At this point, the connection has been added to the
4368 * server idle list, so another thread may already have
4369 * hijacked it, so we can't do anything with it.
4370 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004371 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4372 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004373
Olivier Houchard8a786902018-12-15 16:05:40 +01004374 }
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004375 else if (!h2c->conn->hash_node->node.node.leaf_p &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004376 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02004377 !LIST_INLIST(&h2c->conn->session_list)) {
Willy Tarreau85223482022-09-29 20:32:43 +02004378 eb64_insert(&__objt_server(h2c->conn->target)->per_thr[tid].avail_conns,
4379 &h2c->conn->hash_node->node);
Christopher Fauletc5579d12020-07-01 15:45:41 +02004380 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004381 }
4382 }
4383 }
4384
Willy Tarreaue323f342018-03-28 13:51:45 +02004385 /* We don't want to close right now unless we're removing the
4386 * last stream, and either the connection is in error, or it
4387 * reached the ID already specified in a GOAWAY frame received
4388 * or sent (as seen by last_sid >= 0).
4389 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004390 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004391 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004392 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004393 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004394 }
4395 else if (h2c->task) {
Willy Tarreau15a47332022-03-18 15:57:34 +01004396 h2c_update_timeout(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004397 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004398 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004399 else
4400 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004401}
4402
Willy Tarreau88bdba32019-05-13 18:17:53 +02004403/* Performs a synchronous or asynchronous shutr(). */
4404static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004405{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004406 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004407
Willy Tarreauf983d002019-05-14 10:40:21 +02004408 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004409 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004410
Willy Tarreau7838a792019-08-12 18:42:03 +02004411 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4412
Willy Tarreau18059042019-01-31 19:12:48 +01004413 /* a connstream may require us to immediately kill the whole connection
4414 * for example because of a "tcp-request content reject" rule that is
4415 * normally used to limit abuse. In this case we schedule a goaway to
4416 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004417 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004418 if (se_fl_test(h2s->sd, SE_FL_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004419 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004420 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004421 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4422 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4423 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004424 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4425 /* Nothing was never sent for this stream, so reset with
4426 * REFUSED_STREAM error to let the client retry the
4427 * request.
4428 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004429 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004430 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4431 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004432 else {
4433 /* a final response was already provided, we don't want this
4434 * stream anymore. This may happen when the server responds
4435 * before the end of an upload and closes quickly (redirect,
4436 * deny, ...)
4437 */
4438 h2s_error(h2s, H2_ERR_CANCEL);
4439 }
Willy Tarreau18059042019-01-31 19:12:48 +01004440
Willy Tarreau90c32322017-11-24 08:00:30 +01004441 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004442 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004443 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004444
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004445 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004446 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004447 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004448 done:
4449 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004450 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004451 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004452add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004453 /* Let the handler know we want to shutr, and add ourselves to the
4454 * most relevant list if not yet done. h2_deferred_shut() will be
4455 * automatically called via the shut_tl tasklet when there's room
4456 * again.
4457 */
4458 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau2b718102021-04-21 07:32:39 +02004459 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004460 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004461 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004462 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004463 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004464 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004465 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004466 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004467}
4468
Willy Tarreau88bdba32019-05-13 18:17:53 +02004469/* Performs a synchronous or asynchronous shutw(). */
4470static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004471{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004472 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004473
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004474 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004475 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004476
Willy Tarreau7838a792019-08-12 18:42:03 +02004477 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4478
Willy Tarreau473e0e52022-08-18 16:12:15 +02004479 if (h2s->st != H2_SS_ERROR &&
4480 (h2s->flags & (H2_SF_HEADERS_SENT | H2_SF_MORE_HTX_DATA)) == H2_SF_HEADERS_SENT) {
4481 /* we can cleanly close using an empty data frame only after headers
4482 * and if no more data is expected to be sent.
4483 */
Willy Tarreau58e32082017-11-07 14:41:09 +01004484 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4485 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004486 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004487
4488 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004489 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004490 else
4491 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004492 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004493 /* a connstream may require us to immediately kill the whole connection
4494 * for example because of a "tcp-request content reject" rule that is
4495 * normally used to limit abuse. In this case we schedule a goaway to
4496 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004497 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004498 if (se_fl_test(h2s->sd, SE_FL_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004499 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004500 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004501 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4502 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4503 }
Willy Tarreau473e0e52022-08-18 16:12:15 +02004504 else if (h2s->flags & H2_SF_MORE_HTX_DATA) {
4505 /* some unsent data were pending (e.g. abort during an upload),
4506 * let's send a CANCEL.
4507 */
4508 TRACE_STATE("shutw before end of data, sending CANCEL", H2_EV_STRM_SHUT, h2c->conn, h2s);
4509 h2s_error(h2s, H2_ERR_CANCEL);
4510 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004511 else {
4512 /* Nothing was never sent for this stream, so reset with
4513 * REFUSED_STREAM error to let the client retry the
4514 * request.
4515 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004516 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004517 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4518 }
Willy Tarreau18059042019-01-31 19:12:48 +01004519
Willy Tarreau90c32322017-11-24 08:00:30 +01004520 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004521 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004522 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004523
Willy Tarreau00dd0782018-03-01 16:31:34 +01004524 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004525 }
4526
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004527 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004528 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004529
4530 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4531
Willy Tarreau88bdba32019-05-13 18:17:53 +02004532 done:
4533 h2s->flags &= ~H2_SF_WANT_SHUTW;
4534 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004535
4536 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004537 /* Let the handler know we want to shutw, and add ourselves to the
4538 * most relevant list if not yet done. h2_deferred_shut() will be
4539 * automatically called via the shut_tl tasklet when there's room
4540 * again.
4541 */
4542 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau2b718102021-04-21 07:32:39 +02004543 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004544 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004545 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004546 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004547 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004548 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004549 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004550 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004551}
4552
Willy Tarreau5723f292020-01-10 15:16:57 +01004553/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004554 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4555 * and prevented the last frame from being emitted.
4556 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004557struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004558{
4559 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004560 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004561
Willy Tarreau7838a792019-08-12 18:42:03 +02004562 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4563
Willy Tarreau5723f292020-01-10 15:16:57 +01004564 if (h2s->flags & H2_SF_NOTIFIED) {
4565 /* some data processing remains to be done first */
4566 goto end;
4567 }
4568
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004569 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004570 h2_do_shutw(h2s);
4571
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004572 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004573 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004574
Willy Tarreau88bdba32019-05-13 18:17:53 +02004575 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004576 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004577 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004578
Willy Tarreau7be4ee02022-05-18 07:31:41 +02004579 if (!h2s_sc(h2s)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004580 h2s_destroy(h2s);
Willy Tarreau74163142021-03-13 11:30:19 +01004581 if (h2c_is_dead(h2c)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004582 h2_release(h2c);
Willy Tarreau74163142021-03-13 11:30:19 +01004583 t = NULL;
4584 }
Willy Tarreau88bdba32019-05-13 18:17:53 +02004585 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004586 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004587 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004588 TRACE_LEAVE(H2_EV_STRM_SHUT);
Willy Tarreau74163142021-03-13 11:30:19 +01004589 return t;
Willy Tarreau62f52692017-10-08 23:01:42 +02004590}
4591
Willy Tarreau4596fe22022-05-17 19:07:51 +02004592/* shutr() called by the stream connector (mux_ops.shutr) */
Willy Tarreau36c22322022-05-27 10:41:24 +02004593static void h2_shutr(struct stconn *sc, enum co_shr_mode mode)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004594{
Willy Tarreau36c22322022-05-27 10:41:24 +02004595 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004596
Willy Tarreau7838a792019-08-12 18:42:03 +02004597 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004598 if (mode)
4599 h2_do_shutr(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004600 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004601}
4602
Willy Tarreau4596fe22022-05-17 19:07:51 +02004603/* shutw() called by the stream connector (mux_ops.shutw) */
Willy Tarreau36c22322022-05-27 10:41:24 +02004604static void h2_shutw(struct stconn *sc, enum co_shw_mode mode)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004605{
Willy Tarreau36c22322022-05-27 10:41:24 +02004606 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004607
Willy Tarreau7838a792019-08-12 18:42:03 +02004608 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004609 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004610 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004611}
4612
Christopher Faulet9b79a102019-07-15 11:22:56 +02004613/* Decode the payload of a HEADERS frame and produce the HTX request or response
4614 * depending on the connection's side. Returns a positive value on success, a
4615 * negative value on failure, or 0 if it couldn't proceed. May report connection
4616 * errors in h2c->errcode if the frame is non-decodable and the connection
4617 * unrecoverable. In absence of connection error when a failure is reported, the
4618 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004619 *
4620 * The function may fold CONTINUATION frames into the initial HEADERS frame
4621 * by removing padding and next frame header, then moving the CONTINUATION
4622 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4623 * leaving a hole between the main frame and the beginning of the next one.
4624 * The possibly remaining incomplete or next frame at the end may be moved
4625 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4626 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4627 *
4628 * A buffer at the beginning of processing may look like this :
4629 *
4630 * ,---.---------.-----.--------------.--------------.------.---.
4631 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4632 * `---^---------^-----^--------------^--------------^------^---'
4633 * | | <-----> | |
4634 * area | dpl | wrap
4635 * |<--------------> |
4636 * | dfl |
4637 * |<-------------------------------------------------->|
4638 * head data
4639 *
4640 * Padding is automatically overwritten when folding, participating to the
4641 * hole size after dfl :
4642 *
4643 * ,---.------------------------.-----.--------------.------.---.
4644 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4645 * `---^------------------------^-----^--------------^------^---'
4646 * | | <-----> | |
4647 * area | hole | wrap
4648 * |<-----------------------> |
4649 * | dfl |
4650 * |<-------------------------------------------------->|
4651 * head data
4652 *
4653 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4654 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4655 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004656 *
4657 * The <flags> field must point to either the stream's flags or to a copy of it
4658 * so that the function can update the following flags :
4659 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004660 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004661 *
4662 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4663 * decoding, in order to detect if we're dealing with a headers or a trailers
4664 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004665 */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01004666static 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 +02004667{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004668 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004669 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004670 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004671 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004672 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004673 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004674 int flen; // header frame len
4675 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004676 int ret = 0;
4677 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004678 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004679
Willy Tarreau7838a792019-08-12 18:42:03 +02004680 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4681
Willy Tarreauea18f862018-12-22 20:19:26 +01004682next_frame:
4683 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4684 goto leave; // incomplete input frame
4685
4686 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4687 * this case, we'll try to paste it immediately after the initial
4688 * HEADERS frame payload and kill any possible padding. The initial
4689 * frame's length will be increased to represent the concatenation
4690 * of the two frames. The next frame is read from position <tlen>
4691 * and written at position <flen> (minus padding if some is present).
4692 */
4693 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4694 struct h2_fh hdr;
4695 int clen; // CONTINUATION frame's payload length
4696
Willy Tarreau7838a792019-08-12 18:42:03 +02004697 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 +01004698 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4699 /* no more data, the buffer may be full, either due to
4700 * too large a frame or because of too large a hole that
4701 * we're going to compact at the end.
4702 */
4703 goto leave;
4704 }
4705
4706 if (hdr.ft != H2_FT_CONTINUATION) {
4707 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004708 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 +01004709 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004710 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004711 goto fail;
4712 }
4713
4714 if (hdr.sid != h2c->dsi) {
4715 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004716 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 +01004717 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004718 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004719 goto fail;
4720 }
4721
4722 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4723 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004724 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 +01004725 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4726 goto fail;
4727 }
4728
4729 /* detect when we must stop aggragating frames */
4730 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4731
4732 /* Take as much as we can of the CONTINUATION frame's payload */
4733 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4734 if (clen > hdr.len)
4735 clen = hdr.len;
4736
4737 /* Move the frame's payload over the padding, hole and frame
4738 * header. At least one of hole or dpl is null (see diagrams
4739 * above). The hole moves after the new aggragated frame.
4740 */
4741 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 +02004742 h2c->dfl += hdr.len - h2c->dpl;
Willy Tarreauea18f862018-12-22 20:19:26 +01004743 hole += h2c->dpl + 9;
4744 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004745 TRACE_STATE("waiting for next continuation frame", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_RX_CONT|H2_EV_RX_HDR, h2c->conn);
Willy Tarreauea18f862018-12-22 20:19:26 +01004746 goto next_frame;
4747 }
4748
4749 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004750
Willy Tarreau13278b42017-10-13 19:23:14 +02004751 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004752 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004753 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004754 copy = alloc_trash_chunk();
4755 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004756 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 +02004757 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4758 goto fail;
4759 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004760 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4761 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4762 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004763 }
4764
Willy Tarreau13278b42017-10-13 19:23:14 +02004765 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4766 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004767 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004768 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004769 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 +01004770 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004771 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004772 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004773 }
4774
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004775 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004776 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 +01004777 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4778 goto fail;
4779 }
4780
Willy Tarreau13278b42017-10-13 19:23:14 +02004781 hdrs += 5; // stream dep = 4, weight = 1
4782 flen -= 5;
4783 }
4784
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004785 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004786 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 +01004787 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004788 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004789 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004790
Willy Tarreau937f7602018-02-26 15:22:17 +01004791 /* we can't retry a failed decompression operation so we must be very
4792 * careful not to take any risks. In practice the output buffer is
4793 * always empty except maybe for trailers, in which case we simply have
4794 * to wait for the upper layer to finish consuming what is available.
4795 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004796 htx = htx_from_buf(rxbuf);
4797 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004798 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 +02004799 h2c->flags |= H2_CF_DEM_SFULL;
4800 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004801 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004802
Willy Tarreau25919232019-01-03 14:48:18 +01004803 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004804 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4805 sizeof(list)/sizeof(list[0]), tmp);
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01004806
4807 if (outlen > 0 &&
4808 (TRACE_SOURCE)->verbosity >= H2_VERB_ADVANCED &&
4809 TRACE_ENABLED(TRACE_LEVEL_USER, H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, 0, 0, 0)) {
4810 struct ist n;
4811 int i;
4812
4813 for (i = 0; list[i].n.len; i++) {
4814 n = list[i].n;
4815
4816 if (!isttest(n)) {
4817 /* this is in fact a pseudo header whose number is in n.len */
4818 n = h2_phdr_to_ist(n.len);
4819 }
4820
4821 h2_trace_header(n, list[i].v, H2_EV_RX_FRAME|H2_EV_RX_HDR,
4822 ist(TRC_LOC), __FUNCTION__, h2c, NULL);
4823 }
4824 }
4825
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004826 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004827 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 +01004828 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4829 goto fail;
4830 }
4831
Willy Tarreau25919232019-01-03 14:48:18 +01004832 /* The PACK decompressor was updated, let's update the input buffer and
4833 * the parser's state to commit these changes and allow us to later
4834 * fail solely on the stream if needed.
4835 */
4836 b_del(&h2c->dbuf, h2c->dfl + hole);
4837 h2c->dfl = hole = 0;
4838 h2c->st0 = H2_CS_FRAME_H;
4839
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004840 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004841 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Christopher Fauletd0db4232021-01-22 11:46:30 +01004842 msgf |= (*flags & H2_SF_BODY_TUNNEL) ? H2_MSGF_BODY_TUNNEL: 0;
Amaury Denoyelle74162742020-12-11 17:53:05 +01004843 /* If an Extended CONNECT has been sent on this stream, set message flag
Ilya Shipitsinacf84592021-02-06 22:29:08 +05004844 * to convert 200 response to 101 htx response */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004845 msgf |= (*flags & H2_SF_EXT_CONNECT_SENT) ? H2_MSGF_EXT_CONNECT: 0;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004846
Willy Tarreau88d138e2019-01-02 19:38:14 +01004847 if (*flags & H2_SF_HEADERS_RCVD)
4848 goto trailers;
4849
4850 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004851 if (h2c->flags & H2_CF_IS_BACK)
Amaury Denoyelle74162742020-12-11 17:53:05 +01004852 outlen = h2_make_htx_response(list, htx, &msgf, body_len, upgrade_protocol);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004853 else
4854 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004855
Christopher Faulet3d875582021-04-26 17:46:13 +02004856 if (outlen < 0 || htx_free_space(htx) < global.tune.maxrewrite) {
Willy Tarreau25919232019-01-03 14:48:18 +01004857 /* too large headers? this is a stream error only */
Christopher Faulet3d875582021-04-26 17:46:13 +02004858 TRACE_STATE("message headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
4859 htx->flags |= HTX_FL_PARSING_ERROR;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004860 goto fail;
4861 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004862
Willy Tarreau174b06a2018-04-25 18:13:58 +02004863 if (msgf & H2_MSGF_BODY) {
4864 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004865 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004866 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004867 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004868 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004869 }
Christopher Faulet7d247f02020-12-02 14:26:36 +01004870 if (msgf & H2_MSGF_BODYLESS_RSP)
4871 *flags |= H2_SF_BODYLESS_RESP;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004872
Christopher Fauletd0db4232021-01-22 11:46:30 +01004873 if (msgf & H2_MSGF_BODY_TUNNEL)
4874 *flags |= H2_SF_BODY_TUNNEL;
4875 else {
4876 /* Abort the tunnel attempt, if any */
4877 if (*flags & H2_SF_BODY_TUNNEL)
4878 *flags |= H2_SF_TUNNEL_ABRT;
4879 *flags &= ~H2_SF_BODY_TUNNEL;
4880 }
4881
Willy Tarreau88d138e2019-01-02 19:38:14 +01004882 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004883 /* indicate that a HEADERS frame was received for this stream, except
4884 * for 1xx responses. For 1xx responses, another HEADERS frame is
4885 * expected.
4886 */
4887 if (!(msgf & H2_MSGF_RSP_1XX))
4888 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004889
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004890 if (h2c->dff & H2_F_HEADERS_END_STREAM) {
Christopher Faulet827a6292022-12-22 09:47:01 +01004891 if (msgf & H2_MSGF_RSP_1XX) {
4892 /* RFC9113#8.1 : HEADERS frame with the ES flag set that carries an informational status code is malformed */
4893 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);
4894 goto fail;
4895 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004896 /* no more data are expected for this message */
4897 htx->flags |= HTX_FL_EOM;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004898 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004899
Amaury Denoyelleefe22762020-12-11 17:53:08 +01004900 if (msgf & H2_MSGF_EXT_CONNECT)
4901 *flags |= H2_SF_EXT_CONNECT_RCVD;
4902
Willy Tarreau86277d42019-01-02 15:36:11 +01004903 /* success */
4904 ret = 1;
4905
Willy Tarreau68dd9852017-07-03 14:44:26 +02004906 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004907 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004908 * move the remaining data over it.
4909 */
4910 if (hole) {
4911 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4912 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4913 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4914 b_sub(&h2c->dbuf, hole);
4915 }
4916
Christopher Faulet07f88d72021-04-21 10:39:53 +02004917 if (b_full(&h2c->dbuf) && h2c->dfl) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004918 /* too large frames */
4919 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004920 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004921 }
4922
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004923 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004924 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004925 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004926 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004927 return ret;
4928
Willy Tarreau68dd9852017-07-03 14:44:26 +02004929 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004930 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004931 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004932
4933 trailers:
4934 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004935 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4936 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004937 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 +01004938 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004939 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau88d138e2019-01-02 19:38:14 +01004940 goto fail;
4941 }
4942
Christopher Faulet9b79a102019-07-15 11:22:56 +02004943 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02004944 if (h2_make_htx_trailers(list, htx) <= 0) {
4945 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 +02004946 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004947 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004948 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02004949}
4950
Christopher Faulet9b79a102019-07-15 11:22:56 +02004951/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004952 * parser state is automatically updated. Returns > 0 if it could completely
4953 * send the current frame, 0 if it couldn't complete, in which case
Willy Tarreaub605c422022-05-17 17:04:55 +02004954 * SE_FL_RCV_MORE must be checked to know if some data remain pending (an empty
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004955 * DATA frame can return 0 as a valid result). Stream errors are reported in
4956 * h2s->errcode and connection errors in h2c->errcode. The caller must already
4957 * have checked the frame header and ensured that the frame was complete or the
4958 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02004959 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01004960static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02004961{
4962 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004963 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004964 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004965 struct htx *htx = NULL;
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02004966 struct buffer *scbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004967 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02004968
Willy Tarreau7838a792019-08-12 18:42:03 +02004969 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
4970
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004971 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02004972
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02004973 scbuf = h2_get_buf(h2c, &h2s->rxbuf);
4974 if (!scbuf) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004975 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02004976 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 +01004977 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004978 }
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02004979 htx = htx_from_buf(scbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004980
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004981try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004982 flen = h2c->dfl - h2c->dpl;
4983 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01004984 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004985
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004986 if (flen > b_data(&h2c->dbuf)) {
4987 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004988 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01004989 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004990 }
4991
Christopher Faulet9b79a102019-07-15 11:22:56 +02004992 block = htx_free_data_space(htx);
4993 if (!block) {
4994 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004995 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 +02004996 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004997 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004998 if (flen > block)
4999 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005000
Christopher Faulet9b79a102019-07-15 11:22:56 +02005001 /* here, flen is the max we can copy into the output buffer */
5002 block = b_contig_data(&h2c->dbuf, 0);
5003 if (flen > block)
5004 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005005
Christopher Faulet9b79a102019-07-15 11:22:56 +02005006 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02005007 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 +02005008
Christopher Faulet9b79a102019-07-15 11:22:56 +02005009 b_del(&h2c->dbuf, sent);
5010 h2c->dfl -= sent;
5011 h2c->rcvd_c += sent;
5012 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02005013
Christopher Faulet9b79a102019-07-15 11:22:56 +02005014 if (h2s->flags & H2_SF_DATA_CLEN) {
5015 h2s->body_len -= sent;
5016 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005017 }
5018
Christopher Faulet9b79a102019-07-15 11:22:56 +02005019 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01005020 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005021 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 +01005022 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005023 }
5024
Christopher Faulet9b79a102019-07-15 11:22:56 +02005025 goto try_again;
5026
Willy Tarreau4a28da12018-01-04 14:41:00 +01005027 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005028 /* here we're done with the frame, all the payload (except padding) was
5029 * transferred.
5030 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02005031
Christopher Faulet5be651d2021-01-22 15:28:03 +01005032 if (!(h2s->flags & H2_SF_BODY_TUNNEL) && (h2c->dff & H2_F_DATA_END_STREAM)) {
5033 /* no more data are expected for this message. This add the EOM
5034 * flag but only on the response path or if no tunnel attempt
5035 * was aborted. Otherwise (request path + tunnel abrted), the
5036 * EOM was already reported.
5037 */
Christopher Faulet33724322021-02-10 09:04:59 +01005038 if ((h2c->flags & H2_CF_IS_BACK) || !(h2s->flags & H2_SF_TUNNEL_ABRT)) {
5039 /* If we receive an empty DATA frame with ES flag while the HTX
5040 * message is empty, we must be sure to push a block to be sure
5041 * the HTX EOM flag will be handled on the other side. It is a
5042 * workaround because for now it is not possible to push empty
5043 * HTX DATA block. And without this block, there is no way to
5044 * "commit" the end of the message.
5045 */
5046 if (htx_is_empty(htx)) {
5047 if (!htx_add_endof(htx, HTX_BLK_EOT))
5048 goto fail;
5049 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005050 htx->flags |= HTX_FL_EOM;
Christopher Faulet33724322021-02-10 09:04:59 +01005051 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02005052 }
5053
Willy Tarreaud1023bb2018-03-22 16:53:12 +01005054 h2c->rcvd_c += h2c->dpl;
5055 h2c->rcvd_s += h2c->dpl;
5056 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005057 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005058 htx_to_buf(htx, scbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005059 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005060 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01005061 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005062 if (htx)
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005063 htx_to_buf(htx, scbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005064 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01005065 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005066}
5067
Willy Tarreau115e83b2018-12-01 19:17:53 +01005068/* Try to send a HEADERS frame matching HTX response present in HTX message
5069 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5070 * must check the stream's status to detect any error which might have happened
5071 * subsequently to a successful send. The htx blocks are automatically removed
5072 * from the message. The htx message is assumed to be valid since produced from
5073 * the internal code, hence it contains a start line, an optional series of
5074 * header blocks and an end of header, otherwise an invalid frame could be
5075 * emitted and the resulting htx message could be left in an inconsistent state.
5076 */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01005077static size_t h2s_snd_fhdrs(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005078{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005079 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01005080 struct h2c *h2c = h2s->h2c;
5081 struct htx_blk *blk;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005082 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005083 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005084 struct htx_sl *sl;
5085 enum htx_blk_type type;
5086 int es_now = 0;
5087 int ret = 0;
5088 int hdr;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005089
Willy Tarreau7838a792019-08-12 18:42:03 +02005090 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5091
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005092 /* get the start line (we do have one) and the rest of the headers,
5093 * that we dump starting at header 0 */
5094 sl = NULL;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005095 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005096 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005097 type = htx_get_blk_type(blk);
5098
5099 if (type == HTX_BLK_UNUSED)
5100 continue;
5101
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005102 if (type == HTX_BLK_EOH)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005103 break;
5104
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005105 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005106 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005107 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5108 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5109 goto fail;
5110 }
5111
5112 list[hdr].n = htx_get_blk_name(htx, blk);
5113 list[hdr].v = htx_get_blk_value(htx, blk);
5114 hdr++;
5115 }
5116 else if (type == HTX_BLK_RES_SL) {
Christopher Faulet56498132021-01-29 11:39:43 +01005117 BUG_ON(sl); /* Only one start-line expected */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005118 sl = htx_get_blk_ptr(htx, blk);
5119 h2s->status = sl->info.res.status;
Christopher Faulet7d247f02020-12-02 14:26:36 +01005120 if (h2s->status == 204 || h2s->status == 304)
5121 h2s->flags |= H2_SF_BODYLESS_RESP;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005122 if (h2s->status < 100 || h2s->status > 999) {
5123 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5124 goto fail;
5125 }
5126 else if (h2s->status == 101) {
Amaury Denoyelleefe22762020-12-11 17:53:08 +01005127 if (unlikely(h2s->flags & H2_SF_EXT_CONNECT_RCVD)) {
5128 /* If an Extended CONNECT has been received, we need to convert 101 to 200 */
5129 h2s->status = 200;
5130 h2s->flags &= ~H2_SF_EXT_CONNECT_RCVD;
5131 }
5132 else {
5133 /* Otherwise, 101 responses are not supported in H2, so return a error (RFC7540#8.1.1) */
5134 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5135 goto fail;
5136 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005137 }
5138 else if ((h2s->flags & H2_SF_BODY_TUNNEL) && h2s->status >= 300) {
5139 /* Abort the tunnel attempt */
5140 h2s->flags &= ~H2_SF_BODY_TUNNEL;
5141 h2s->flags |= H2_SF_TUNNEL_ABRT;
5142 }
5143 }
5144 else {
5145 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 +01005146 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005147 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005148 }
5149
Christopher Faulet56498132021-01-29 11:39:43 +01005150 /* The start-line me be defined */
5151 BUG_ON(!sl);
5152
Willy Tarreau115e83b2018-12-01 19:17:53 +01005153 /* marker for end of headers */
5154 list[hdr].n = ist("");
5155
Willy Tarreau9c218e72019-05-26 10:08:28 +02005156 mbuf = br_tail(h2c->mbuf);
5157 retry:
5158 if (!h2_get_buf(h2c, mbuf)) {
5159 h2c->flags |= H2_CF_MUX_MALLOC;
5160 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005161 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 +02005162 return 0;
5163 }
5164
Willy Tarreau115e83b2018-12-01 19:17:53 +01005165 chunk_reset(&outbuf);
5166
5167 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005168 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5169 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005170 break;
5171 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005172 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01005173 }
5174
5175 if (outbuf.size < 9)
5176 goto full;
5177
5178 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5179 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5180 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5181 outbuf.data = 9;
5182
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005183 if ((h2c->flags & (H2_CF_SHTS_UPDATED|H2_CF_DTSU_EMITTED)) == H2_CF_SHTS_UPDATED) {
5184 /* SETTINGS_HEADER_TABLE_SIZE changed, we must send an HPACK
5185 * dynamic table size update so that some clients are not
5186 * confused. In practice we only need to send the DTSU when the
5187 * advertised size is lower than the current one, and since we
5188 * don't use it and don't care about the default 4096 bytes,
5189 * we only ack it with a zero size thus we at most have to deal
5190 * with this once. See RFC7541#4.2 and #6.3 for the spec, and
5191 * below for the whole context and interoperability risks:
5192 * https://lists.w3.org/Archives/Public/ietf-http-wg/2021OctDec/0235.html
5193 */
5194 if (b_room(&outbuf) < 1)
5195 goto full;
5196 outbuf.area[outbuf.data++] = 0x20; // HPACK DTSU 0 bytes
5197
5198 /* let's not update the flags now but only once the buffer is
5199 * really committed.
5200 */
5201 }
5202
Willy Tarreau115e83b2018-12-01 19:17:53 +01005203 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01005204 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005205 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005206 goto realign_again;
5207 goto full;
5208 }
5209
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005210 if ((TRACE_SOURCE)->verbosity >= H2_VERB_ADVANCED) {
5211 char sts[4];
5212
5213 h2_trace_header(ist(":status"), ist(ultoa_r(h2s->status, sts, sizeof(sts))),
5214 H2_EV_TX_FRAME|H2_EV_TX_HDR, ist(TRC_LOC), __FUNCTION__,
5215 h2c, h2s);
5216 }
5217
Willy Tarreau115e83b2018-12-01 19:17:53 +01005218 /* encode all headers, stop at empty name */
5219 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5220 /* these ones do not exist in H2 and must be dropped. */
5221 if (isteq(list[hdr].n, ist("connection")) ||
5222 isteq(list[hdr].n, ist("proxy-connection")) ||
5223 isteq(list[hdr].n, ist("keep-alive")) ||
5224 isteq(list[hdr].n, ist("upgrade")) ||
5225 isteq(list[hdr].n, ist("transfer-encoding")))
5226 continue;
5227
Christopher Faulet86d144c2019-08-14 16:32:25 +02005228 /* Skip all pseudo-headers */
5229 if (*(list[hdr].n.ptr) == ':')
5230 continue;
5231
Willy Tarreau115e83b2018-12-01 19:17:53 +01005232 if (isteq(list[hdr].n, ist("")))
5233 break; // end
5234
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005235 if (!h2_encode_header(&outbuf, list[hdr].n, list[hdr].v, H2_EV_TX_FRAME|H2_EV_TX_HDR,
5236 ist(TRC_LOC), __FUNCTION__, h2c, h2s)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005237 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005238 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005239 goto realign_again;
5240 goto full;
5241 }
5242 }
5243
Willy Tarreaucb985a42019-10-07 16:56:34 +02005244 /* update the frame's size */
5245 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5246
5247 if (outbuf.data > h2c->mfs + 9) {
5248 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5249 /* output full */
5250 if (b_space_wraps(mbuf))
5251 goto realign_again;
5252 goto full;
5253 }
5254 }
5255
Willy Tarreau3a537072021-06-17 08:40:04 +02005256 TRACE_USER("sent H2 response ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5257
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005258 /* remove all header blocks including the EOH and compute the
5259 * corresponding size.
Willy Tarreau115e83b2018-12-01 19:17:53 +01005260 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005261 ret = 0;
5262 blk = htx_get_head_blk(htx);
5263 while (blk) {
5264 type = htx_get_blk_type(blk);
5265 ret += htx_get_blksz(blk);
5266 blk = htx_remove_blk(htx, blk);
5267 /* The removed block is the EOH */
5268 if (type == HTX_BLK_EOH)
5269 break;
Christopher Faulet5be651d2021-01-22 15:28:03 +01005270 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005271
Willy Tarreau95acc8b2022-05-27 16:14:10 +02005272 if (!h2s_sc(h2s) || se_fl_test(h2s->sd, SE_FL_SHW)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005273 /* Response already closed: add END_STREAM */
5274 es_now = 1;
5275 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005276 else if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && h2s->status >= 200) {
5277 /* EOM+empty: we may need to add END_STREAM except for 1xx
Christopher Faulet991febd2020-12-02 15:17:31 +01005278 * responses and tunneled response.
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005279 */
Christopher Faulet991febd2020-12-02 15:17:31 +01005280 if (!(h2s->flags & H2_SF_BODY_TUNNEL) || h2s->status >= 300)
5281 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005282 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005283
Willy Tarreau115e83b2018-12-01 19:17:53 +01005284 if (es_now)
5285 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5286
5287 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005288 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01005289
5290 /* indicates the HEADERS frame was sent, except for 1xx responses. For
5291 * 1xx responses, another HEADERS frame is expected.
5292 */
Christopher Faulet89899422020-12-07 18:24:43 +01005293 if (h2s->status >= 200)
Christopher Faulet0b465482019-02-19 15:14:23 +01005294 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005295
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005296 if (h2c->flags & H2_CF_SHTS_UPDATED) {
5297 /* was sent above */
5298 h2c->flags |= H2_CF_DTSU_EMITTED;
Willy Tarreauc7d85482022-02-16 14:28:14 +01005299 h2c->flags &= ~H2_CF_SHTS_UPDATED;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005300 }
5301
Willy Tarreau115e83b2018-12-01 19:17:53 +01005302 if (es_now) {
5303 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005304 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 +01005305 if (h2s->st == H2_SS_OPEN)
5306 h2s->st = H2_SS_HLOC;
5307 else
5308 h2s_close(h2s);
5309 }
5310
5311 /* OK we could properly deliver the response */
Willy Tarreau115e83b2018-12-01 19:17:53 +01005312 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005313 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005314 return ret;
5315 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005316 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5317 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005318 h2c->flags |= H2_CF_MUX_MFULL;
5319 h2s->flags |= H2_SF_BLK_MROOM;
5320 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005321 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 +01005322 goto end;
5323 fail:
5324 /* unparsable HTX messages, too large ones to be produced in the local
5325 * list etc go here (unrecoverable errors).
5326 */
5327 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5328 ret = 0;
5329 goto end;
5330}
5331
Willy Tarreau80739692018-10-05 11:35:57 +02005332/* Try to send a HEADERS frame matching HTX request present in HTX message
5333 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5334 * must check the stream's status to detect any error which might have happened
5335 * subsequently to a successful send. The htx blocks are automatically removed
5336 * from the message. The htx message is assumed to be valid since produced from
5337 * the internal code, hence it contains a start line, an optional series of
5338 * header blocks and an end of header, otherwise an invalid frame could be
5339 * emitted and the resulting htx message could be left in an inconsistent state.
5340 */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01005341static size_t h2s_snd_bhdrs(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005342{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005343 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005344 struct h2c *h2c = h2s->h2c;
5345 struct htx_blk *blk;
Willy Tarreau80739692018-10-05 11:35:57 +02005346 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005347 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005348 struct htx_sl *sl;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005349 struct ist meth, uri, auth, host = IST_NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005350 enum htx_blk_type type;
5351 int es_now = 0;
5352 int ret = 0;
5353 int hdr;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005354 int extended_connect = 0;
Willy Tarreau80739692018-10-05 11:35:57 +02005355
Willy Tarreau7838a792019-08-12 18:42:03 +02005356 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5357
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005358 /* get the start line (we do have one) and the rest of the headers,
5359 * that we dump starting at header 0 */
5360 sl = NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005361 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005362 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005363 type = htx_get_blk_type(blk);
5364
5365 if (type == HTX_BLK_UNUSED)
5366 continue;
5367
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005368 if (type == HTX_BLK_EOH)
Willy Tarreau80739692018-10-05 11:35:57 +02005369 break;
5370
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005371 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005372 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005373 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5374 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5375 goto fail;
5376 }
Willy Tarreau80739692018-10-05 11:35:57 +02005377
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005378 list[hdr].n = htx_get_blk_name(htx, blk);
5379 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005380
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005381 /* Skip header if same name is used to add the server name */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005382 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name) &&
5383 isteq(list[hdr].n, h2c->proxy->server_id_hdr_name))
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005384 continue;
Christopher Faulet67d58092019-10-02 10:51:38 +02005385
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005386 /* Convert connection: upgrade to Extended connect from rfc 8441 */
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005387 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteqi(list[hdr].n, ist("connection"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005388 /* rfc 7230 #6.1 Connection = list of tokens */
5389 struct ist connection_ist = list[hdr].v;
5390 do {
5391 if (isteqi(iststop(connection_ist, ','),
5392 ist("upgrade"))) {
Amaury Denoyelle0df04362021-10-18 09:43:29 +02005393 if (!(h2c->flags & H2_CF_RCVD_RFC8441)) {
5394 TRACE_STATE("reject upgrade because of no RFC8441 support", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5395 goto fail;
5396 }
5397
Amaury Denoyellee0c258c2021-10-18 10:05:16 +02005398 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 +01005399 h2s->flags |= (H2_SF_BODY_TUNNEL|H2_SF_EXT_CONNECT_SENT);
5400 sl->info.req.meth = HTTP_METH_CONNECT;
5401 meth = ist("CONNECT");
5402
5403 extended_connect = 1;
5404 break;
5405 }
5406
5407 connection_ist = istadv(istfind(connection_ist, ','), 1);
5408 } while (istlen(connection_ist));
5409 }
5410
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005411 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteq(list[hdr].n, ist("upgrade"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005412 /* rfc 7230 #6.7 Upgrade = list of protocols
5413 * rfc 8441 #4 Extended connect = :protocol is single-valued
5414 *
5415 * only first HTTP/1 protocol is preserved
5416 */
5417 const struct ist protocol = iststop(list[hdr].v, ',');
5418 /* upgrade_protocol field is 16 bytes long in h2s */
5419 istpad(h2s->upgrade_protocol, isttrim(protocol, 15));
5420 }
5421
5422 if (isteq(list[hdr].n, ist("host")))
5423 host = list[hdr].v;
5424
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005425 hdr++;
5426 }
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005427 else if (type == HTX_BLK_REQ_SL) {
5428 BUG_ON(sl); /* Only one start-line expected */
5429 sl = htx_get_blk_ptr(htx, blk);
5430 meth = htx_sl_req_meth(sl);
5431 uri = htx_sl_req_uri(sl);
5432 if (sl->info.req.meth == HTTP_METH_HEAD)
5433 h2s->flags |= H2_SF_BODYLESS_RESP;
5434 if (unlikely(uri.len == 0)) {
5435 TRACE_ERROR("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5436 goto fail;
5437 }
5438 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005439 else {
5440 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5441 goto fail;
5442 }
Willy Tarreau80739692018-10-05 11:35:57 +02005443 }
5444
Christopher Faulet56498132021-01-29 11:39:43 +01005445 /* The start-line me be defined */
5446 BUG_ON(!sl);
5447
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005448 /* Now add the server name to a header (if requested) */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005449 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name)) {
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005450 struct server *srv = objt_server(h2c->conn->target);
5451
5452 if (srv) {
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005453 list[hdr].n = h2c->proxy->server_id_hdr_name;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005454 list[hdr].v = ist(srv->id);
5455 hdr++;
5456 }
5457 }
5458
Willy Tarreau80739692018-10-05 11:35:57 +02005459 /* marker for end of headers */
5460 list[hdr].n = ist("");
5461
Willy Tarreau9c218e72019-05-26 10:08:28 +02005462 mbuf = br_tail(h2c->mbuf);
5463 retry:
5464 if (!h2_get_buf(h2c, mbuf)) {
5465 h2c->flags |= H2_CF_MUX_MALLOC;
5466 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005467 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 +02005468 return 0;
5469 }
5470
Willy Tarreau80739692018-10-05 11:35:57 +02005471 chunk_reset(&outbuf);
5472
5473 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005474 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5475 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005476 break;
5477 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005478 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005479 }
5480
5481 if (outbuf.size < 9)
5482 goto full;
5483
5484 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5485 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5486 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5487 outbuf.data = 9;
5488
5489 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005490 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005491 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005492 goto realign_again;
5493 goto full;
5494 }
5495
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005496 h2_trace_header(ist(":method"), meth, H2_EV_TX_FRAME|H2_EV_TX_HDR, ist(TRC_LOC), __FUNCTION__, h2c, h2s);
5497
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005498 auth = ist(NULL);
5499
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005500 /* RFC7540 #8.3: the CONNECT method must have :
5501 * - :authority set to the URI part (host:port)
5502 * - :method set to CONNECT
5503 * - :scheme and :path omitted
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005504 *
5505 * Note that this is not applicable in case of the Extended CONNECT
5506 * protocol from rfc 8441.
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005507 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005508 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT) && !extended_connect) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005509 auth = uri;
5510
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005511 if (!h2_encode_header(&outbuf, ist(":authority"), auth, H2_EV_TX_FRAME|H2_EV_TX_HDR,
5512 ist(TRC_LOC), __FUNCTION__, h2c, h2s)) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005513 /* output full */
5514 if (b_space_wraps(mbuf))
5515 goto realign_again;
5516 goto full;
5517 }
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005518
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005519 h2s->flags |= H2_SF_BODY_TUNNEL;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005520 } else {
5521 /* other methods need a :scheme. If an authority is known from
5522 * the request line, it must be sent, otherwise only host is
5523 * sent. Host is never sent as the authority.
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005524 *
5525 * This code is also applicable for Extended CONNECT protocol
5526 * from rfc 8441.
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005527 */
5528 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005529
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005530 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5531 /* the URI seems to start with a scheme */
5532 int len = 1;
5533
5534 while (len < uri.len && uri.ptr[len] != ':')
5535 len++;
5536
5537 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5538 /* make the uri start at the authority now */
Tim Duesterhus9f75ed12021-03-02 18:57:26 +01005539 scheme = ist2(uri.ptr, len);
Tim Duesterhus154374c2021-03-02 18:57:27 +01005540 uri = istadv(uri, len + 3);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005541
5542 /* find the auth part of the URI */
Tim Duesterhus92c696e2021-02-28 16:11:36 +01005543 auth = ist2(uri.ptr, 0);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005544 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5545 auth.len++;
5546
Tim Duesterhus154374c2021-03-02 18:57:27 +01005547 uri = istadv(uri, auth.len);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005548 }
5549 }
5550
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005551 /* For Extended CONNECT, the :authority must be present.
5552 * Use host value for it.
5553 */
5554 if (unlikely(extended_connect) && isttest(host))
5555 auth = host;
5556
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005557 if (!scheme.len) {
5558 /* no explicit scheme, we're using an origin-form URI,
5559 * probably from an H1 request transcoded to H2 via an
5560 * external layer, then received as H2 without authority.
5561 * So we have to look up the scheme from the HTX flags.
5562 * In such a case only http and https are possible, and
5563 * https is the default (sent by browsers).
5564 */
5565 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5566 scheme = ist("http");
5567 else
5568 scheme = ist("https");
5569 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005570
5571 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005572 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005573 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005574 goto realign_again;
5575 goto full;
5576 }
Willy Tarreau80739692018-10-05 11:35:57 +02005577
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005578 if (auth.len &&
5579 !h2_encode_header(&outbuf, ist(":authority"), auth, H2_EV_TX_FRAME|H2_EV_TX_HDR,
5580 ist(TRC_LOC), __FUNCTION__, h2c, h2s)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005581 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005582 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005583 goto realign_again;
5584 goto full;
5585 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005586
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005587 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5588 * be sent as '/' or '*'.
5589 */
5590 if (unlikely(!uri.len)) {
5591 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5592 uri = ist("*");
5593 else
5594 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005595 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005596
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005597 if (!hpack_encode_path(&outbuf, uri)) {
5598 /* output full */
5599 if (b_space_wraps(mbuf))
5600 goto realign_again;
5601 goto full;
5602 }
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005603
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005604 h2_trace_header(ist(":path"), uri, H2_EV_TX_FRAME|H2_EV_TX_HDR, ist(TRC_LOC), __FUNCTION__, h2c, h2s);
5605
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005606 /* encode the pseudo-header protocol from rfc8441 if using
5607 * Extended CONNECT method.
5608 */
5609 if (unlikely(extended_connect)) {
5610 const struct ist protocol = ist(h2s->upgrade_protocol);
5611 if (isttest(protocol)) {
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005612 if (!h2_encode_header(&outbuf, ist(":protocol"), protocol, H2_EV_TX_FRAME|H2_EV_TX_HDR,
5613 ist(TRC_LOC), __FUNCTION__, h2c, h2s)) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005614 /* output full */
5615 if (b_space_wraps(mbuf))
5616 goto realign_again;
5617 goto full;
5618 }
5619 }
5620 }
Willy Tarreau80739692018-10-05 11:35:57 +02005621 }
5622
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005623 /* encode all headers, stop at empty name. Host is only sent if we
5624 * do not provide an authority.
5625 */
Willy Tarreau80739692018-10-05 11:35:57 +02005626 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005627 struct ist n = list[hdr].n;
5628 struct ist v = list[hdr].v;
5629
Willy Tarreau80739692018-10-05 11:35:57 +02005630 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005631 if (isteq(n, ist("connection")) ||
5632 (auth.len && isteq(n, ist("host"))) ||
5633 isteq(n, ist("proxy-connection")) ||
5634 isteq(n, ist("keep-alive")) ||
5635 isteq(n, ist("upgrade")) ||
5636 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005637 continue;
5638
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005639 if (isteq(n, ist("te"))) {
5640 /* "te" may only be sent with "trailers" if this value
5641 * is present, otherwise it must be deleted.
5642 */
5643 v = istist(v, ist("trailers"));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01005644 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005645 continue;
5646 v = ist("trailers");
5647 }
5648
Christopher Faulet86d144c2019-08-14 16:32:25 +02005649 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005650 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005651 continue;
5652
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005653 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005654 break; // end
5655
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005656 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 +02005657 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005658 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005659 goto realign_again;
5660 goto full;
5661 }
5662 }
5663
Willy Tarreaucb985a42019-10-07 16:56:34 +02005664 /* update the frame's size */
5665 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5666
5667 if (outbuf.data > h2c->mfs + 9) {
5668 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5669 /* output full */
5670 if (b_space_wraps(mbuf))
5671 goto realign_again;
5672 goto full;
5673 }
5674 }
5675
Willy Tarreau3a537072021-06-17 08:40:04 +02005676 TRACE_USER("sent H2 request ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5677
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005678 /* remove all header blocks including the EOH and compute the
5679 * corresponding size.
Willy Tarreau80739692018-10-05 11:35:57 +02005680 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005681 ret = 0;
5682 blk = htx_get_head_blk(htx);
5683 while (blk) {
5684 type = htx_get_blk_type(blk);
5685 ret += htx_get_blksz(blk);
5686 blk = htx_remove_blk(htx, blk);
5687 /* The removed block is the EOH */
5688 if (type == HTX_BLK_EOH)
5689 break;
Christopher Fauletd0db4232021-01-22 11:46:30 +01005690 }
Willy Tarreau80739692018-10-05 11:35:57 +02005691
Willy Tarreau95acc8b2022-05-27 16:14:10 +02005692 if (!h2s_sc(h2s) || se_fl_test(h2s->sd, SE_FL_SHW)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005693 /* Request already closed: add END_STREAM */
Willy Tarreau80739692018-10-05 11:35:57 +02005694 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005695 }
5696 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5697 /* EOM+empty: we may need to add END_STREAM (except for CONNECT
5698 * request)
5699 */
5700 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5701 es_now = 1;
5702 }
Willy Tarreau80739692018-10-05 11:35:57 +02005703
Willy Tarreau80739692018-10-05 11:35:57 +02005704 if (es_now)
5705 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5706
5707 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005708 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005709 h2s->flags |= H2_SF_HEADERS_SENT;
5710 h2s->st = H2_SS_OPEN;
5711
Willy Tarreau80739692018-10-05 11:35:57 +02005712 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005713 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 +02005714 // trim any possibly pending data (eg: inconsistent content-length)
5715 h2s->flags |= H2_SF_ES_SENT;
5716 h2s->st = H2_SS_HLOC;
5717 }
5718
Willy Tarreau80739692018-10-05 11:35:57 +02005719 end:
5720 return ret;
5721 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005722 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5723 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005724 h2c->flags |= H2_CF_MUX_MFULL;
5725 h2s->flags |= H2_SF_BLK_MROOM;
5726 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005727 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 +02005728 goto end;
5729 fail:
5730 /* unparsable HTX messages, too large ones to be produced in the local
5731 * list etc go here (unrecoverable errors).
5732 */
5733 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5734 ret = 0;
5735 goto end;
5736}
5737
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005738/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005739 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5740 * caller must check the stream's status to detect any error which might have
5741 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005742 * consumed, or zero if nothing done.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005743 */
Christopher Faulet142854b2020-12-02 15:12:40 +01005744static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005745{
5746 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005747 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005748 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005749 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005750 size_t total = 0;
5751 int es_now = 0;
5752 int bsize; /* htx block size */
5753 int fsize; /* h2 frame size */
5754 struct htx_blk *blk;
5755 enum htx_blk_type type;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005756 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005757
Willy Tarreau7838a792019-08-12 18:42:03 +02005758 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5759
Willy Tarreau98de12a2018-12-12 07:03:00 +01005760 htx = htx_from_buf(buf);
5761
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005762 /* We only come here with HTX_BLK_DATA blocks */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005763
5764 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005765 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005766 goto end;
5767
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005768 if ((h2c->flags & H2_CF_IS_BACK) &&
Christopher Fauletf95f8762021-01-22 11:59:07 +01005769 (h2s->flags & (H2_SF_HEADERS_RCVD|H2_SF_BODY_TUNNEL)) == H2_SF_BODY_TUNNEL) {
5770 /* The response HEADERS frame not received yet. Thus the tunnel
5771 * is not fully established yet. In this situation, we block
5772 * data sending.
5773 */
5774 h2s->flags |= H2_SF_BLK_MBUSY;
5775 TRACE_STATE("Request DATA frame blocked waiting for tunnel establishment", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5776 goto end;
5777 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01005778 else if ((h2c->flags & H2_CF_IS_BACK) && (h2s->flags & H2_SF_TUNNEL_ABRT)) {
5779 /* a tunnel attempt was aborted but the is pending raw data to xfer to the server.
5780 * Thus the stream is closed with the CANCEL error. The error will be reported to
5781 * the upper layer as aserver abort. But at this stage there is nothing more we can
5782 * do. We just wait for the end of the response to be sure to not truncate it.
5783 */
5784 if (!(h2s->flags & H2_SF_ES_RCVD)) {
5785 TRACE_STATE("Request DATA frame blocked waiting end of aborted tunnel", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5786 h2s->flags |= H2_SF_BLK_MBUSY;
5787 }
5788 else {
5789 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5790 h2s_error(h2s, H2_ERR_CANCEL);
5791 }
5792 goto end;
5793 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005794
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005795 blk = htx_get_head_blk(htx);
5796 type = htx_get_blk_type(blk);
5797 bsize = htx_get_blksz(blk);
5798 fsize = bsize;
5799 trunc_out = 0;
5800 if (type != HTX_BLK_DATA)
5801 goto end;
5802
Willy Tarreau9c218e72019-05-26 10:08:28 +02005803 mbuf = br_tail(h2c->mbuf);
5804 retry:
5805 if (!h2_get_buf(h2c, mbuf)) {
5806 h2c->flags |= H2_CF_MUX_MALLOC;
5807 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005808 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 +02005809 goto end;
5810 }
5811
Willy Tarreau98de12a2018-12-12 07:03:00 +01005812 /* Perform some optimizations to reduce the number of buffer copies.
5813 * First, if the mux's buffer is empty and the htx area contains
5814 * exactly one data block of the same size as the requested count, and
5815 * this count fits within the frame size, the stream's window size, and
5816 * the connection's window size, then it's possible to simply swap the
5817 * caller's buffer with the mux's output buffer and adjust offsets and
5818 * length to match the entire DATA HTX block in the middle. In this
5819 * case we perform a true zero-copy operation from end-to-end. This is
5820 * the situation that happens all the time with large files. Second, if
5821 * this is not possible, but the mux's output buffer is empty, we still
5822 * have an opportunity to avoid the copy to the intermediary buffer, by
5823 * making the intermediary buffer's area point to the output buffer's
5824 * area. In this case we want to skip the HTX header to make sure that
5825 * copies remain aligned and that this operation remains possible all
5826 * the time. This goes for headers, data blocks and any data extracted
5827 * from the HTX blocks.
5828 */
5829 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005830 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005831 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005832 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005833
Willy Tarreaubcc45952019-05-26 10:05:50 +02005834 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005835 /* Too bad there are data left there. We're willing to memcpy/memmove
5836 * up to 1/4 of the buffer, which means that it's OK to copy a large
5837 * frame into a buffer containing few data if it needs to be realigned,
5838 * and that it's also OK to copy few data without realigning. Otherwise
5839 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005840 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005841 if (fsize + 9 <= b_room(mbuf) &&
5842 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005843 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5844 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 +01005845 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005846 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005847
Willy Tarreau9c218e72019-05-26 10:08:28 +02005848 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5849 goto retry;
5850
Willy Tarreau98de12a2018-12-12 07:03:00 +01005851 h2c->flags |= H2_CF_MUX_MFULL;
5852 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005853 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 +01005854 goto end;
5855 }
5856
Christopher Faulet925abdf2021-04-27 22:51:07 +02005857 if (htx->flags & HTX_FL_EOM) {
5858 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5859 * message)
5860 */
5861 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5862 es_now = 1;
5863 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005864 /* map an H2 frame to the HTX block so that we can put the
5865 * frame header there.
5866 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005867 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5868 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005869
5870 /* prepend an H2 DATA frame header just before the DATA block */
5871 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5872 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
Christopher Faulet925abdf2021-04-27 22:51:07 +02005873 if (es_now)
5874 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005875 h2_set_frame_size(outbuf.area, fsize);
5876
5877 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005878 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005879 h2c->mws -= fsize;
5880
5881 /* and exchange with our old area */
5882 buf->area = old_area;
5883 buf->data = buf->head = 0;
5884 total += fsize;
Christopher Faulet925abdf2021-04-27 22:51:07 +02005885 fsize = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005886
5887 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 +02005888 goto out;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005889 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005890
Willy Tarreau98de12a2018-12-12 07:03:00 +01005891 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005892 /* for DATA and EOM we'll have to emit a frame, even if empty */
5893
5894 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005895 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5896 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005897 break;
5898 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005899 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005900 }
5901
5902 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005903 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5904 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005905 h2c->flags |= H2_CF_MUX_MFULL;
5906 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005907 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005908 goto end;
5909 }
5910
5911 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5912 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5913 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5914 outbuf.data = 9;
5915
5916 /* we have in <fsize> the exact number of bytes we need to copy from
5917 * the HTX buffer. We need to check this against the connection's and
5918 * the stream's send windows, and to ensure that this fits in the max
5919 * frame size and in the buffer's available space minus 9 bytes (for
5920 * the frame header). The connection's flow control is applied last so
5921 * that we can use a separate list of streams which are immediately
5922 * unblocked on window opening. Note: we don't implement padding.
5923 */
5924
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005925 if (!fsize)
5926 goto send_empty;
5927
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005928 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005929 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreau2b718102021-04-21 07:32:39 +02005930 if (LIST_INLIST(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005931 LIST_DEL_INIT(&h2s->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02005932 LIST_APPEND(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005933 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 +01005934 goto end;
5935 }
5936
Willy Tarreauee573762018-12-04 15:25:57 +01005937 if (fsize > count)
5938 fsize = count;
5939
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005940 if (fsize > h2s_mws(h2s))
5941 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005942
5943 if (h2c->mfs && fsize > h2c->mfs)
5944 fsize = h2c->mfs; // >0
5945
5946 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005947 /* It doesn't fit at once. If it at least fits once split and
5948 * the amount of data to move is low, let's defragment the
5949 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005950 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005951 if (b_space_wraps(mbuf) &&
5952 (fsize + 9 <= b_room(mbuf)) &&
5953 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005954 goto realign_again;
5955 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005956 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005957
5958 if (fsize <= 0) {
5959 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005960 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5961 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005962 h2c->flags |= H2_CF_MUX_MFULL;
5963 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005964 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005965 goto end;
5966 }
5967 }
5968
5969 if (h2c->mws <= 0) {
5970 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005971 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 +01005972 goto end;
5973 }
5974
5975 if (fsize > h2c->mws)
5976 fsize = h2c->mws;
5977
5978 /* now let's copy this this into the output buffer */
5979 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005980 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005981 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005982 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005983
5984 send_empty:
5985 /* update the frame's size */
5986 h2_set_frame_size(outbuf.area, fsize);
5987
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005988 /* consume incoming HTX block */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005989 total += fsize;
5990 if (fsize == bsize) {
5991 htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005992 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5993 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5994 * message)
5995 */
5996 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5997 es_now = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02005998 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005999 }
6000 else {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006001 /* we've truncated this block */
6002 htx_cut_data_blk(htx, blk, fsize);
6003 }
6004
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006005 if (es_now)
6006 outbuf.area[4] |= H2_F_DATA_END_STREAM;
6007
6008 /* commit the H2 response */
6009 b_add(mbuf, fsize + 9);
6010
Christopher Faulet925abdf2021-04-27 22:51:07 +02006011 out:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006012 if (es_now) {
6013 if (h2s->st == H2_SS_OPEN)
6014 h2s->st = H2_SS_HLOC;
6015 else
6016 h2s_close(h2s);
6017
6018 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02006019 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 +01006020 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006021 else if (fsize) {
6022 if (fsize == bsize) {
6023 TRACE_DEVEL("more data may be available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6024 goto new_frame;
6025 }
6026 else if (trunc_out) {
6027 /* we've truncated this block */
6028 goto new_frame;
6029 }
6030 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006031
6032 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006033 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006034 return total;
6035}
6036
Christopher Faulet991febd2020-12-02 15:17:31 +01006037/* Skip the message payload (DATA blocks) and emit an empty DATA frame with the
6038 * ES flag set for stream <h2s>. This function is called for response known to
6039 * have no payload. Only DATA blocks are skipped. This means the trailers are
Ilya Shipitsinacf84592021-02-06 22:29:08 +05006040 * still emitted. The caller must check the stream's status to detect any error
Christopher Faulet991febd2020-12-02 15:17:31 +01006041 * which might have happened subsequently to a successful send. Returns the
6042 * number of data bytes consumed, or zero if nothing done.
6043 */
6044static size_t h2s_skip_data(struct h2s *h2s, struct buffer *buf, size_t count)
6045{
6046 struct h2c *h2c = h2s->h2c;
6047 struct htx *htx;
6048 int bsize; /* htx block size */
6049 int fsize; /* h2 frame size */
6050 struct htx_blk *blk;
6051 enum htx_blk_type type;
6052 size_t total = 0;
6053
6054 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6055
Christopher Faulet991febd2020-12-02 15:17:31 +01006056 htx = htx_from_buf(buf);
6057
6058 next_data:
6059 if (!count || htx_is_empty(htx))
6060 goto end;
6061 blk = htx_get_head_blk(htx);
6062 type = htx_get_blk_type(blk);
6063 bsize = htx_get_blksz(blk);
6064 fsize = bsize;
6065 if (type != HTX_BLK_DATA)
6066 goto end;
6067
6068 if (fsize > count)
6069 fsize = count;
6070
6071 if (fsize != bsize)
6072 goto skip_data;
6073
6074 if (!(htx->flags & HTX_FL_EOM) || !htx_is_unique_blk(htx, blk))
6075 goto skip_data;
6076
6077 /* Here, it is the last block and it is also the end of the message. So
6078 * we can emit an empty DATA frame with the ES flag set
6079 */
6080 if (h2_send_empty_data_es(h2s) <= 0)
6081 goto end;
6082
6083 if (h2s->st == H2_SS_OPEN)
6084 h2s->st = H2_SS_HLOC;
6085 else
6086 h2s_close(h2s);
6087
6088 skip_data:
6089 /* consume incoming HTX block */
6090 total += fsize;
6091 if (fsize == bsize) {
6092 TRACE_DEVEL("more data may be available, trying to skip another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6093 htx_remove_blk(htx, blk);
6094 goto next_data;
6095 }
6096 else {
6097 /* we've truncated this block */
6098 htx_cut_data_blk(htx, blk, fsize);
6099 }
6100
6101 end:
6102 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6103 return total;
6104}
6105
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006106/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
6107 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
6108 * processed. The caller must check the stream's status to detect any error
6109 * which might have happened subsequently to a successful send. The htx blocks
6110 * are automatically removed from the message. The htx message is assumed to be
6111 * valid since produced from the internal code. Processing stops when meeting
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006112 * the EOT, which *is* removed. All trailers are processed at once and sent as a
6113 * single frame. The ES flag is always set.
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006114 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006115static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006116{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02006117 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006118 struct h2c *h2c = h2s->h2c;
6119 struct htx_blk *blk;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006120 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02006121 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006122 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006123 int ret = 0;
6124 int hdr;
6125 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006126
Willy Tarreau7838a792019-08-12 18:42:03 +02006127 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
6128
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006129 /* get trailers. */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006130 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006131 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006132 type = htx_get_blk_type(blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006133
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006134 if (type == HTX_BLK_UNUSED)
6135 continue;
6136
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006137 if (type == HTX_BLK_EOT)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006138 break;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006139 if (type == HTX_BLK_TLR) {
6140 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
6141 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
6142 goto fail;
6143 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006144
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006145 list[hdr].n = htx_get_blk_name(htx, blk);
6146 list[hdr].v = htx_get_blk_value(htx, blk);
6147 hdr++;
6148 }
6149 else {
6150 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 +01006151 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02006152 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006153 }
6154
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006155 /* marker for end of trailers */
6156 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006157
Willy Tarreau9c218e72019-05-26 10:08:28 +02006158 mbuf = br_tail(h2c->mbuf);
6159 retry:
6160 if (!h2_get_buf(h2c, mbuf)) {
6161 h2c->flags |= H2_CF_MUX_MALLOC;
6162 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006163 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 +02006164 goto end;
6165 }
6166
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006167 chunk_reset(&outbuf);
6168
6169 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006170 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6171 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006172 break;
6173 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006174 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006175 }
6176
6177 if (outbuf.size < 9)
6178 goto full;
6179
6180 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
6181 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
6182 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6183 outbuf.data = 9;
6184
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006185 /* encode all headers */
6186 for (idx = 0; idx < hdr; idx++) {
6187 /* these ones do not exist in H2 or must not appear in
6188 * trailers and must be dropped.
6189 */
6190 if (isteq(list[idx].n, ist("host")) ||
6191 isteq(list[idx].n, ist("content-length")) ||
6192 isteq(list[idx].n, ist("connection")) ||
6193 isteq(list[idx].n, ist("proxy-connection")) ||
6194 isteq(list[idx].n, ist("keep-alive")) ||
6195 isteq(list[idx].n, ist("upgrade")) ||
6196 isteq(list[idx].n, ist("te")) ||
6197 isteq(list[idx].n, ist("transfer-encoding")))
6198 continue;
6199
Christopher Faulet86d144c2019-08-14 16:32:25 +02006200 /* Skip all pseudo-headers */
6201 if (*(list[idx].n.ptr) == ':')
6202 continue;
6203
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01006204 if (!h2_encode_header(&outbuf, list[idx].n, list[idx].v, H2_EV_TX_FRAME|H2_EV_TX_HDR,
6205 ist(TRC_LOC), __FUNCTION__, h2c, h2s)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006206 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006207 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006208 goto realign_again;
6209 goto full;
6210 }
6211 }
6212
Willy Tarreau5121e5d2019-05-06 15:13:41 +02006213 if (outbuf.data == 9) {
6214 /* here we have a problem, we have nothing to emit (either we
6215 * received an empty trailers block followed or we removed its
6216 * contents above). Because of this we can't send a HEADERS
6217 * frame, so we have to cheat and instead send an empty DATA
6218 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01006219 */
6220 outbuf.area[3] = H2_FT_DATA;
6221 outbuf.area[4] = H2_F_DATA_END_STREAM;
6222 }
6223
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006224 /* update the frame's size */
6225 h2_set_frame_size(outbuf.area, outbuf.data - 9);
6226
Willy Tarreau572d9f52019-10-11 16:58:37 +02006227 if (outbuf.data > h2c->mfs + 9) {
6228 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
6229 /* output full */
6230 if (b_space_wraps(mbuf))
6231 goto realign_again;
6232 goto full;
6233 }
6234 }
6235
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006236 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02006237 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 +02006238 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006239 h2s->flags |= H2_SF_ES_SENT;
6240
6241 if (h2s->st == H2_SS_OPEN)
6242 h2s->st = H2_SS_HLOC;
6243 else
6244 h2s_close(h2s);
6245
6246 /* OK we could properly deliver the response */
6247 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02006248 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006249 ret = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006250 blk = htx_get_head_blk(htx);
6251 while (blk) {
6252 type = htx_get_blk_type(blk);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006253 ret += htx_get_blksz(blk);
6254 blk = htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006255 /* The removed block is the EOT */
6256 if (type == HTX_BLK_EOT)
6257 break;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006258 }
6259
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006260 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006261 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006262 return ret;
6263 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02006264 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6265 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006266 h2c->flags |= H2_CF_MUX_MFULL;
6267 h2s->flags |= H2_SF_BLK_MROOM;
6268 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006269 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 +01006270 goto end;
6271 fail:
6272 /* unparsable HTX messages, too large ones to be produced in the local
6273 * list etc go here (unrecoverable errors).
6274 */
6275 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
6276 ret = 0;
6277 goto end;
6278}
6279
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006280/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6281 * event subscriber <es> is not allowed to change from a previous call as long
6282 * as at least one event is still subscribed. The <event_type> must only be a
6283 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006284 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006285static int h2_subscribe(struct stconn *sc, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02006286{
Willy Tarreau36c22322022-05-27 10:41:24 +02006287 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02006288 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006289
Willy Tarreau7838a792019-08-12 18:42:03 +02006290 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006291
6292 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006293 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006294
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006295 es->events |= event_type;
6296 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006297
6298 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006299 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006300
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006301 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006302 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02006303 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02006304 !LIST_INLIST(&h2s->list)) {
Olivier Houchardf8338152019-05-14 17:50:32 +02006305 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02006306 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Olivier Houchardf8338152019-05-14 17:50:32 +02006307 else
Willy Tarreau2b718102021-04-21 07:32:39 +02006308 LIST_APPEND(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02006309 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02006310 }
Willy Tarreau7838a792019-08-12 18:42:03 +02006311 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006312 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006313}
6314
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006315/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6316 * The <es> pointer is not allowed to differ from the one passed to the
6317 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006318 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006319static int h2_unsubscribe(struct stconn *sc, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006320{
Willy Tarreau36c22322022-05-27 10:41:24 +02006321 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006322
Willy Tarreau7838a792019-08-12 18:42:03 +02006323 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006324
6325 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006326 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006327
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006328 es->events &= ~event_type;
6329 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01006330 h2s->subs = NULL;
6331
6332 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006333 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006334
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006335 if (event_type & SUB_RETRY_SEND) {
Frédéric Lécaille67fda162022-06-30 12:01:54 +02006336 TRACE_DEVEL("unsubscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006337 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006338 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
6339 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02006340 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01006341
Willy Tarreau7838a792019-08-12 18:42:03 +02006342 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006343 return 0;
6344}
6345
6346
Christopher Faulet564e39c2021-09-21 15:50:55 +02006347/* Called from the upper layer, to receive data
6348 *
6349 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
6350 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
6351 * means the caller wants to flush input data (from the mux buffer and the
6352 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
6353 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
6354 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
6355 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
6356 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
6357 * copy as much data as possible.
6358 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006359static size_t h2_rcv_buf(struct stconn *sc, struct buffer *buf, size_t count, int flags)
Olivier Houchard511efea2018-08-16 15:30:32 +02006360{
Willy Tarreau36c22322022-05-27 10:41:24 +02006361 struct h2s *h2s = __sc_mux_strm(sc);
Willy Tarreau082f5592018-11-25 08:03:32 +01006362 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01006363 struct htx *h2s_htx = NULL;
6364 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02006365 size_t ret = 0;
6366
Willy Tarreau7838a792019-08-12 18:42:03 +02006367 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
6368
Olivier Houchard511efea2018-08-16 15:30:32 +02006369 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006370 h2s_htx = htx_from_buf(&h2s->rxbuf);
Christopher Fauletec361bb2022-02-21 15:12:54 +01006371 if (htx_is_empty(h2s_htx) && !(h2s_htx->flags & HTX_FL_PARSING_ERROR)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02006372 /* Here htx_to_buf() will set buffer data to 0 because
6373 * the HTX is empty.
6374 */
6375 htx_to_buf(h2s_htx, &h2s->rxbuf);
6376 goto end;
6377 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01006378
Christopher Faulet9b79a102019-07-15 11:22:56 +02006379 ret = h2s_htx->data;
6380 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01006381
Christopher Faulet9b79a102019-07-15 11:22:56 +02006382 /* <buf> is empty and the message is small enough, swap the
6383 * buffers. */
6384 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01006385 htx_to_buf(buf_htx, buf);
6386 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006387 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
6388 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01006389 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02006390
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006391 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_UNUSED);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006392
6393 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
6394 buf_htx->flags |= HTX_FL_PARSING_ERROR;
6395 if (htx_is_empty(buf_htx))
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006396 se_fl_set(h2s->sd, SE_FL_EOI);
Willy Tarreau86724e22018-12-01 23:19:43 +01006397 }
Christopher Faulet810df062020-07-22 16:20:34 +02006398 else if (htx_is_empty(h2s_htx))
Christopher Faulet42432f32020-11-20 17:43:16 +01006399 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006400
Christopher Faulet9b79a102019-07-15 11:22:56 +02006401 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
6402 htx_to_buf(buf_htx, buf);
6403 htx_to_buf(h2s_htx, &h2s->rxbuf);
6404 ret -= h2s_htx->data;
6405
Christopher Faulet37070b22019-02-14 15:12:14 +01006406 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02006407 if (b_data(&h2s->rxbuf))
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006408 se_fl_set(h2s->sd, SE_FL_RCV_MORE | SE_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006409 else {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006410 se_fl_clr(h2s->sd, SE_FL_RCV_MORE | SE_FL_WANT_ROOM);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006411 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006412 se_fl_set(h2s->sd, SE_FL_EOI);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006413 /* Add EOS flag for tunnel */
6414 if (h2s->flags & H2_SF_BODY_TUNNEL)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006415 se_fl_set(h2s->sd, SE_FL_EOS);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006416 }
Christopher Fauletaade4ed2020-10-08 15:38:41 +02006417 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006418 se_fl_set(h2s->sd, SE_FL_EOS);
6419 if (se_fl_test(h2s->sd, SE_FL_ERR_PENDING))
6420 se_fl_set(h2s->sd, SE_FL_ERROR);
Olivier Houchard638b7992018-08-16 15:41:52 +02006421 if (b_size(&h2s->rxbuf)) {
6422 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01006423 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02006424 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006425 }
6426
Willy Tarreau082f5592018-11-25 08:03:32 +01006427 if (ret && h2c->dsi == h2s->id) {
6428 /* demux is blocking on this stream's buffer */
6429 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006430 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006431 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006432
Willy Tarreau7838a792019-08-12 18:42:03 +02006433 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006434 return ret;
6435}
6436
Olivier Houchardd846c262018-10-19 17:24:29 +02006437
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006438/* Called from the upper layer, to send data from buffer <buf> for no more than
6439 * <count> bytes. Returns the number of bytes effectively sent. Some status
Willy Tarreau4596fe22022-05-17 19:07:51 +02006440 * flags may be updated on the stream connector.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006441 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006442static size_t h2_snd_buf(struct stconn *sc, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006443{
Willy Tarreau36c22322022-05-27 10:41:24 +02006444 struct h2s *h2s = __sc_mux_strm(sc);
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006445 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006446 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006447 struct htx *htx;
6448 struct htx_blk *blk;
6449 enum htx_blk_type btype;
6450 uint32_t bsize;
6451 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006452
Willy Tarreau7838a792019-08-12 18:42:03 +02006453 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6454
Olivier Houchardd360ac62019-03-22 17:37:16 +01006455 /* If we were not just woken because we wanted to send but couldn't,
6456 * and there's somebody else that is waiting to send, do nothing,
6457 * we will subscribe later and be put at the end of the list
6458 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006459 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006460 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6461 TRACE_DEVEL("other streams already waiting, going to the queue and leaving", H2_EV_H2S_SEND|H2_EV_H2S_BLK, h2s->h2c->conn, h2s);
Olivier Houchardd360ac62019-03-22 17:37:16 +01006462 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006463 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006464 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006465
Willy Tarreau7838a792019-08-12 18:42:03 +02006466 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6467 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 +02006468 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006469 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006470
Willy Tarreaucab22952019-10-31 15:48:18 +01006471 if (h2s->h2c->st0 >= H2_CS_ERROR) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006472 se_fl_set(h2s->sd, SE_FL_ERROR);
Willy Tarreaucab22952019-10-31 15:48:18 +01006473 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);
6474 return 0;
6475 }
6476
Christopher Faulet9b79a102019-07-15 11:22:56 +02006477 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006478
Willy Tarreau0bad0432018-06-14 16:54:01 +02006479 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006480 h2s->flags |= H2_SF_OUTGOING_DATA;
6481
Christopher Faulet2e47e3a2023-01-13 11:40:24 +01006482 if (htx->extra && htx->extra != HTX_UNKOWN_PAYLOAD_LENGTH)
Willy Tarreau48770452022-08-18 16:03:51 +02006483 h2s->flags |= H2_SF_MORE_HTX_DATA;
6484 else
6485 h2s->flags &= ~H2_SF_MORE_HTX_DATA;
6486
Willy Tarreau751f2d02018-10-05 09:35:00 +02006487 if (h2s->id == 0) {
6488 int32_t id = h2c_get_next_sid(h2s->h2c);
6489
6490 if (id < 0) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006491 se_fl_set(h2s->sd, SE_FL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02006492 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 +02006493 return 0;
6494 }
6495
6496 eb32_delete(&h2s->by_id);
6497 h2s->by_id.key = h2s->id = id;
6498 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006499 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006500 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6501 }
6502
Christopher Faulet9b79a102019-07-15 11:22:56 +02006503 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6504 count && !htx_is_empty(htx)) {
6505 idx = htx_get_head(htx);
6506 blk = htx_get_blk(htx, idx);
6507 btype = htx_get_blk_type(blk);
6508 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006509
Christopher Faulet9b79a102019-07-15 11:22:56 +02006510 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006511 case HTX_BLK_REQ_SL:
6512 /* start-line before headers */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01006513 ret = h2s_snd_bhdrs(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006514 if (ret > 0) {
6515 total += ret;
6516 count -= ret;
6517 if (ret < bsize)
6518 goto done;
6519 }
6520 break;
6521
Willy Tarreau115e83b2018-12-01 19:17:53 +01006522 case HTX_BLK_RES_SL:
6523 /* start-line before headers */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01006524 ret = h2s_snd_fhdrs(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006525 if (ret > 0) {
6526 total += ret;
6527 count -= ret;
6528 if (ret < bsize)
6529 goto done;
6530 }
6531 break;
6532
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006533 case HTX_BLK_DATA:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006534 /* all these cause the emission of a DATA frame (possibly empty) */
Christopher Faulet991febd2020-12-02 15:17:31 +01006535 if (!(h2s->h2c->flags & H2_CF_IS_BACK) &&
6536 (h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BODYLESS_RESP)) == H2_SF_BODYLESS_RESP)
6537 ret = h2s_skip_data(h2s, buf, count);
6538 else
6539 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006540 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006541 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006542 total += ret;
6543 count -= ret;
6544 if (ret < bsize)
6545 goto done;
6546 }
6547 break;
6548
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006549 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006550 case HTX_BLK_EOT:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006551 /* This is the first trailers block, all the subsequent ones */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006552 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006553 if (ret > 0) {
6554 total += ret;
6555 count -= ret;
6556 if (ret < bsize)
6557 goto done;
6558 }
6559 break;
6560
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006561 default:
6562 htx_remove_blk(htx, blk);
6563 total += bsize;
6564 count -= bsize;
6565 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006566 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006567 }
6568
Christopher Faulet9b79a102019-07-15 11:22:56 +02006569 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006570 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006571 /* trim any possibly pending data after we close (extra CR-LF,
6572 * unprocessed trailers, abnormal extra data, ...)
6573 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006574 total += count;
6575 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006576 }
6577
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006578 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006579 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006580 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 +02006581 se_fl_set_error(h2s->sd);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006582 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006583 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006584 }
6585
Christopher Faulet9b79a102019-07-15 11:22:56 +02006586 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006587
Olivier Houchard7505f942018-08-21 18:10:44 +02006588 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006589 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006590 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 +02006591 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006592 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006593
Olivier Houchard7505f942018-08-21 18:10:44 +02006594 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006595 /* If we're waiting for flow control, and we got a shutr on the
6596 * connection, we will never be unlocked, so add an error on
Willy Tarreau4596fe22022-05-17 19:07:51 +02006597 * the stream connector.
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006598 */
Christopher Fauletff7925d2022-10-11 19:12:40 +02006599 if ((h2s->h2c->flags & H2_CF_RCVD_SHUT) &&
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006600 !b_data(&h2s->h2c->dbuf) &&
6601 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006602 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 +01006603 se_fl_set_error(h2s->sd);
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006604 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006605
Willy Tarreau5723f292020-01-10 15:16:57 +01006606 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6607 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006608 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006609 LIST_DEL_INIT(&h2s->list);
6610 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006611
Willy Tarreau7838a792019-08-12 18:42:03 +02006612 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006613 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006614}
6615
Willy Tarreau90bffa22022-09-01 19:06:44 +02006616/* appends some info about stream <h2s> to buffer <msg>, or does nothing if
Willy Tarreau7051f732022-09-02 15:22:12 +02006617 * <h2s> is NULL. Returns non-zero if the stream is considered suspicious. May
6618 * emit multiple lines, each new one being prefixed with <pfx>, if <pfx> is not
6619 * NULL, otherwise a single line is used.
Willy Tarreau90bffa22022-09-01 19:06:44 +02006620 */
Willy Tarreau7051f732022-09-02 15:22:12 +02006621static int h2_dump_h2s_info(struct buffer *msg, const struct h2s *h2s, const char *pfx)
Willy Tarreau90bffa22022-09-01 19:06:44 +02006622{
6623 int ret = 0;
6624
6625 if (!h2s)
6626 return ret;
6627
Willy Tarreau7051f732022-09-02 15:22:12 +02006628 chunk_appendf(msg, " h2s.id=%d .st=%s .flg=0x%04x .rxbuf=%u@%p+%u/%u",
Willy Tarreau90bffa22022-09-01 19:06:44 +02006629 h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
6630 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
Willy Tarreau7051f732022-09-02 15:22:12 +02006631 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf));
6632
6633 if (pfx)
6634 chunk_appendf(msg, "\n%s", pfx);
6635
6636 chunk_appendf(msg, " .sc=%p", h2s_sc(h2s));
Willy Tarreau90bffa22022-09-01 19:06:44 +02006637 if (h2s_sc(h2s))
6638 chunk_appendf(msg, "(.flg=0x%08x .app=%p)",
6639 h2s_sc(h2s)->flags, h2s_sc(h2s)->app);
6640
Willy Tarreau7051f732022-09-02 15:22:12 +02006641 chunk_appendf(msg, " .sd=%p", h2s->sd);
Willy Tarreau90bffa22022-09-01 19:06:44 +02006642 chunk_appendf(msg, "(.flg=0x%08x)", se_fl_get(h2s->sd));
6643
Willy Tarreau7051f732022-09-02 15:22:12 +02006644 if (pfx)
6645 chunk_appendf(msg, "\n%s", pfx);
6646
Willy Tarreau90bffa22022-09-01 19:06:44 +02006647 chunk_appendf(msg, " .subs=%p", h2s->subs);
6648 if (h2s->subs) {
6649 chunk_appendf(msg, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
6650 chunk_appendf(msg, " tl.calls=%d tl.ctx=%p tl.fct=",
6651 h2s->subs->tasklet->calls,
6652 h2s->subs->tasklet->context);
6653 if (h2s->subs->tasklet->calls >= 1000000)
6654 ret = 1;
6655 resolve_sym_name(msg, NULL, h2s->subs->tasklet->process);
6656 chunk_appendf(msg, ")");
6657 }
6658 return ret;
6659}
6660
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006661/* appends some info about connection <h2c> to buffer <msg>, or does nothing if
6662 * <h2c> is NULL. Returns non-zero if the connection is considered suspicious.
Willy Tarreau7051f732022-09-02 15:22:12 +02006663 * May emit multiple lines, each new one being prefixed with <pfx>, if <pfx> is
6664 * not NULL, otherwise a single line is used.
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006665 */
Willy Tarreau7051f732022-09-02 15:22:12 +02006666static int h2_dump_h2c_info(struct buffer *msg, struct h2c *h2c, const char *pfx)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006667{
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006668 const struct buffer *hmbuf, *tmbuf;
6669 const struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006670 struct eb32_node *node;
6671 int fctl_cnt = 0;
6672 int send_cnt = 0;
6673 int tree_cnt = 0;
6674 int orph_cnt = 0;
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006675 int ret = 0;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006676
6677 if (!h2c)
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006678 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006679
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006680 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006681 fctl_cnt++;
6682
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006683 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006684 send_cnt++;
6685
6686 node = eb32_first(&h2c->streams_by_id);
6687 while (node) {
6688 h2s = container_of(node, struct h2s, by_id);
6689 tree_cnt++;
Willy Tarreau7be4ee02022-05-18 07:31:41 +02006690 if (!h2s_sc(h2s))
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006691 orph_cnt++;
6692 node = eb32_next(node);
6693 }
6694
Willy Tarreau60f62682019-05-26 11:32:27 +02006695 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006696 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006697 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau7051f732022-09-02 15:22:12 +02006698 " .nbst=%u .nbsc=%u",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006699 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau7051f732022-09-02 15:22:12 +02006700 h2c->nb_streams, h2c->nb_sc);
6701
6702 if (pfx)
6703 chunk_appendf(msg, "\n%s", pfx);
6704
6705 chunk_appendf(msg, " .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
6706 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u",
6707 fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006708 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006709 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
Willy Tarreau7051f732022-09-02 15:22:12 +02006710 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf));
6711
6712 if (pfx)
6713 chunk_appendf(msg, "\n%s", pfx);
6714
Christopher Faulet68ee7842022-10-12 10:21:33 +02006715 chunk_appendf(msg, " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreau60f62682019-05-26 11:32:27 +02006716 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6717 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6718 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006719 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6720 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006721
Willy Tarreauf8c77092022-11-29 15:26:43 +01006722 chunk_appendf(msg, " .task=%p", h2c->task);
6723 if (h2c->task) {
6724 chunk_appendf(msg, " .exp=%s",
6725 h2c->task->expire ? tick_is_expired(h2c->task->expire, now_ms) ? "<PAST>" :
6726 human_time(TICKS_TO_MS(h2c->task->expire - now_ms), TICKS_TO_MS(1000)) : "<NEVER>");
6727 }
Willy Tarreau7051f732022-09-02 15:22:12 +02006728
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006729 return ret;
6730}
6731
6732/* for debugging with CLI's "show fd" command */
6733static int h2_show_fd(struct buffer *msg, struct connection *conn)
6734{
6735 struct h2c *h2c = conn->ctx;
6736 const struct h2s *h2s;
6737 struct eb32_node *node;
6738 int ret = 0;
6739
6740 if (!h2c)
6741 return ret;
6742
Willy Tarreau7051f732022-09-02 15:22:12 +02006743 ret |= h2_dump_h2c_info(msg, h2c, NULL);
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006744
6745 node = eb32_last(&h2c->streams_by_id);
6746 if (node) {
6747 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau90bffa22022-09-01 19:06:44 +02006748 chunk_appendf(msg, " last_h2s=%p", h2s);
Willy Tarreau7051f732022-09-02 15:22:12 +02006749 ret |= h2_dump_h2s_info(msg, h2s, NULL);
Willy Tarreau987c0632018-12-18 10:32:05 +01006750 }
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006751
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006752 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006753}
Willy Tarreau62f52692017-10-08 23:01:42 +02006754
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02006755/* for debugging with CLI's "show sess" command. May emit multiple lines, each
6756 * new one being prefixed with <pfx>, if <pfx> is not NULL, otherwise a single
6757 * line is used. Each field starts with a space so it's safe to print it after
6758 * existing fields.
6759 */
6760static int h2_show_sd(struct buffer *msg, struct sedesc *sd, const char *pfx)
6761{
6762 struct h2s *h2s = sd->se;
6763 int ret = 0;
6764
6765 if (!h2s)
6766 return ret;
6767
6768 chunk_appendf(msg, " h2s=%p", h2s);
Willy Tarreau7051f732022-09-02 15:22:12 +02006769 ret |= h2_dump_h2s_info(msg, h2s, pfx);
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02006770 if (pfx)
6771 chunk_appendf(msg, "\n%s", pfx);
6772 chunk_appendf(msg, " h2c=%p", h2s->h2c);
Willy Tarreau7051f732022-09-02 15:22:12 +02006773 ret |= h2_dump_h2c_info(msg, h2s->h2c, pfx);
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02006774 return ret;
6775}
6776
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006777/* Migrate the the connection to the current thread.
6778 * Return 0 if successful, non-zero otherwise.
6779 * Expected to be called with the old thread lock held.
6780 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006781static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006782{
6783 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006784 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006785
6786 if (fd_takeover(conn->handle.fd, conn) != 0)
6787 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006788
6789 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6790 /* We failed to takeover the xprt, even if the connection may
6791 * still be valid, flag it as error'd, as we have already
6792 * taken over the fd, and wake the tasklet, so that it will
6793 * destroy it.
6794 */
6795 conn->flags |= CO_FL_ERROR;
6796 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6797 return -1;
6798 }
6799
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006800 if (h2c->wait_event.events)
6801 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6802 h2c->wait_event.events, &h2c->wait_event);
6803 /* To let the tasklet know it should free itself, and do nothing else,
6804 * set its context to NULL.
6805 */
6806 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006807 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006808
6809 task = h2c->task;
6810 if (task) {
6811 task->context = NULL;
6812 h2c->task = NULL;
6813 __ha_barrier_store();
6814 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006815
Willy Tarreaubeeabf52021-10-01 18:23:30 +02006816 h2c->task = task_new_here();
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006817 if (!h2c->task) {
6818 h2_release(h2c);
6819 return -1;
6820 }
6821 h2c->task->process = h2_timeout_task;
6822 h2c->task->context = h2c;
6823 }
6824 h2c->wait_event.tasklet = tasklet_new();
6825 if (!h2c->wait_event.tasklet) {
6826 h2_release(h2c);
6827 return -1;
6828 }
6829 h2c->wait_event.tasklet->process = h2_io_cb;
6830 h2c->wait_event.tasklet->context = h2c;
6831 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6832 SUB_RETRY_RECV, &h2c->wait_event);
6833
6834 return 0;
6835}
6836
Willy Tarreau62f52692017-10-08 23:01:42 +02006837/*******************************************************/
6838/* functions below are dedicated to the config parsers */
6839/*******************************************************/
6840
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006841/* config parser for global "tune.h2.header-table-size" */
6842static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006843 const struct proxy *defpx, const char *file, int line,
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006844 char **err)
6845{
6846 if (too_many_args(1, args, err, NULL))
6847 return -1;
6848
6849 h2_settings_header_table_size = atoi(args[1]);
6850 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6851 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6852 return -1;
6853 }
6854 return 0;
6855}
Willy Tarreau62f52692017-10-08 23:01:42 +02006856
Willy Tarreaue6baec02017-07-27 11:45:11 +02006857/* config parser for global "tune.h2.initial-window-size" */
6858static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006859 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue6baec02017-07-27 11:45:11 +02006860 char **err)
6861{
6862 if (too_many_args(1, args, err, NULL))
6863 return -1;
6864
6865 h2_settings_initial_window_size = atoi(args[1]);
6866 if (h2_settings_initial_window_size < 0) {
6867 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6868 return -1;
6869 }
6870 return 0;
6871}
6872
Willy Tarreau5242ef82017-07-27 11:47:28 +02006873/* config parser for global "tune.h2.max-concurrent-streams" */
6874static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006875 const struct proxy *defpx, const char *file, int line,
Willy Tarreau5242ef82017-07-27 11:47:28 +02006876 char **err)
6877{
6878 if (too_many_args(1, args, err, NULL))
6879 return -1;
6880
6881 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006882 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006883 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6884 return -1;
6885 }
6886 return 0;
6887}
6888
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006889/* config parser for global "tune.h2.max-frame-size" */
6890static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006891 const struct proxy *defpx, const char *file, int line,
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006892 char **err)
6893{
6894 if (too_many_args(1, args, err, NULL))
6895 return -1;
6896
6897 h2_settings_max_frame_size = atoi(args[1]);
6898 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6899 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6900 return -1;
6901 }
6902 return 0;
6903}
6904
Willy Tarreau62f52692017-10-08 23:01:42 +02006905
6906/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006907/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006908/***************************************/
6909
6910/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006911static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006912 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006913 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006914 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006915 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006916 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006917 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006918 .attach = h2_attach,
Willy Tarreaud1373532022-05-27 11:00:59 +02006919 .get_first_sc = h2_get_first_sc,
Willy Tarreau62f52692017-10-08 23:01:42 +02006920 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006921 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006922 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006923 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006924 .shutr = h2_shutr,
6925 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006926 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006927 .show_fd = h2_show_fd,
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02006928 .show_sd = h2_show_sd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006929 .takeover = h2_takeover,
Christopher Fauleta97cced2022-04-12 18:04:10 +02006930 .flags = MX_FL_HTX|MX_FL_HOL_RISK|MX_FL_NO_UPG,
Willy Tarreau62f52692017-10-08 23:01:42 +02006931 .name = "H2",
6932};
6933
Christopher Faulet32f61c02018-04-10 14:33:41 +02006934static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006935 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006936
Willy Tarreau0108d902018-11-25 19:14:37 +01006937INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6938
Willy Tarreau62f52692017-10-08 23:01:42 +02006939/* config keyword parsers */
6940static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006941 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006942 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006943 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006944 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006945 { 0, NULL, NULL }
6946}};
6947
Willy Tarreau0108d902018-11-25 19:14:37 +01006948INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006949
6950/* initialize internal structs after the config is parsed.
6951 * Returns zero on success, non-zero on error.
6952 */
6953static int init_h2()
6954{
6955 pool_head_hpack_tbl = create_pool("hpack_tbl",
6956 h2_settings_header_table_size,
6957 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01006958 if (!pool_head_hpack_tbl) {
6959 ha_alert("failed to allocate hpack_tbl memory pool\n");
6960 return (ERR_ALERT | ERR_FATAL);
6961 }
6962 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006963}
6964
6965REGISTER_POST_CHECK(init_h2);