blob: a10dfb078a28bc7cef2b009b7974cfcfba3fe247 [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 msi; /* mux stream ID (<0 = idle) */
72 int32_t mfl; /* mux frame length (if dsi >= 0) */
73 int8_t mft; /* mux frame type (if dsi >= 0) */
74 int8_t mff; /* mux frame flags (if dsi >= 0) */
75 /* 16 bit hole here */
76 int32_t miw; /* mux initial window size for all new streams */
77 int32_t mws; /* mux window size. Can be negative. */
78 int32_t mfs; /* mux's max frame size */
79
Willy Tarreauea392822017-10-31 10:02:25 +010080 int timeout; /* idle timeout duration in ticks */
Willy Tarreau599391a2017-11-24 10:16:00 +010081 int shut_timeout; /* idle timeout duration in ticks after GOAWAY was sent */
Willy Tarreau15a47332022-03-18 15:57:34 +010082 int idle_start; /* date of the last time the connection went idle */
83 /* 32-bit hole here */
Willy Tarreau49745612017-12-03 18:56:02 +010084 unsigned int nb_streams; /* number of streams in the tree */
Willy Tarreau36c22322022-05-27 10:41:24 +020085 unsigned int nb_sc; /* number of attached stream connectors */
Willy Tarreaud64a3eb2019-01-23 10:22:21 +010086 unsigned int nb_reserved; /* number of reserved streams */
Willy Tarreaue9634bd2019-01-23 10:25:10 +010087 unsigned int stream_cnt; /* total number of streams seen */
Willy Tarreau0b37d652018-10-03 10:33:02 +020088 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +010089 struct task *task; /* timeout management task */
Amaury Denoyellec92697d2020-10-27 17:16:01 +010090 struct h2_counters *px_counters; /* h2 counters attached to proxy */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020091 struct eb_root streams_by_id; /* all active streams by their ID */
92 struct list send_list; /* list of blocked streams requesting to send */
93 struct list fctl_list; /* list of streams blocked by connection's fctl */
Willy Tarreau9edf6db2019-10-02 10:49:59 +020094 struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */
Willy Tarreau44e973f2018-03-01 17:49:30 +010095 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +020096 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020097};
98
Willy Tarreau2c249eb2019-05-13 18:06:17 +020099
Willy Tarreau18312642017-10-11 07:57:07 +0200100/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
Christopher Fauletfafd1b02020-11-03 18:25:52 +0100101 * it is being processed in the internal HTTP representation (HTX).
Willy Tarreau18312642017-10-11 07:57:07 +0200102 */
103struct h2s {
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200104 struct sedesc *sd;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100105 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200106 struct h2c *h2c;
Willy Tarreau18312642017-10-11 07:57:07 +0200107 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200108 int32_t id; /* stream ID */
109 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200110 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200111 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
112 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200113 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100114 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200115 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Willy Tarreau4596fe22022-05-17 19:07:51 +0200116 struct wait_event *subs; /* recv wait_event the stream connector associated is waiting on (via h2_subscribe) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200117 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Willy Tarreau5723f292020-01-10 15:16:57 +0100118 struct tasklet *shut_tl; /* deferred shutdown tasklet, to retry to send an RST after we failed to,
119 * in case there's no other subscription to do it */
Amaury Denoyelle74162742020-12-11 17:53:05 +0100120
121 char upgrade_protocol[16]; /* rfc 8441: requested protocol on Extended CONNECT */
Willy Tarreau18312642017-10-11 07:57:07 +0200122};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200123
Willy Tarreauc6405142017-09-21 20:23:50 +0200124/* descriptor for an h2 frame header */
125struct h2_fh {
126 uint32_t len; /* length, host order, 24 bits */
127 uint32_t sid; /* stream id, host order, 31 bits */
128 uint8_t ft; /* frame type */
129 uint8_t ff; /* frame flags */
130};
131
Willy Tarreau12ae2122019-08-08 18:23:12 +0200132/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200133static void h2_trace(enum trace_level level, uint64_t mask, \
134 const struct trace_source *src,
135 const struct ist where, const struct ist func,
136 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200137
138/* The event representation is split like this :
139 * strm - application layer
140 * h2s - internal H2 stream
141 * h2c - internal H2 connection
142 * conn - external connection
143 *
144 */
145static const struct trace_event h2_trace_events[] = {
146#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200147 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200148#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200149 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200150#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200151 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200152#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200153 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200154#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200155 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200156#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200157 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200158#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200159 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200160#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200161 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200162#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200163 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200164#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200165 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200166#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200167 { .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 +0200168#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200169 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200170#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200171 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200172#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200173 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200174#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200175 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200176#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200177 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200178#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200179 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200180#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200181 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200182#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200183 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200184#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200185 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200186#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200187 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200188#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200189 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200190#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200191 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200192#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200193 { .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 +0200194#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200195 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200196#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200197 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200198#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200199 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200200#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200201 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200202#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200203 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200204#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200205 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200206#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200207 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200208#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200209 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200210#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200211 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200212#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200213 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200214#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200215 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200216#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200217 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200218#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200219 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200220#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200221 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200222#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200223 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200224#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200225 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200226#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200227 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200228#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200229 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200230#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200231 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200232#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200233 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200234#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200235 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200236#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200237 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200238#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200239 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200240#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200241 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200242#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200243 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200244#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200245 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200246#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200247 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200248#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200249 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200250 { }
251};
252
253static const struct name_desc h2_trace_lockon_args[4] = {
254 /* arg1 */ { /* already used by the connection */ },
255 /* arg2 */ { .name="h2s", .desc="H2 stream" },
256 /* arg3 */ { },
257 /* arg4 */ { }
258};
259
260static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200261#define H2_VERB_CLEAN 1
262 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
263#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200264 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200265#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200266 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200267#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200268 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200269#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200270 { .name="complete", .desc="add full data dump when available" },
271 { /* end */ }
272};
273
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200274static struct trace_source trace_h2 __read_mostly = {
Willy Tarreau12ae2122019-08-08 18:23:12 +0200275 .name = IST("h2"),
276 .desc = "HTTP/2 multiplexer",
277 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200278 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200279 .known_events = h2_trace_events,
280 .lockon_args = h2_trace_lockon_args,
281 .decoding = h2_trace_decoding,
282 .report_events = ~0, // report everything by default
283};
284
285#define TRACE_SOURCE &trace_h2
286INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
287
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100288/* h2 stats module */
289enum {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100290 H2_ST_HEADERS_RCVD,
291 H2_ST_DATA_RCVD,
292 H2_ST_SETTINGS_RCVD,
293 H2_ST_RST_STREAM_RCVD,
294 H2_ST_GOAWAY_RCVD,
295
Amaury Denoyellea8879232020-10-27 17:16:03 +0100296 H2_ST_CONN_PROTO_ERR,
297 H2_ST_STRM_PROTO_ERR,
298 H2_ST_RST_STREAM_RESP,
299 H2_ST_GOAWAY_RESP,
300
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100301 H2_ST_OPEN_CONN,
302 H2_ST_OPEN_STREAM,
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100303 H2_ST_TOTAL_CONN,
304 H2_ST_TOTAL_STREAM,
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100305
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100306 H2_STATS_COUNT /* must be the last member of the enum */
307};
308
309static struct name_desc h2_stats[] = {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100310 [H2_ST_HEADERS_RCVD] = { .name = "h2_headers_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100311 .desc = "Total number of received HEADERS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100312 [H2_ST_DATA_RCVD] = { .name = "h2_data_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100313 .desc = "Total number of received DATA frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100314 [H2_ST_SETTINGS_RCVD] = { .name = "h2_settings_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100315 .desc = "Total number of received SETTINGS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100316 [H2_ST_RST_STREAM_RCVD] = { .name = "h2_rst_stream_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100317 .desc = "Total number of received RST_STREAM frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100318 [H2_ST_GOAWAY_RCVD] = { .name = "h2_goaway_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100319 .desc = "Total number of received GOAWAY frames" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100320
321 [H2_ST_CONN_PROTO_ERR] = { .name = "h2_detected_conn_protocol_errors",
322 .desc = "Total number of connection protocol errors" },
323 [H2_ST_STRM_PROTO_ERR] = { .name = "h2_detected_strm_protocol_errors",
324 .desc = "Total number of stream protocol errors" },
325 [H2_ST_RST_STREAM_RESP] = { .name = "h2_rst_stream_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100326 .desc = "Total number of RST_STREAM sent on detected error" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100327 [H2_ST_GOAWAY_RESP] = { .name = "h2_goaway_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100328 .desc = "Total number of GOAWAY sent on detected error" },
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100329
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100330 [H2_ST_OPEN_CONN] = { .name = "h2_open_connections",
331 .desc = "Count of currently open connections" },
332 [H2_ST_OPEN_STREAM] = { .name = "h2_backend_open_streams",
333 .desc = "Count of currently open streams" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100334 [H2_ST_TOTAL_CONN] = { .name = "h2_total_connections",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100335 .desc = "Total number of connections" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100336 [H2_ST_TOTAL_STREAM] = { .name = "h2_backend_total_streams",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100337 .desc = "Total number of streams" },
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100338};
339
340static struct h2_counters {
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100341 long long headers_rcvd; /* total number of HEADERS frame received */
342 long long data_rcvd; /* total number of DATA frame received */
343 long long settings_rcvd; /* total number of SETTINGS frame received */
344 long long rst_stream_rcvd; /* total number of RST_STREAM frame received */
345 long long goaway_rcvd; /* total number of GOAWAY frame received */
Amaury Denoyellea8879232020-10-27 17:16:03 +0100346
347 long long conn_proto_err; /* total number of protocol errors detected */
348 long long strm_proto_err; /* total number of protocol errors detected */
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100349 long long rst_stream_resp; /* total number of RST_STREAM frame sent on error */
350 long long goaway_resp; /* total number of GOAWAY frame sent on error */
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100351
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100352 long long open_conns; /* count of currently open connections */
353 long long open_streams; /* count of currently open streams */
354 long long total_conns; /* total number of connections */
355 long long total_streams; /* total number of streams */
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100356} h2_counters;
357
358static void h2_fill_stats(void *data, struct field *stats)
359{
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100360 struct h2_counters *counters = data;
361
362 stats[H2_ST_HEADERS_RCVD] = mkf_u64(FN_COUNTER, counters->headers_rcvd);
363 stats[H2_ST_DATA_RCVD] = mkf_u64(FN_COUNTER, counters->data_rcvd);
364 stats[H2_ST_SETTINGS_RCVD] = mkf_u64(FN_COUNTER, counters->settings_rcvd);
365 stats[H2_ST_RST_STREAM_RCVD] = mkf_u64(FN_COUNTER, counters->rst_stream_rcvd);
366 stats[H2_ST_GOAWAY_RCVD] = mkf_u64(FN_COUNTER, counters->goaway_rcvd);
Amaury Denoyellea8879232020-10-27 17:16:03 +0100367
368 stats[H2_ST_CONN_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->conn_proto_err);
369 stats[H2_ST_STRM_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->strm_proto_err);
370 stats[H2_ST_RST_STREAM_RESP] = mkf_u64(FN_COUNTER, counters->rst_stream_resp);
371 stats[H2_ST_GOAWAY_RESP] = mkf_u64(FN_COUNTER, counters->goaway_resp);
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100372
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100373 stats[H2_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
374 stats[H2_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
375 stats[H2_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
376 stats[H2_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100377}
378
379static struct stats_module h2_stats_module = {
380 .name = "h2",
381 .fill_stats = h2_fill_stats,
382 .stats = h2_stats,
383 .stats_count = H2_STATS_COUNT,
384 .counters = &h2_counters,
385 .counters_size = sizeof(h2_counters),
386 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
387 .clearable = 1,
388};
389
390INITCALL1(STG_REGISTER, stats_register_module, &h2_stats_module);
391
Willy Tarreau8ceae722018-11-26 11:58:30 +0100392/* the h2c connection pool */
393DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
394
395/* the h2s stream pool */
396DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
397
Willy Tarreaudc572362018-12-12 08:08:05 +0100398/* The default connection window size is 65535, it may only be enlarged using
399 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
400 * we'll pretend we already received the difference between the two to send
401 * an equivalent window update to enlarge it to 2G-1.
402 */
403#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
404
Willy Tarreau455d5682019-05-24 19:42:18 +0200405/* maximum amount of data we're OK with re-aligning for buffer optimizations */
406#define MAX_DATA_REALIGN 1024
407
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200408/* a few settings from the global section */
409static int h2_settings_header_table_size = 4096; /* initial value */
Glenn Strauss0012f892022-06-04 22:11:50 -0400410static int h2_settings_initial_window_size = 65536; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100411static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100412static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200413
Willy Tarreaub22b5f02022-05-10 14:57:16 +0200414/* a dummy closed endpoint */
Willy Tarreauea59b022022-05-17 17:53:22 +0200415static const struct sedesc closed_ep = {
Willy Tarreauc1054922022-05-18 07:43:52 +0200416 .sc = NULL,
Willy Tarreaub605c422022-05-17 17:04:55 +0200417 .flags = SE_FL_DETACHED,
Willy Tarreaub22b5f02022-05-10 14:57:16 +0200418};
419
Willy Tarreau2a856182017-05-16 15:20:39 +0200420/* a dmumy closed stream */
421static const struct h2s *h2_closed_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200422 .sd = (struct sedesc *)&closed_ep,
Willy Tarreau2a856182017-05-16 15:20:39 +0200423 .h2c = NULL,
424 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100425 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100426 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200427 .id = 0,
428};
429
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100430/* a dmumy closed stream returning a PROTOCOL_ERROR error */
431static const struct h2s *h2_error_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200432 .sd = (struct sedesc *)&closed_ep,
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100433 .h2c = NULL,
434 .st = H2_SS_CLOSED,
435 .errcode = H2_ERR_PROTOCOL_ERROR,
436 .flags = 0,
437 .id = 0,
438};
439
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100440/* a dmumy closed stream returning a REFUSED_STREAM error */
441static const struct h2s *h2_refused_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200442 .sd = (struct sedesc *)&closed_ep,
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100443 .h2c = NULL,
444 .st = H2_SS_CLOSED,
445 .errcode = H2_ERR_REFUSED_STREAM,
446 .flags = 0,
447 .id = 0,
448};
449
Willy Tarreau2a856182017-05-16 15:20:39 +0200450/* and a dummy idle stream for use with any unannounced stream */
451static const struct h2s *h2_idle_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200452 .sd = (struct sedesc *)&closed_ep,
Willy Tarreau2a856182017-05-16 15:20:39 +0200453 .h2c = NULL,
454 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100455 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200456 .id = 0,
457};
458
Willy Tarreau144f84a2021-03-02 16:09:26 +0100459struct task *h2_timeout_task(struct task *t, void *context, unsigned int state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200460static int h2_send(struct h2c *h2c);
461static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200462static int h2_process(struct h2c *h2c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100463/* h2_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100464struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100465static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Amaury Denoyelle74162742020-12-11 17:53:05 +0100466static int h2c_decode_headers(struct h2c *h2c, struct buffer *rxbuf, uint32_t *flags, unsigned long long *body_len, char *upgrade_protocol);
Willy Tarreaua56a6de2018-02-26 15:59:07 +0100467static int h2_frt_transfer_data(struct h2s *h2s);
Willy Tarreau144f84a2021-03-02 16:09:26 +0100468struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state);
Willy Tarreau36c22322022-05-27 10:41:24 +0200469static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct stconn *sc, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100470static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200471
Willy Tarreau7be4ee02022-05-18 07:31:41 +0200472/* returns the stconn associated to the H2 stream */
473static forceinline struct stconn *h2s_sc(const struct h2s *h2s)
474{
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200475 return h2s->sd->sc;
Willy Tarreau7be4ee02022-05-18 07:31:41 +0200476}
477
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200478/* the H2 traces always expect that arg1, if non-null, is of type connection
479 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
480 * that arg3, if non-null, is either of type htx for tx headers, or of type
481 * buffer for everything else.
482 */
483static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
484 const struct ist where, const struct ist func,
485 const void *a1, const void *a2, const void *a3, const void *a4)
486{
487 const struct connection *conn = a1;
488 const struct h2c *h2c = conn ? conn->ctx : NULL;
489 const struct h2s *h2s = a2;
490 const struct buffer *buf = a3;
491 const struct htx *htx;
492 int pos;
493
494 if (!h2c) // nothing to add
495 return;
496
Willy Tarreau17104d42019-08-30 07:12:55 +0200497 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200498 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
499
Willy Tarreau8e6f7492021-06-16 17:47:24 +0200500 if (mask & H2_EV_H2C_NEW) // inside h2_init, otherwise it's hard to match conn & h2c
501 conn_append_debug_info(&trace_buf, conn, " : ");
502
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100503 if (h2c->errcode)
504 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
505
Willy Tarreau0f458712022-08-18 11:19:57 +0200506 if (h2c->flags & H2_CF_DEM_IN_PROGRESS && // frame processing has started, type and length are valid
Willy Tarreau73db4342019-09-25 07:28:44 +0200507 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
Willy Tarreau8520d872020-09-18 07:39:29 +0200508 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 +0200509 }
510
511 if (h2s) {
512 if (h2s->id <= 0)
513 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
514 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100515 if (h2s->id && h2s->errcode)
516 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200517 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200518 }
519
520 /* Let's dump decoded requests and responses right after parsing. They
521 * are traced at level USER with a few recognizable flags.
522 */
523 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
524 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
525 htx = htxbuf(buf); // recv req/res
526 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
527 htx = a3; // send req/res
528 else
529 htx = NULL;
530
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200531 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200532 const struct htx_blk *blk = htx_get_blk(htx, pos);
533 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
534 enum htx_blk_type type = htx_get_blk_type(blk);
535
536 if (type == HTX_BLK_REQ_SL)
537 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200538 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200539 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
540 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
541 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
542 else if (type == HTX_BLK_RES_SL)
543 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200544 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200545 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
546 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
547 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
548 }
549}
550
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200551
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100552/* Detect a pending read0 for a H2 connection. It happens if a read0 was
553 * already reported on a previous xprt->rcvbuf() AND a frame parser failed
554 * to parse pending data, confirming no more progress is possible because
555 * we're facing a truncated frame. The function returns 1 to report a read0
556 * or 0 otherwise.
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200557 */
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100558static inline int h2c_read0_pending(struct h2c *h2c)
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200559{
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100560 return !!(h2c->flags & H2_CF_END_REACHED);
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200561}
562
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200563/* returns true if the connection is allowed to expire, false otherwise. A
Willy Tarreau34395832022-03-18 14:59:54 +0100564 * connection may expire when it has no attached streams. As long as streams
565 * are attached, the application layer is responsible for timeout management,
566 * and each layer will detach when it doesn't want to wait anymore. When the
567 * last one leaves, the connection must take over timeout management.
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200568 */
569static inline int h2c_may_expire(const struct h2c *h2c)
570{
Willy Tarreau36c22322022-05-27 10:41:24 +0200571 return !h2c->nb_sc;
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200572}
573
Willy Tarreau15a47332022-03-18 15:57:34 +0100574/* update h2c timeout if needed */
575static void h2c_update_timeout(struct h2c *h2c)
576{
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200577 int is_idle_conn = 0;
578
Willy Tarreau15a47332022-03-18 15:57:34 +0100579 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
580
581 if (!h2c->task)
582 goto leave;
583
584 if (h2c_may_expire(h2c)) {
585 /* no more streams attached */
586 if (h2c->last_sid >= 0) {
587 /* GOAWAY sent, closing in progress */
588 h2c->task->expire = tick_add_ifset(now_ms, h2c->shut_timeout);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200589 is_idle_conn = 1;
Willy Tarreau15a47332022-03-18 15:57:34 +0100590 } else if (br_data(h2c->mbuf)) {
591 /* pending output data: always the regular data timeout */
592 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
Willy Tarreau6ff91e22022-04-14 11:43:35 +0200593 } else if (!(h2c->flags & H2_CF_IS_BACK) && h2c->max_id > 0 && !b_data(&h2c->dbuf)) {
Willy Tarreau15a47332022-03-18 15:57:34 +0100594 /* idle after having seen one stream => keep-alive */
Willy Tarreau86b08a32022-04-13 17:40:28 +0200595 int to;
596
597 if (tick_isset(h2c->proxy->timeout.httpka))
598 to = h2c->proxy->timeout.httpka;
599 else
600 to = h2c->proxy->timeout.httpreq;
601
602 h2c->task->expire = tick_add_ifset(h2c->idle_start, to);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200603 is_idle_conn = 1;
Willy Tarreau15a47332022-03-18 15:57:34 +0100604 } else {
605 /* before first request, or started to deserialize a
606 * new req => http-request, but only set, not refresh.
607 */
608 int exp = (h2c->flags & H2_CF_IS_BACK) ? TICK_ETERNITY : h2c->proxy->timeout.httpreq;
609 h2c->task->expire = tick_add_ifset(h2c->idle_start, exp);
610 }
611 /* if a timeout above was not set, fall back to the default one */
612 if (!tick_isset(h2c->task->expire))
613 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200614
615 if ((h2c->proxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) &&
616 is_idle_conn && tick_isset(global.close_spread_end)) {
617 /* If a soft-stop is in progress and a close-spread-time
618 * is set, we want to spread idle connection closing roughly
619 * evenly across the defined window. This should only
620 * act on idle frontend connections.
621 * If the window end is already in the past, we wake the
622 * timeout task up immediately so that it can be closed.
623 */
624 int remaining_window = tick_remain(now_ms, global.close_spread_end);
625 if (remaining_window) {
626 /* We don't need to reset the expire if it would
627 * already happen before the close window end.
628 */
629 if (tick_isset(h2c->task->expire) &&
630 tick_is_le(global.close_spread_end, h2c->task->expire)) {
631 /* Set an expire value shorter than the current value
632 * because the close spread window end comes earlier.
633 */
634 h2c->task->expire = tick_add(now_ms, statistical_prng_range(remaining_window));
635 }
636 }
637 else {
638 /* We are past the soft close window end, wake the timeout
639 * task up immediately.
640 */
641 task_wakeup(h2c->task, TASK_WOKEN_TIMER);
642 }
643 }
644
Willy Tarreau15a47332022-03-18 15:57:34 +0100645 } else {
646 h2c->task->expire = TICK_ETERNITY;
647 }
648 task_queue(h2c->task);
649 leave:
650 TRACE_LEAVE(H2_EV_H2C_WAKE);
651}
652
Olivier Houchard7a977432019-03-21 15:47:13 +0100653static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200654h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100655{
656 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
657 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
658 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
659 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200660 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100661 (conn_xprt_read0_pending(h2c->conn) ||
662 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
663 return 1;
664
665 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100666}
667
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200668/*****************************************************/
669/* functions below are for dynamic buffer management */
670/*****************************************************/
671
Willy Tarreau315d8072017-12-10 22:17:57 +0100672/* indicates whether or not the we may call the h2_recv() function to attempt
673 * to receive data into the buffer and/or demux pending data. The condition is
674 * a bit complex due to some API limits for now. The rules are the following :
675 * - if an error or a shutdown was detected on the connection and the buffer
676 * is empty, we must not attempt to receive
677 * - if the demux buf failed to be allocated, we must not try to receive and
678 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100679 * - if no flag indicates a blocking condition, we may attempt to receive,
680 * regardless of whether the demux buffer is full or not, so that only
681 * de demux part decides whether or not to block. This is needed because
682 * the connection API indeed prevents us from re-enabling receipt that is
683 * already enabled in a polled state, so we must always immediately stop
684 * as soon as the demux can't proceed so as never to hit an end of read
685 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100686 * - otherwise must may not attempt
687 */
688static inline int h2_recv_allowed(const struct h2c *h2c)
689{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200690 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100691 (h2c->st0 >= H2_CS_ERROR ||
692 h2c->conn->flags & CO_FL_ERROR ||
693 conn_xprt_read0_pending(h2c->conn)))
694 return 0;
695
696 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100697 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100698 return 1;
699
700 return 0;
701}
702
Willy Tarreau47b515a2018-12-21 16:09:41 +0100703/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200704static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100705{
706 if (!h2_recv_allowed(h2c))
707 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200708 if ((!consider_buffer || !b_data(&h2c->dbuf))
709 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100710 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200711 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100712}
713
714
Willy Tarreau4596fe22022-05-17 19:07:51 +0200715/* returns true if the front connection has too many stream connectors attached */
Willy Tarreau36c22322022-05-27 10:41:24 +0200716static inline int h2_frt_has_too_many_sc(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200717{
Willy Tarreau36c22322022-05-27 10:41:24 +0200718 return h2c->nb_sc > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200719}
720
Willy Tarreau44e973f2018-03-01 17:49:30 +0100721/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
722 * flags are used to figure what buffer was requested. It returns 1 if the
723 * allocation succeeds, in which case the connection is woken up, or 0 if it's
724 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200725 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100726static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200727{
728 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100729 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200730
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100731 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc(&h2c->dbuf)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200732 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200733 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200734 return 1;
735 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200736
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100737 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc(br_tail(h2c->mbuf))) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100738 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200739
740 if (h2c->flags & H2_CF_DEM_MROOM) {
741 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200742 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200743 }
Willy Tarreau14398122017-09-22 14:26:04 +0200744 return 1;
745 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100746
747 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
Willy Tarreau7be4ee02022-05-18 07:31:41 +0200748 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s_sc(h2s) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100749 b_alloc(&h2s->rxbuf)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100750 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200751 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100752 return 1;
753 }
754
Willy Tarreau14398122017-09-22 14:26:04 +0200755 return 0;
756}
757
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200758static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200759{
760 struct buffer *buf = NULL;
761
Willy Tarreau2b718102021-04-21 07:32:39 +0200762 if (likely(!LIST_INLIST(&h2c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100763 unlikely((buf = b_alloc(bptr)) == NULL)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100764 h2c->buf_wait.target = h2c;
765 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreaub4e34762021-09-30 19:02:18 +0200766 LIST_APPEND(&th_ctx->buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200767 }
768 return buf;
769}
770
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200771static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200772{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200773 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100774 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100775 offer_buffers(NULL, 1);
Willy Tarreau14398122017-09-22 14:26:04 +0200776 }
777}
778
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200779static inline void h2_release_mbuf(struct h2c *h2c)
780{
781 struct buffer *buf;
782 unsigned int count = 0;
783
784 while (b_size(buf = br_head_pick(h2c->mbuf))) {
785 b_free(buf);
786 count++;
787 }
788 if (count)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100789 offer_buffers(NULL, count);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200790}
791
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100792/* returns the number of allocatable outgoing streams for the connection taking
793 * the last_sid and the reserved ones into account.
794 */
795static inline int h2_streams_left(const struct h2c *h2c)
796{
797 int ret;
798
799 /* consider the number of outgoing streams we're allowed to create before
800 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
801 * nb_reserved is the number of streams which don't yet have an ID.
802 */
803 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
804 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
805 if (ret < 0)
806 ret = 0;
807 return ret;
808}
809
Willy Tarreau00f18a32019-01-26 12:19:01 +0100810/* returns the number of streams in use on a connection to figure if it's
Willy Tarreau36c22322022-05-27 10:41:24 +0200811 * idle or not. We check nb_sc and not nb_streams as the caller will want
Willy Tarreau00f18a32019-01-26 12:19:01 +0100812 * to know if it was the last one after a detach().
813 */
814static int h2_used_streams(struct connection *conn)
815{
816 struct h2c *h2c = conn->ctx;
817
Willy Tarreau36c22322022-05-27 10:41:24 +0200818 return h2c->nb_sc;
Willy Tarreau00f18a32019-01-26 12:19:01 +0100819}
820
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100821/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100822static int h2_avail_streams(struct connection *conn)
823{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100824 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100825 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100826 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100827
Willy Tarreau6afec462019-01-28 06:40:19 +0100828 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
829 * streams on the connection.
830 */
831 if (h2c->last_sid >= 0)
832 return 0;
833
Willy Tarreauc61966f2019-10-31 15:10:03 +0100834 if (h2c->st0 >= H2_CS_ERROR)
835 return 0;
836
Willy Tarreau86949782019-01-31 10:42:05 +0100837 /* note: may be negative if a SETTINGS frame changes the limit */
838 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100839
840 /* we must also consider the limit imposed by stream IDs */
841 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100842 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100843 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100844 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
845 ret1 = MIN(ret1, ret2);
846 }
847 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100848}
849
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200850
Willy Tarreau62f52692017-10-08 23:01:42 +0200851/*****************************************************************/
852/* functions below are dedicated to the mux setup and management */
853/*****************************************************************/
854
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200855/* Initialize the mux once it's attached. For outgoing connections, the context
856 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200857 * connections from the fact that the context is still NULL (even during mux
858 * upgrades). <input> is always used as Input buffer and may contain data. It is
859 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200860 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200861static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
862 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200863{
864 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100865 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200866 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200867
Christopher Fauletf81ef032019-10-04 15:19:43 +0200868 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200869
Willy Tarreaubafbe012017-11-24 17:34:44 +0100870 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200871 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200872 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200873
Christopher Faulete9b70722019-04-08 10:46:02 +0200874 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200875 h2c->flags = H2_CF_IS_BACK;
876 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
877 if (tick_isset(prx->timeout.serverfin))
878 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100879
880 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
881 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200882 } else {
883 h2c->flags = H2_CF_NONE;
884 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
885 if (tick_isset(prx->timeout.clientfin))
886 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100887
888 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
889 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200890 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100891
Willy Tarreau0b37d652018-10-03 10:33:02 +0200892 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100893 h2c->task = NULL;
Willy Tarreau15a47332022-03-18 15:57:34 +0100894 h2c->idle_start = now_ms;
Willy Tarreau3f133572017-10-31 19:21:06 +0100895 if (tick_isset(h2c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +0200896 t = task_new_here();
Willy Tarreau3f133572017-10-31 19:21:06 +0100897 if (!t)
898 goto fail;
899
900 h2c->task = t;
901 t->process = h2_timeout_task;
902 t->context = h2c;
903 t->expire = tick_add(now_ms, h2c->timeout);
904 }
Willy Tarreauea392822017-10-31 10:02:25 +0100905
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200906 h2c->wait_event.tasklet = tasklet_new();
907 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200908 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200909 h2c->wait_event.tasklet->process = h2_io_cb;
910 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100911 h2c->wait_event.events = 0;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200912 if (!conn_is_back(conn)) {
913 /* Connection might already be in the stopping_list if subject
914 * to h1->h2 upgrade.
915 */
916 if (!LIST_INLIST(&conn->stopping_list)) {
917 LIST_APPEND(&mux_stopping_data[tid].list,
918 &conn->stopping_list);
919 }
920 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200921
Willy Tarreau2bdcc702020-05-19 11:31:11 +0200922 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +0200923 if (!h2c->ddht)
924 goto fail;
925
926 /* Initialise the context. */
927 h2c->st0 = H2_CS_PREFACE;
928 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100929 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200930 h2c->max_id = -1;
931 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100932 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200933 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +0100934 h2c->nb_streams = 0;
Willy Tarreau36c22322022-05-27 10:41:24 +0200935 h2c->nb_sc = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100936 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100937 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200938
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200939 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200940 h2c->dsi = -1;
941 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100942
Willy Tarreau32218eb2017-09-22 08:07:25 +0200943 h2c->last_sid = -1;
944
Willy Tarreau51330962019-05-26 09:38:07 +0200945 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +0200946 h2c->miw = 65535; /* mux initial window size */
947 h2c->mws = 65535; /* mux window size */
948 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +0200949 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200950 LIST_INIT(&h2c->send_list);
951 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200952 LIST_INIT(&h2c->blocked_list);
Willy Tarreau90f366b2021-02-20 11:49:49 +0100953 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200954
Christopher Fauletf81ef032019-10-04 15:19:43 +0200955 conn->ctx = h2c;
956
Willy Tarreau8e6f7492021-06-16 17:47:24 +0200957 TRACE_USER("new H2 connection", H2_EV_H2C_NEW, conn);
958
Willy Tarreau3f133572017-10-31 19:21:06 +0100959 if (t)
960 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +0100961
Willy Tarreau01b44822018-10-03 14:26:37 +0200962 if (h2c->flags & H2_CF_IS_BACK) {
963 /* FIXME: this is temporary, for outgoing connections we need
964 * to immediately allocate a stream until the code is modified
Willy Tarreau36c22322022-05-27 10:41:24 +0200965 * so that the caller calls ->attach(). For now the outgoing sc
Christopher Fauletf81ef032019-10-04 15:19:43 +0200966 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +0200967 */
968 struct h2s *h2s;
969
Christopher Fauletf81ef032019-10-04 15:19:43 +0200970 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +0200971 if (!h2s)
972 goto fail_stream;
973 }
974
Willy Tarreau4781b152021-04-06 13:53:36 +0200975 HA_ATOMIC_INC(&h2c->px_counters->open_conns);
976 HA_ATOMIC_INC(&h2c->px_counters->total_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100977
Willy Tarreau0f383582018-10-03 14:22:21 +0200978 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200979 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +0200980 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200981 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +0200982 fail_stream:
983 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +0200984 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200985 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200986 if (h2c->wait_event.tasklet)
987 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100988 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +0200989 fail_no_h2c:
Willy Tarreau3b990fe2022-01-12 17:24:26 +0100990 if (!conn_is_back(conn))
991 LIST_DEL_INIT(&conn->stopping_list);
Christopher Fauletf81ef032019-10-04 15:19:43 +0200992 conn->ctx = conn_ctx; /* restore saved ctx */
993 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200994 return -1;
995}
996
Willy Tarreau751f2d02018-10-05 09:35:00 +0200997/* returns the next allocatable outgoing stream ID for the H2 connection, or
998 * -1 if no more is allocatable.
999 */
1000static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1001{
1002 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001003
1004 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001005 id = -1;
1006 return id;
1007}
1008
Willy Tarreau2373acc2017-10-12 17:35:14 +02001009/* returns the stream associated with id <id> or NULL if not found */
1010static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1011{
1012 struct eb32_node *node;
1013
Willy Tarreau751f2d02018-10-05 09:35:00 +02001014 if (id == 0)
1015 return (struct h2s *)h2_closed_stream;
1016
Willy Tarreau2a856182017-05-16 15:20:39 +02001017 if (id > h2c->max_id)
1018 return (struct h2s *)h2_idle_stream;
1019
Willy Tarreau2373acc2017-10-12 17:35:14 +02001020 node = eb32_lookup(&h2c->streams_by_id, id);
1021 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001022 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001023
1024 return container_of(node, struct h2s, by_id);
1025}
1026
Christopher Faulet73c12072019-04-08 11:23:22 +02001027/* release function. This one should be called to free all resources allocated
1028 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001029 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001030static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001031{
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001032 struct connection *conn = h2c->conn;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001033
Willy Tarreau7838a792019-08-12 18:42:03 +02001034 TRACE_ENTER(H2_EV_H2C_END);
1035
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001036 hpack_dht_free(h2c->ddht);
Christopher Faulet61840e72019-04-15 09:33:32 +02001037
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001038 if (LIST_INLIST(&h2c->buf_wait.list))
1039 LIST_DEL_INIT(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001040
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001041 h2_release_buf(h2c, &h2c->dbuf);
1042 h2_release_mbuf(h2c);
Willy Tarreau14398122017-09-22 14:26:04 +02001043
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001044 if (h2c->task) {
1045 h2c->task->context = NULL;
1046 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
1047 h2c->task = NULL;
1048 }
1049 if (h2c->wait_event.tasklet)
1050 tasklet_free(h2c->wait_event.tasklet);
1051 if (conn && h2c->wait_event.events != 0)
1052 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
1053 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001054
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001055 HA_ATOMIC_DEC(&h2c->px_counters->open_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001056
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001057 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001058
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001059 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001060 if (!conn_is_back(conn))
1061 LIST_DEL_INIT(&conn->stopping_list);
1062
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001063 conn->mux = NULL;
1064 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001065 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001066
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001067 conn_stop_tracking(conn);
Willy Tarreau0b222472021-10-21 22:24:31 +02001068
1069 /* there might be a GOAWAY frame still pending in the TCP
1070 * stack, and if the peer continues to send (i.e. window
1071 * updates etc), this can result in losing the GOAWAY. For
1072 * this reason we try to drain anything received in between.
1073 */
1074 conn->flags |= CO_FL_WANT_DRAIN;
1075
1076 conn_xprt_shutw(conn);
1077 conn_xprt_close(conn);
1078 conn_sock_shutw(conn, !conn_is_back(conn));
1079 conn_ctrl_close(conn);
1080
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001081 if (conn->destroy_cb)
1082 conn->destroy_cb(conn);
1083 conn_free(conn);
1084 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001085
1086 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001087}
1088
1089
Willy Tarreau71681172017-10-23 14:39:06 +02001090/******************************************************/
1091/* functions below are for the H2 protocol processing */
1092/******************************************************/
1093
1094/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001095static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001096{
1097 return h2s ? h2s->id : 0;
1098}
1099
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001100/* returns the sum of the stream's own window size and the mux's initial
1101 * window, which together form the stream's effective window size.
1102 */
1103static inline int h2s_mws(const struct h2s *h2s)
1104{
1105 return h2s->sws + h2s->h2c->miw;
1106}
1107
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001108/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001109static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001110{
1111 if (h2c->msi < 0)
1112 return 0;
1113
1114 if (h2c->msi == h2s_id(h2s))
1115 return 0;
1116
1117 return 1;
1118}
1119
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001120/* marks an error on the connection. Before settings are sent, we must not send
1121 * a GOAWAY frame, and the error state will prevent h2c_send_goaway_error()
1122 * from verifying this so we set H2_CF_GOAWAY_FAILED to make sure it will not
1123 * even try.
1124 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001125static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001126{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001127 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001128 h2c->errcode = err;
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001129 if (h2c->st0 < H2_CS_SETTINGS1)
1130 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau741d6df2017-10-17 08:00:59 +02001131 h2c->st0 = H2_CS_ERROR;
1132}
1133
Willy Tarreau175cebb2019-01-24 10:02:24 +01001134/* marks an error on the stream. It may also update an already closed stream
1135 * (e.g. to report an error after an RST was received).
1136 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001137static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001138{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001139 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001140 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001141 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001142 if (h2s->st < H2_SS_ERROR)
1143 h2s->st = H2_SS_ERROR;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001144 se_fl_set_error(h2s->sd);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001145 }
1146}
1147
Willy Tarreau7e094452018-12-19 18:08:52 +01001148/* attempt to notify the data layer of recv availability */
1149static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1150{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001151 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001152 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001153 tasklet_wakeup(h2s->subs->tasklet);
1154 h2s->subs->events &= ~SUB_RETRY_RECV;
1155 if (!h2s->subs->events)
1156 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001157 }
1158}
1159
1160/* attempt to notify the data layer of send availability */
1161static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1162{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001163 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001164 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001165 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001166 tasklet_wakeup(h2s->subs->tasklet);
1167 h2s->subs->events &= ~SUB_RETRY_SEND;
1168 if (!h2s->subs->events)
1169 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001170 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001171 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1172 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1173 tasklet_wakeup(h2s->shut_tl);
1174 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001175}
1176
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001177/* alerts the data layer, trying to wake it up by all means, following
1178 * this sequence :
1179 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1180 * - if its subscribed to send, then it's woken up for send
1181 * - if it was subscribed to neither, its ->wake() callback is called
1182 * It is safe to call this function with a closed stream which doesn't have a
Willy Tarreau4596fe22022-05-17 19:07:51 +02001183 * stream connector anymore.
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001184 */
1185static void __maybe_unused h2s_alert(struct h2s *h2s)
1186{
Willy Tarreau7838a792019-08-12 18:42:03 +02001187 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1188
Willy Tarreauf96508a2020-01-10 11:12:48 +01001189 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001190 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001191 h2s_notify_recv(h2s);
1192 h2s_notify_send(h2s);
1193 }
Willy Tarreau2f2318d2022-05-18 10:17:16 +02001194 else if (h2s_sc(h2s) && h2s_sc(h2s)->app_ops->wake != NULL) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001195 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau2f2318d2022-05-18 10:17:16 +02001196 h2s_sc(h2s)->app_ops->wake(h2s_sc(h2s));
Willy Tarreau7838a792019-08-12 18:42:03 +02001197 }
1198
1199 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001200}
1201
Willy Tarreaue4820742017-07-27 13:37:23 +02001202/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001203static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001204{
1205 uint8_t *out = frame;
1206
1207 *out = len >> 16;
1208 write_n16(out + 1, len);
1209}
1210
Willy Tarreau54c15062017-10-10 17:10:03 +02001211/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1212 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1213 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001214 * available in the buffer's input prior to calling this function. The buffer
1215 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001216 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001217static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001218 const struct buffer *b, int o)
1219{
Willy Tarreau591d4452018-06-15 17:21:00 +02001220 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 +02001221}
1222
Willy Tarreau1f094672017-11-20 21:27:45 +01001223static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001224{
Willy Tarreau591d4452018-06-15 17:21:00 +02001225 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001226}
1227
Willy Tarreau1f094672017-11-20 21:27:45 +01001228static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001229{
Willy Tarreau591d4452018-06-15 17:21:00 +02001230 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001231}
1232
Willy Tarreau1f094672017-11-20 21:27:45 +01001233static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001234{
Willy Tarreau591d4452018-06-15 17:21:00 +02001235 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001236}
1237
1238
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001239/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1240 * The algorithm is not obvious. It turns out that H2 headers are neither
1241 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1242 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001243 *
1244 * b0 b1 b2 b3 b4 b5..b8
1245 * +----------+---------+--------+----+----+----------------------+
1246 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1247 * +----------+---------+--------+----+----+----------------------+
1248 *
1249 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1250 * we get the sid properly aligned and ordered, and 16 bits of len properly
1251 * ordered as well. The type and flags can be extracted using bit shifts from
1252 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001253 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1254 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001255 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001256static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001257{
1258 uint64_t w;
1259
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001260 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001261 return 0;
1262
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001263 w = h2_get_n64(b, o + 1);
1264 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001265 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1266 h->ff = w >> 32;
1267 h->ft = w >> 40;
1268 h->len += w >> 48;
1269 return 1;
1270}
1271
1272/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1273 * h2_peek_frame_hdr() above.
1274 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001275static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001276{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001277 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001278}
1279
1280/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001281static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001282{
1283 int ret;
1284
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001285 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001286 if (ret > 0)
1287 h2_skip_frame_hdr(b);
1288 return ret;
1289}
1290
Willy Tarreaucb985a42019-10-07 16:56:34 +02001291
1292/* try to fragment the headers frame present at the beginning of buffer <b>,
1293 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1294 * success. Typical causes of failure include a buffer not large enough to
1295 * add extra frame headers. The existing frame size is read in the current
1296 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1297 * and its length will be adjusted. The stream ID for continuation frames will
1298 * be copied from the initial frame's.
1299 */
1300static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1301{
1302 size_t remain = b->data - 9;
1303 int extra_frames = (remain - 1) / mfs;
1304 size_t fsize;
1305 char *fptr;
1306 int frame;
1307
1308 if (b->data <= mfs + 9)
1309 return 1;
1310
1311 /* Too large a frame, we need to fragment it using CONTINUATION
1312 * frames. We start from the end and move tails as needed.
1313 */
1314 if (b->data + extra_frames * 9 > b->size)
1315 return 0;
1316
1317 for (frame = extra_frames; frame; frame--) {
1318 fsize = ((remain - 1) % mfs) + 1;
1319 remain -= fsize;
1320
1321 /* move data */
1322 fptr = b->area + 9 + remain + (frame - 1) * 9;
1323 memmove(fptr + 9, b->area + 9 + remain, fsize);
1324 b->data += 9;
1325
1326 /* write new frame header */
1327 h2_set_frame_size(fptr, fsize);
1328 fptr[3] = H2_FT_CONTINUATION;
1329 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1330 write_n32(fptr + 5, read_n32(b->area + 5));
1331 }
1332
1333 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1334 h2_set_frame_size(b->area, remain);
1335 return 1;
1336}
1337
1338
Willy Tarreau00dd0782018-03-01 16:31:34 +01001339/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1340 * its connection if the stream was not yet closed. Please use this exclusively
1341 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001342 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001343static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001344{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001345 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001346 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001347 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001348 if (!h2s->id)
1349 h2s->h2c->nb_reserved--;
Willy Tarreau7be4ee02022-05-18 07:31:41 +02001350 if (h2s_sc(h2s)) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001351 if (!se_fl_test(h2s->sd, SE_FL_EOS) && !b_data(&h2s->rxbuf))
Willy Tarreaua27db382019-03-25 18:13:16 +01001352 h2s_notify_recv(h2s);
1353 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001354 HA_ATOMIC_DEC(&h2s->h2c->px_counters->open_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001355
Willy Tarreau7838a792019-08-12 18:42:03 +02001356 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001357 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001358 h2s->st = H2_SS_CLOSED;
1359}
1360
Willy Tarreau71049cc2018-03-28 13:56:39 +02001361/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001362/* h2s_destroy should only ever be called by the thread that owns the stream,
1363 * that means that a tasklet should be used if we want to destroy the h2s
1364 * from another thread
1365 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001366static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001367{
Willy Tarreau7838a792019-08-12 18:42:03 +02001368 struct connection *conn = h2s->h2c->conn;
1369
1370 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1371
Willy Tarreau0a10de62018-03-01 16:27:53 +01001372 h2s_close(h2s);
1373 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001374 if (b_size(&h2s->rxbuf)) {
1375 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01001376 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02001377 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001378
1379 if (h2s->subs)
1380 h2s->subs->events = 0;
1381
Joseph Herlantd77575d2018-11-25 10:54:45 -08001382 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001383 * reference left would be in the h2c send_list/fctl_list, and if
1384 * we're in it, we're getting out anyway
1385 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001386 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001387
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001388 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001389 tasklet_free(h2s->shut_tl);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001390 BUG_ON(h2s->sd && !se_fl_test(h2s->sd, SE_FL_ORPHAN));
1391 sedesc_free(h2s->sd);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001392 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001393
1394 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001395}
1396
Willy Tarreaua8e49542018-10-03 18:53:55 +02001397/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1398 * stream tree. In case of error, nothing is added and NULL is returned. The
1399 * causes of errors can be any failed memory allocation. The caller is
1400 * responsible for checking if the connection may support an extra stream
1401 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001402 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001403static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001404{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001405 struct h2s *h2s;
1406
Willy Tarreau7838a792019-08-12 18:42:03 +02001407 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1408
Willy Tarreaubafbe012017-11-24 17:34:44 +01001409 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001410 if (!h2s)
1411 goto out;
1412
Willy Tarreau5723f292020-01-10 15:16:57 +01001413 h2s->shut_tl = tasklet_new();
1414 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001415 pool_free(pool_head_h2s, h2s);
1416 goto out;
1417 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001418 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001419 h2s->shut_tl->process = h2_deferred_shut;
1420 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001421 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001422 h2s->h2c = h2c;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001423 h2s->sd = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001424 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001425 h2s->flags = H2_SF_NONE;
1426 h2s->errcode = H2_ERR_NO_ERROR;
1427 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001428 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001429 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001430 h2s->rxbuf = BUF_NULL;
Amaury Denoyelle74162742020-12-11 17:53:05 +01001431 memset(h2s->upgrade_protocol, 0, sizeof(h2s->upgrade_protocol));
Willy Tarreau751f2d02018-10-05 09:35:00 +02001432
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001433 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001434 if (id > 0)
1435 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001436 else
1437 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001438
1439 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001440 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001441 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001442
Willy Tarreau4781b152021-04-06 13:53:36 +02001443 HA_ATOMIC_INC(&h2c->px_counters->open_streams);
1444 HA_ATOMIC_INC(&h2c->px_counters->total_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001445
Willy Tarreau7838a792019-08-12 18:42:03 +02001446 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001447 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001448 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001449 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001450 return NULL;
1451}
1452
1453/* creates a new stream <id> on the h2c connection and returns it, or NULL in
Christopher Faulet7d013e72020-12-15 16:56:50 +01001454 * case of memory allocation error. <input> is used as input buffer for the new
1455 * stream. On success, it is transferred to the stream and the mux is no longer
1456 * responsible of it. On error, <input> is unchanged, thus the mux must still
1457 * take care of it.
Willy Tarreaua8e49542018-10-03 18:53:55 +02001458 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001459static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id, struct buffer *input, uint32_t flags)
Willy Tarreaua8e49542018-10-03 18:53:55 +02001460{
1461 struct session *sess = h2c->conn->owner;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001462 struct h2s *h2s;
1463
Willy Tarreau7838a792019-08-12 18:42:03 +02001464 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1465
Willy Tarreaue872f752022-05-12 09:24:41 +02001466 if (h2c->nb_streams >= h2_settings_max_concurrent_streams) {
1467 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 +02001468 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001469 }
Willy Tarreaua8e49542018-10-03 18:53:55 +02001470
1471 h2s = h2s_new(h2c, id);
1472 if (!h2s)
Willy Tarreaue872f752022-05-12 09:24:41 +02001473 goto out_alloc;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001474
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001475 h2s->sd = sedesc_new();
1476 if (!h2s->sd)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001477 goto out_close;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001478 h2s->sd->se = h2s;
1479 h2s->sd->conn = h2c->conn;
1480 se_fl_set(h2s->sd, SE_FL_T_MUX | SE_FL_ORPHAN | SE_FL_NOT_FIRST);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001481
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001482 /* FIXME wrong analogy between ext-connect and websocket, this need to
1483 * be refine.
1484 */
1485 if (flags & H2_SF_EXT_CONNECT_RCVD)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001486 se_fl_set(h2s->sd, SE_FL_WEBSOCKET);
Christopher Fauletb669d682022-03-22 18:37:19 +01001487
Willy Tarreaud0de6772022-02-04 09:05:37 +01001488 /* The stream will record the request's accept date (which is either the
1489 * end of the connection's or the date immediately after the previous
1490 * request) and the idle time, which is the delay since the previous
1491 * request. We can set the value now, it will be copied by stream_new().
1492 */
1493 sess->t_idle = tv_ms_elapsed(&sess->tv_accept, &now) - sess->t_handshake;
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001494
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001495 if (!sc_new_from_endp(h2s->sd, sess, input))
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001496 goto out_close;
Willy Tarreaucd6bb1a2022-05-10 15:00:03 +02001497
Willy Tarreau36c22322022-05-27 10:41:24 +02001498 h2c->nb_sc++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001499
Willy Tarreau590a0512018-09-05 11:56:48 +02001500 /* We want the accept date presented to the next stream to be the one
1501 * we have now, the handshake time to be null (since the next stream
1502 * is not delayed by a handshake), and the idle time to count since
1503 * right now.
1504 */
1505 sess->accept_date = date;
1506 sess->tv_accept = now;
1507 sess->t_handshake = 0;
Willy Tarreaud0de6772022-02-04 09:05:37 +01001508 sess->t_idle = 0;
Willy Tarreau590a0512018-09-05 11:56:48 +02001509
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001510 /* OK done, the stream lives its own life now */
Willy Tarreau36c22322022-05-27 10:41:24 +02001511 if (h2_frt_has_too_many_sc(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001512 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001513 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001514 return h2s;
1515
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001516 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001517 h2s_destroy(h2s);
Willy Tarreaue872f752022-05-12 09:24:41 +02001518 out_alloc:
1519 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 +02001520 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001521 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001522 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001523 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001524}
1525
Willy Tarreau36c22322022-05-27 10:41:24 +02001526/* allocates a new stream associated to stream connector <sc> on the h2c
Willy Tarreau4596fe22022-05-17 19:07:51 +02001527 * connection and returns it, or NULL in case of memory allocation error or if
1528 * the highest possible stream ID was reached.
Willy Tarreau751f2d02018-10-05 09:35:00 +02001529 */
Willy Tarreau36c22322022-05-27 10:41:24 +02001530static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct stconn *sc, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001531{
1532 struct h2s *h2s = NULL;
1533
Willy Tarreau7838a792019-08-12 18:42:03 +02001534 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1535
Willy Tarreaue872f752022-05-12 09:24:41 +02001536 if (h2c->nb_streams >= h2c->streams_limit) {
1537 TRACE_ERROR("Aborting stream since negotiated limit is too low", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001538 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001539 }
Willy Tarreau751f2d02018-10-05 09:35:00 +02001540
Willy Tarreaue872f752022-05-12 09:24:41 +02001541 if (h2_streams_left(h2c) < 1) {
1542 TRACE_ERROR("Aborting stream since no more streams left", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreaua80dca82019-01-24 17:08:28 +01001543 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001544 }
Willy Tarreaua80dca82019-01-24 17:08:28 +01001545
Willy Tarreau751f2d02018-10-05 09:35:00 +02001546 /* Defer choosing the ID until we send the first message to create the stream */
1547 h2s = h2s_new(h2c, 0);
Willy Tarreaue872f752022-05-12 09:24:41 +02001548 if (!h2s) {
1549 TRACE_ERROR("Failed to allocate a new stream", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001550 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001551 }
Willy Tarreau751f2d02018-10-05 09:35:00 +02001552
Willy Tarreau36c22322022-05-27 10:41:24 +02001553 if (sc_attach_mux(sc, h2s, h2c->conn) < 0) {
Willy Tarreaue872f752022-05-12 09:24:41 +02001554 TRACE_ERROR("Failed to allocate a new stream", H2_EV_H2S_NEW, h2c->conn);
Christopher Faulet070b91b2022-03-31 19:27:18 +02001555 h2s_destroy(h2s);
1556 h2s = NULL;
1557 goto out;
1558 }
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001559 h2s->sd = sc->sedesc;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001560 h2s->sess = sess;
Willy Tarreau36c22322022-05-27 10:41:24 +02001561 h2c->nb_sc++;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001562
Willy Tarreau751f2d02018-10-05 09:35:00 +02001563 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001564 if (likely(h2s))
1565 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1566 else
1567 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001568 return h2s;
1569}
1570
Willy Tarreaube5b7152017-09-25 16:25:39 +02001571/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1572 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1573 * the various settings codes.
1574 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001575static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001576{
1577 struct buffer *res;
1578 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001579 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001580 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001581 int ret = 0;
1582
1583 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001584
1585 if (h2c_mux_busy(h2c, NULL)) {
1586 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001587 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001588 }
1589
Willy Tarreaube5b7152017-09-25 16:25:39 +02001590 chunk_init(&buf, buf_data, sizeof(buf_data));
1591 chunk_memcpy(&buf,
1592 "\x00\x00\x00" /* length : 0 for now */
1593 "\x04\x00" /* type : 4 (settings), flags : 0 */
1594 "\x00\x00\x00\x00", /* stream ID : 0 */
1595 9);
1596
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001597 if (h2c->flags & H2_CF_IS_BACK) {
1598 /* send settings_enable_push=0 */
1599 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1600 }
1601
Amaury Denoyellebefeae82021-07-09 17:14:30 +02001602 /* rfc 8441 #3 SETTINGS_ENABLE_CONNECT_PROTOCOL=1,
1603 * sent automatically unless disabled in the global config */
1604 if (!(global.tune.options & GTUNE_DISABLE_H2_WEBSOCKET))
1605 chunk_memcat(&buf, "\x00\x08\x00\x00\x00\x01", 6);
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01001606
Willy Tarreaube5b7152017-09-25 16:25:39 +02001607 if (h2_settings_header_table_size != 4096) {
1608 char str[6] = "\x00\x01"; /* header_table_size */
1609
1610 write_n32(str + 2, h2_settings_header_table_size);
1611 chunk_memcat(&buf, str, 6);
1612 }
1613
1614 if (h2_settings_initial_window_size != 65535) {
1615 char str[6] = "\x00\x04"; /* initial_window_size */
1616
1617 write_n32(str + 2, h2_settings_initial_window_size);
1618 chunk_memcat(&buf, str, 6);
1619 }
1620
1621 if (h2_settings_max_concurrent_streams != 0) {
1622 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1623
1624 /* Note: 0 means "unlimited" for haproxy's config but not for
1625 * the protocol, so never send this value!
1626 */
1627 write_n32(str + 2, h2_settings_max_concurrent_streams);
1628 chunk_memcat(&buf, str, 6);
1629 }
1630
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001631 mfs = h2_settings_max_frame_size;
1632 if (mfs > global.tune.bufsize)
1633 mfs = global.tune.bufsize;
1634
1635 if (!mfs)
1636 mfs = global.tune.bufsize;
1637
1638 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001639 char str[6] = "\x00\x05"; /* max_frame_size */
1640
1641 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1642 * match bufsize - rewrite size, but at the moment it seems
1643 * that clients don't take care of it.
1644 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001645 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001646 chunk_memcat(&buf, str, 6);
1647 }
1648
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001649 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001650
1651 res = br_tail(h2c->mbuf);
1652 retry:
1653 if (!h2_get_buf(h2c, res)) {
1654 h2c->flags |= H2_CF_MUX_MALLOC;
1655 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001656 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001657 }
1658
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001659 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001660 if (unlikely(ret <= 0)) {
1661 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001662 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1663 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001664 h2c->flags |= H2_CF_MUX_MFULL;
1665 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001666 }
1667 else {
1668 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001669 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001670 }
1671 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001672 out:
1673 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001674 return ret;
1675}
1676
Willy Tarreau52eed752017-09-22 15:05:09 +02001677/* Try to receive a connection preface, then upon success try to send our
1678 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1679 * missing data. It may return an error in h2c.
1680 */
1681static int h2c_frt_recv_preface(struct h2c *h2c)
1682{
1683 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001684 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001685
Willy Tarreau7838a792019-08-12 18:42:03 +02001686 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1687
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001688 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001689
1690 if (unlikely(ret1 <= 0)) {
Christopher Fauletb5f7b522021-07-26 12:06:53 +02001691 if (!ret1)
1692 h2c->flags |= H2_CF_DEM_SHORT_READ;
Amaury Denoyellea8879232020-10-27 17:16:03 +01001693 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001694 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 +02001695 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauee4684f2021-06-17 08:08:48 +02001696 if (b_data(&h2c->dbuf) ||
1697 !(((const struct session *)h2c->conn->owner)->fe->options & PR_O_IGNORE_PRB))
1698 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001699 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001700 ret2 = 0;
1701 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001702 }
1703
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001704 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001705 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001706 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001707 out:
1708 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001709 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001710}
1711
Willy Tarreau01b44822018-10-03 14:26:37 +02001712/* Try to send a connection preface, then upon success try to send our
1713 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1714 * missing data. It may return an error in h2c.
1715 */
1716static int h2c_bck_send_preface(struct h2c *h2c)
1717{
1718 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001719 int ret = 0;
1720
1721 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001722
1723 if (h2c_mux_busy(h2c, NULL)) {
1724 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001725 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001726 }
1727
Willy Tarreaubcc45952019-05-26 10:05:50 +02001728 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001729 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001730 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001731 h2c->flags |= H2_CF_MUX_MALLOC;
1732 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001733 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001734 }
1735
1736 if (!b_data(res)) {
1737 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001738 ret = b_istput(res, ist(H2_CONN_PREFACE));
1739 if (unlikely(ret <= 0)) {
1740 if (!ret) {
1741 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1742 goto retry;
1743 h2c->flags |= H2_CF_MUX_MFULL;
1744 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001745 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001746 }
1747 else {
1748 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001749 ret = 0;
1750 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001751 }
1752 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001753 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001754 ret = h2c_send_settings(h2c);
1755 out:
1756 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1757 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001758}
1759
Willy Tarreau081d4722017-05-16 21:51:05 +02001760/* try to send a GOAWAY frame on the connection to report an error or a graceful
1761 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1762 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1763 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1764 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1765 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1766 * on unrecoverable failure. It will not attempt to send one again in this last
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001767 * case, nor will it send one if settings were not sent (e.g. still waiting for
1768 * a preface) so that it is safe to use h2c_error() to report such errors.
Willy Tarreau081d4722017-05-16 21:51:05 +02001769 */
1770static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1771{
1772 struct buffer *res;
1773 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001774 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001775
Willy Tarreau7838a792019-08-12 18:42:03 +02001776 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1777
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001778 if ((h2c->flags & H2_CF_GOAWAY_FAILED) || h2c->st0 < H2_CS_SETTINGS1) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001779 ret = 1; // claim that it worked
1780 goto out;
1781 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001782
1783 if (h2c_mux_busy(h2c, h2s)) {
1784 if (h2s)
1785 h2s->flags |= H2_SF_BLK_MBUSY;
1786 else
1787 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001788 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001789 }
1790
Willy Tarreau9c218e72019-05-26 10:08:28 +02001791 /* len: 8, type: 7, flags: none, sid: 0 */
1792 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1793
1794 if (h2c->last_sid < 0)
1795 h2c->last_sid = h2c->max_id;
1796
1797 write_n32(str + 9, h2c->last_sid);
1798 write_n32(str + 13, h2c->errcode);
1799
Willy Tarreaubcc45952019-05-26 10:05:50 +02001800 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001801 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001802 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001803 h2c->flags |= H2_CF_MUX_MALLOC;
1804 if (h2s)
1805 h2s->flags |= H2_SF_BLK_MROOM;
1806 else
1807 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001808 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001809 }
1810
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001811 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001812 if (unlikely(ret <= 0)) {
1813 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001814 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1815 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001816 h2c->flags |= H2_CF_MUX_MFULL;
1817 if (h2s)
1818 h2s->flags |= H2_SF_BLK_MROOM;
1819 else
1820 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001821 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001822 }
1823 else {
1824 /* we cannot report this error using GOAWAY, so we mark
1825 * it and claim a success.
1826 */
1827 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1828 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001829 ret = 1;
1830 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001831 }
1832 }
1833 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001834
1835 /* some codes are not for real errors, just attempts to close cleanly */
1836 switch (h2c->errcode) {
1837 case H2_ERR_NO_ERROR:
1838 case H2_ERR_ENHANCE_YOUR_CALM:
1839 case H2_ERR_REFUSED_STREAM:
1840 case H2_ERR_CANCEL:
1841 break;
1842 default:
Willy Tarreau4781b152021-04-06 13:53:36 +02001843 HA_ATOMIC_INC(&h2c->px_counters->goaway_resp);
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001844 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001845 out:
1846 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001847 return ret;
1848}
1849
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001850/* Try to send an RST_STREAM frame on the connection for the indicated stream
1851 * during mux operations. This stream must be valid and cannot be closed
1852 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1853 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1854 * not yet.
1855 *
1856 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1857 * to write the message, it subscribes the stream to future notifications.
1858 */
1859static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1860{
1861 struct buffer *res;
1862 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001863 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001864
Willy Tarreau7838a792019-08-12 18:42:03 +02001865 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1866
1867 if (!h2s || h2s->st == H2_SS_CLOSED) {
1868 ret = 1;
1869 goto out;
1870 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001871
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001872 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1873 * RST_STREAM in response to a RST_STREAM frame.
1874 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001875 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001876 ret = 1;
1877 goto ignore;
1878 }
1879
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001880 if (h2c_mux_busy(h2c, h2s)) {
1881 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001882 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001883 }
1884
Willy Tarreau9c218e72019-05-26 10:08:28 +02001885 /* len: 4, type: 3, flags: none */
1886 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1887 write_n32(str + 5, h2s->id);
1888 write_n32(str + 9, h2s->errcode);
1889
Willy Tarreaubcc45952019-05-26 10:05:50 +02001890 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001891 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001892 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001893 h2c->flags |= H2_CF_MUX_MALLOC;
1894 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001895 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001896 }
1897
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001898 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001899 if (unlikely(ret <= 0)) {
1900 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001901 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1902 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001903 h2c->flags |= H2_CF_MUX_MFULL;
1904 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001905 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001906 }
1907 else {
1908 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001909 ret = 0;
1910 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001911 }
1912 }
1913
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001914 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001915 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001916 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001917 out:
1918 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001919 return ret;
1920}
1921
1922/* Try to send an RST_STREAM frame on the connection for the stream being
1923 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001924 * error code, even if the stream is one of the dummy ones, and will update
1925 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001926 *
1927 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1928 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001929 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001930 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001931 */
1932static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1933{
1934 struct buffer *res;
1935 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001936 int ret = 0;
1937
1938 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001939
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001940 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1941 * RST_STREAM in response to a RST_STREAM frame.
1942 */
1943 if (h2c->dft == H2_FT_RST_STREAM) {
1944 ret = 1;
1945 goto ignore;
1946 }
1947
Willy Tarreau27a84c92017-10-17 08:10:17 +02001948 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001949 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001950 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001951 }
1952
Willy Tarreau9c218e72019-05-26 10:08:28 +02001953 /* len: 4, type: 3, flags: none */
1954 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1955
1956 write_n32(str + 5, h2c->dsi);
1957 write_n32(str + 9, h2s->errcode);
1958
Willy Tarreaubcc45952019-05-26 10:05:50 +02001959 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001960 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001961 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001962 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001963 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001964 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001965 }
1966
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001967 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02001968 if (unlikely(ret <= 0)) {
1969 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001970 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1971 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001972 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001973 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001974 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001975 }
1976 else {
1977 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001978 ret = 0;
1979 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001980 }
1981 }
1982
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001983 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02001984 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001985 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001986 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001987 }
1988
Willy Tarreau7838a792019-08-12 18:42:03 +02001989 out:
Willy Tarreau4781b152021-04-06 13:53:36 +02001990 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_resp);
Willy Tarreau7838a792019-08-12 18:42:03 +02001991 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001992 return ret;
1993}
1994
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001995/* try to send an empty DATA frame with the ES flag set to notify about the
1996 * end of stream and match a shutdown(write). If an ES was already sent as
1997 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
1998 * on success or zero if nothing was done. In case of lack of room to write the
1999 * message, it subscribes the requesting stream to future notifications.
2000 */
2001static int h2_send_empty_data_es(struct h2s *h2s)
2002{
2003 struct h2c *h2c = h2s->h2c;
2004 struct buffer *res;
2005 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002006 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002007
Willy Tarreau7838a792019-08-12 18:42:03 +02002008 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
2009
2010 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
2011 ret = 1;
2012 goto out;
2013 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002014
2015 if (h2c_mux_busy(h2c, h2s)) {
2016 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002017 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002018 }
2019
Willy Tarreau9c218e72019-05-26 10:08:28 +02002020 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
2021 memcpy(str, "\x00\x00\x00\x00\x01", 5);
2022 write_n32(str + 5, h2s->id);
2023
Willy Tarreaubcc45952019-05-26 10:05:50 +02002024 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002025 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002026 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002027 h2c->flags |= H2_CF_MUX_MALLOC;
2028 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002029 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002030 }
2031
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002032 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002033 if (likely(ret > 0)) {
2034 h2s->flags |= H2_SF_ES_SENT;
2035 }
2036 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002037 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2038 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002039 h2c->flags |= H2_CF_MUX_MFULL;
2040 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002041 }
2042 else {
2043 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002044 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002045 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002046 out:
2047 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002048 return ret;
2049}
2050
Willy Tarreau4596fe22022-05-17 19:07:51 +02002051/* wake a specific stream and assign its stream connector some SE_FL_* flags
2052 * among SE_FL_ERR_PENDING and SE_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002053 * is automatically updated accordingly. If the stream is orphaned, it is
2054 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002055 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002056static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002057{
Willy Tarreau7838a792019-08-12 18:42:03 +02002058 struct h2c *h2c = h2s->h2c;
2059
2060 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2061
Willy Tarreau7be4ee02022-05-18 07:31:41 +02002062 if (!h2s_sc(h2s)) {
Christopher Fauletf02ca002019-03-07 16:21:34 +01002063 /* this stream was already orphaned */
2064 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002065 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002066 return;
2067 }
2068
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002069 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002070 if (h2s->st == H2_SS_OPEN)
2071 h2s->st = H2_SS_HREM;
2072 else if (h2s->st == H2_SS_HLOC)
2073 h2s_close(h2s);
2074 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002075
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002076 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
2077 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02002078 se_fl_set(h2s->sd, SE_FL_ERR_PENDING);
2079 if (se_fl_test(h2s->sd, SE_FL_EOS))
2080 se_fl_set(h2s->sd, SE_FL_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02002081
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002082 if (h2s->st < H2_SS_ERROR)
2083 h2s->st = H2_SS_ERROR;
2084 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002085
2086 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002087 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002088}
2089
2090/* wake the streams attached to the connection, whose id is greater than <last>
2091 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002092 */
Willy Tarreau23482912019-05-07 15:23:14 +02002093static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002094{
2095 struct eb32_node *node;
2096 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002097
Willy Tarreau7838a792019-08-12 18:42:03 +02002098 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2099
Christopher Fauletf02ca002019-03-07 16:21:34 +01002100 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002101 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2102 while (node) {
2103 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002104 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002105 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002106 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002107
Christopher Fauletf02ca002019-03-07 16:21:34 +01002108 /* Wake all streams with unassigned ID (ID == 0) */
2109 node = eb32_lookup(&h2c->streams_by_id, 0);
2110 while (node) {
2111 h2s = container_of(node, struct h2s, by_id);
2112 if (h2s->id > 0)
2113 break;
2114 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002115 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002116 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002117
2118 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002119}
2120
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002121/* Wake up all blocked streams whose window size has become positive after the
2122 * mux's initial window was adjusted. This should be done after having processed
2123 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002124 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002125static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002126{
2127 struct h2s *h2s;
2128 struct eb32_node *node;
2129
Willy Tarreau7838a792019-08-12 18:42:03 +02002130 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2131
Willy Tarreau3421aba2017-07-27 15:41:03 +02002132 node = eb32_first(&h2c->streams_by_id);
2133 while (node) {
2134 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002135 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002136 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002137 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002138 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2139 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002140 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002141 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002142 node = eb32_next(node);
2143 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002144
2145 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002146}
2147
2148/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2149 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002150 * return an error in h2c. The caller must have already verified frame length
2151 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002152 */
2153static int h2c_handle_settings(struct h2c *h2c)
2154{
2155 unsigned int offset;
2156 int error;
2157
Willy Tarreau7838a792019-08-12 18:42:03 +02002158 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2159
Willy Tarreau3421aba2017-07-27 15:41:03 +02002160 if (h2c->dff & H2_F_SETTINGS_ACK) {
2161 if (h2c->dfl) {
2162 error = H2_ERR_FRAME_SIZE_ERROR;
2163 goto fail;
2164 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002165 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002166 }
2167
Willy Tarreau3421aba2017-07-27 15:41:03 +02002168 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002169 if (b_data(&h2c->dbuf) < h2c->dfl) {
2170 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002171 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002172 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002173
2174 /* parse the frame */
2175 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002176 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2177 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002178
2179 switch (type) {
2180 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2181 /* we need to update all existing streams with the
2182 * difference from the previous iws.
2183 */
2184 if (arg < 0) { // RFC7540#6.5.2
2185 error = H2_ERR_FLOW_CONTROL_ERROR;
2186 goto fail;
2187 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002188 h2c->miw = arg;
2189 break;
2190 case H2_SETTINGS_MAX_FRAME_SIZE:
2191 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002192 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 +02002193 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002194 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002195 goto fail;
2196 }
2197 h2c->mfs = arg;
2198 break;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01002199 case H2_SETTINGS_HEADER_TABLE_SIZE:
2200 h2c->flags |= H2_CF_SHTS_UPDATED;
2201 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002202 case H2_SETTINGS_ENABLE_PUSH:
2203 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002204 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002205 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002206 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002207 goto fail;
2208 }
2209 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002210 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2211 if (h2c->flags & H2_CF_IS_BACK) {
2212 /* the limit is only for the backend; for the frontend it is our limit */
2213 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2214 arg = h2_settings_max_concurrent_streams;
2215 h2c->streams_limit = arg;
2216 }
2217 break;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002218 case H2_SETTINGS_ENABLE_CONNECT_PROTOCOL:
Amaury Denoyelle0df04362021-10-18 09:43:29 +02002219 if (arg == 1)
2220 h2c->flags |= H2_CF_RCVD_RFC8441;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002221 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002222 }
2223 }
2224
2225 /* need to ACK this frame now */
2226 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002227 done:
2228 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002229 return 1;
2230 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002231 if (!(h2c->flags & H2_CF_IS_BACK))
2232 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002233 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002234 out0:
2235 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 +02002236 return 0;
2237}
2238
2239/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2240 * success or one of the h2_status values.
2241 */
2242static int h2c_ack_settings(struct h2c *h2c)
2243{
2244 struct buffer *res;
2245 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002246 int ret = 0;
2247
2248 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002249
2250 if (h2c_mux_busy(h2c, NULL)) {
2251 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002252 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002253 }
2254
Willy Tarreau9c218e72019-05-26 10:08:28 +02002255 memcpy(str,
2256 "\x00\x00\x00" /* length : 0 (no data) */
2257 "\x04" "\x01" /* type : 4, flags : ACK */
2258 "\x00\x00\x00\x00" /* stream ID */, 9);
2259
Willy Tarreaubcc45952019-05-26 10:05:50 +02002260 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002261 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002262 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002263 h2c->flags |= H2_CF_MUX_MALLOC;
2264 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002265 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002266 }
2267
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002268 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002269 if (unlikely(ret <= 0)) {
2270 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002271 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2272 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002273 h2c->flags |= H2_CF_MUX_MFULL;
2274 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002275 }
2276 else {
2277 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002278 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002279 }
2280 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002281 out:
2282 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002283 return ret;
2284}
2285
Willy Tarreaucf68c782017-10-10 17:11:41 +02002286/* processes a PING frame and schedules an ACK if needed. The caller must pass
2287 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002288 * missing data. The caller must have already verified frame length
2289 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002290 */
2291static int h2c_handle_ping(struct h2c *h2c)
2292{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002293 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002294 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002295 h2c->st0 = H2_CS_FRAME_A;
2296 return 1;
2297}
2298
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002299/* Try to send a window update for stream id <sid> and value <increment>.
2300 * Returns > 0 on success or zero on missing room or failure. It may return an
2301 * error in h2c.
2302 */
2303static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2304{
2305 struct buffer *res;
2306 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002307 int ret = 0;
2308
2309 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002310
2311 if (h2c_mux_busy(h2c, NULL)) {
2312 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002313 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002314 }
2315
Willy Tarreau9c218e72019-05-26 10:08:28 +02002316 /* length: 4, type: 8, flags: none */
2317 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2318 write_n32(str + 5, sid);
2319 write_n32(str + 9, increment);
2320
Willy Tarreaubcc45952019-05-26 10:05:50 +02002321 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002322 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002323 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002324 h2c->flags |= H2_CF_MUX_MALLOC;
2325 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002326 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002327 }
2328
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002329 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002330 if (unlikely(ret <= 0)) {
2331 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002332 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2333 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002334 h2c->flags |= H2_CF_MUX_MFULL;
2335 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002336 }
2337 else {
2338 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002339 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002340 }
2341 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002342 out:
2343 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002344 return ret;
2345}
2346
2347/* try to send pending window update for the connection. It's safe to call it
2348 * with no pending updates. Returns > 0 on success or zero on missing room or
2349 * failure. It may return an error in h2c.
2350 */
2351static int h2c_send_conn_wu(struct h2c *h2c)
2352{
2353 int ret = 1;
2354
Willy Tarreau7838a792019-08-12 18:42:03 +02002355 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2356
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002357 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002358 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002359
Willy Tarreau97aaa672018-12-23 09:49:04 +01002360 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2361 /* increase the advertised connection window to 2G on
2362 * first update.
2363 */
2364 h2c->flags |= H2_CF_WINDOW_OPENED;
2365 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2366 }
2367
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002368 /* send WU for the connection */
2369 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2370 if (ret > 0)
2371 h2c->rcvd_c = 0;
2372
Willy Tarreau7838a792019-08-12 18:42:03 +02002373 out:
2374 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002375 return ret;
2376}
2377
2378/* try to send pending window update for the current dmux stream. It's safe to
2379 * call it with no pending updates. Returns > 0 on success or zero on missing
2380 * room or failure. It may return an error in h2c.
2381 */
2382static int h2c_send_strm_wu(struct h2c *h2c)
2383{
2384 int ret = 1;
2385
Willy Tarreau7838a792019-08-12 18:42:03 +02002386 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2387
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002388 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002389 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002390
2391 /* send WU for the stream */
2392 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2393 if (ret > 0)
2394 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002395 out:
2396 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002397 return ret;
2398}
2399
Willy Tarreaucf68c782017-10-10 17:11:41 +02002400/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2401 * success, 0 on missing data or one of the h2_status values.
2402 */
2403static int h2c_ack_ping(struct h2c *h2c)
2404{
2405 struct buffer *res;
2406 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002407 int ret = 0;
2408
2409 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002410
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002411 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002412 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002413
2414 if (h2c_mux_busy(h2c, NULL)) {
2415 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002416 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002417 }
2418
Willy Tarreaucf68c782017-10-10 17:11:41 +02002419 memcpy(str,
2420 "\x00\x00\x08" /* length : 8 (same payload) */
2421 "\x06" "\x01" /* type : 6, flags : ACK */
2422 "\x00\x00\x00\x00" /* stream ID */, 9);
2423
2424 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002425 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002426
Willy Tarreau9c218e72019-05-26 10:08:28 +02002427 res = br_tail(h2c->mbuf);
2428 retry:
2429 if (!h2_get_buf(h2c, res)) {
2430 h2c->flags |= H2_CF_MUX_MALLOC;
2431 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002432 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002433 }
2434
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002435 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002436 if (unlikely(ret <= 0)) {
2437 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002438 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2439 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002440 h2c->flags |= H2_CF_MUX_MFULL;
2441 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002442 }
2443 else {
2444 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002445 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002446 }
2447 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002448 out:
2449 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002450 return ret;
2451}
2452
Willy Tarreau26f95952017-07-27 17:18:30 +02002453/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2454 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002455 * h2c or h2s. The caller must have already verified frame length and stream ID
2456 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002457 */
2458static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2459{
2460 int32_t inc;
2461 int error;
2462
Willy Tarreau7838a792019-08-12 18:42:03 +02002463 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2464
Willy Tarreau26f95952017-07-27 17:18:30 +02002465 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002466 if (b_data(&h2c->dbuf) < h2c->dfl) {
2467 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002468 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002469 }
Willy Tarreau26f95952017-07-27 17:18:30 +02002470
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002471 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002472
2473 if (h2c->dsi != 0) {
2474 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002475
2476 /* it's not an error to receive WU on a closed stream */
2477 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002478 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002479
2480 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002481 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 +02002482 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002483 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002484 goto strm_err;
2485 }
2486
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002487 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002488 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 +02002489 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002490 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002491 goto strm_err;
2492 }
2493
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002494 h2s->sws += inc;
2495 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002496 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002497 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002498 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2499 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002500 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002501 }
2502 }
2503 else {
2504 /* connection window update */
2505 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002506 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002507 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002508 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002509 goto conn_err;
2510 }
2511
2512 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2513 error = H2_ERR_FLOW_CONTROL_ERROR;
2514 goto conn_err;
2515 }
2516
2517 h2c->mws += inc;
2518 }
2519
Willy Tarreau7838a792019-08-12 18:42:03 +02002520 done:
2521 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002522 return 1;
2523
2524 conn_err:
2525 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002526 out0:
2527 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 +02002528 return 0;
2529
2530 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002531 h2s_error(h2s, error);
2532 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002533 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002534 return 0;
2535}
2536
Willy Tarreaue96b0922017-10-30 00:28:29 +01002537/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002538 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2539 * have already verified frame length and stream ID validity. Described in
2540 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002541 */
2542static int h2c_handle_goaway(struct h2c *h2c)
2543{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002544 int last;
2545
Willy Tarreau7838a792019-08-12 18:42:03 +02002546 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002547 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002548 if (b_data(&h2c->dbuf) < h2c->dfl) {
2549 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002550 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002551 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002552 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002553
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002554 last = h2_get_n32(&h2c->dbuf, 0);
2555 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002556 if (h2c->last_sid < 0)
2557 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002558 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002559 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002560 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002561}
2562
Willy Tarreau92153fc2017-12-03 19:46:19 +01002563/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002564 * invalid. Returns > 0 on success or zero on missing data. It may return an
2565 * error in h2c. The caller must have already verified frame length and stream
2566 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002567 */
2568static int h2c_handle_priority(struct h2c *h2c)
2569{
Willy Tarreau7838a792019-08-12 18:42:03 +02002570 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2571
Willy Tarreau92153fc2017-12-03 19:46:19 +01002572 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002573 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002574 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002575 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002576 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002577 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002578
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002579 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002580 /* 7540#5.3 : can't depend on itself */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002581 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002582 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02002583 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002584 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002585 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002586 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002587 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002588 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002589}
2590
Willy Tarreaucd234e92017-08-18 10:59:39 +02002591/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002592 * Returns > 0 on success or zero on missing data. The caller must have already
2593 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002594 */
2595static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2596{
Willy Tarreau7838a792019-08-12 18:42:03 +02002597 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2598
Willy Tarreaucd234e92017-08-18 10:59:39 +02002599 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002600 if (b_data(&h2c->dbuf) < h2c->dfl) {
2601 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 +02002602 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002603 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002604 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002605
2606 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002607 if (h2s->st == H2_SS_CLOSED) {
2608 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 +02002609 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002610 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002611
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002612 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002613 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002614
Willy Tarreau7be4ee02022-05-18 07:31:41 +02002615 if (h2s_sc(h2s)) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02002616 se_fl_set_error(h2s->sd);
Willy Tarreauf830f012018-12-19 17:44:55 +01002617 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002618 }
2619
2620 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002621 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002622 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002623}
2624
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002625/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2626 * It may return an error in h2c or h2s. The caller must consider that the
2627 * return value is the new h2s in case one was allocated (most common case).
2628 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002629 * errors here are reported as connection errors since it's impossible to
2630 * recover from such errors after the compression context has been altered.
2631 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002632static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002633{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002634 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002635 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002636 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002637 int error;
2638
Willy Tarreau7838a792019-08-12 18:42:03 +02002639 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2640
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002641 if (!b_size(&h2c->dbuf)) {
2642 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002643 goto out; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002644 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002645
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002646 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2647 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002648 goto out; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002649 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002650
2651 /* now either the frame is complete or the buffer is complete */
2652 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002653 /* The stream exists/existed, this must be a trailers frame */
2654 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002655 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len, NULL);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002656 /* unrecoverable error ? */
2657 if (h2c->st0 >= H2_CS_ERROR)
2658 goto out;
2659
Christopher Faulet485da0b2021-10-08 08:56:00 +02002660 if (error == 0) {
2661 /* Demux not blocked because of the stream, it is an incomplete frame */
2662 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2663 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002664 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002665 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002666
2667 if (error < 0) {
2668 /* Failed to decode this frame (e.g. too large request)
2669 * but the HPACK decompressor is still synchronized.
2670 */
2671 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2672 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002673 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002674 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002675 goto done;
2676 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002677 /* the connection was already killed by an RST, let's consume
2678 * the data and send another RST.
2679 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002680 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau1f035502019-01-30 11:44:07 +01002681 h2s = (struct h2s*)h2_error_stream;
2682 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002683 }
2684 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2685 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2686 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002687 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau4781b152021-04-06 13:53:36 +02002688 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002689 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002690 goto conn_err;
2691 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002692 else if (h2c->flags & H2_CF_DEM_TOOMANY)
Willy Tarreau36c22322022-05-27 10:41:24 +02002693 goto out; // IDLE but too many sc still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002694
Amaury Denoyelle74162742020-12-11 17:53:05 +01002695 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002696
Willy Tarreau25919232019-01-03 14:48:18 +01002697 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002698 if (h2c->st0 >= H2_CS_ERROR)
2699 goto out;
2700
Willy Tarreau25919232019-01-03 14:48:18 +01002701 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002702 if (error == 0) {
2703 /* Demux not blocked because of the stream, it is an incomplete frame */
2704 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2705 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau25919232019-01-03 14:48:18 +01002706 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002707 }
Willy Tarreau25919232019-01-03 14:48:18 +01002708
2709 /* Failed to decode this stream (e.g. too large request)
2710 * but the HPACK decompressor is still synchronized.
2711 */
2712 h2s = (struct h2s*)h2_error_stream;
2713 goto send_rst;
2714 }
2715
Willy Tarreau29268e92021-06-17 08:29:14 +02002716 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn, 0, &rxbuf);
2717
Willy Tarreau198b5072022-05-12 09:08:51 +02002718 /* Now we cannot roll back and we won't come back here anymore for this
2719 * stream, this stream ID is open.
2720 */
2721 if (h2c->dsi > h2c->max_id)
2722 h2c->max_id = h2c->dsi;
2723
Willy Tarreau22de8d32018-09-05 19:55:58 +02002724 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002725 * positively from h2c_frt_stream_new(), the stream will report the error,
2726 * and if we return in error, h2c_frt_stream_new() will emit the error.
Christopher Faulet7d013e72020-12-15 16:56:50 +01002727 *
2728 * Xfer the rxbuf to the stream. On success, the new stream owns the
2729 * rxbuf. On error, it is released here.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002730 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02002731 h2s = h2c_frt_stream_new(h2c, h2c->dsi, &rxbuf, flags);
Willy Tarreau13278b42017-10-13 19:23:14 +02002732 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002733 h2s = (struct h2s*)h2_refused_stream;
2734 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002735 }
2736
2737 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002738 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002739 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002740
Willy Tarreau88d138e2019-01-02 19:38:14 +01002741 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002742 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002743 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002744
2745 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002746 if (h2s->st == H2_SS_OPEN)
2747 h2s->st = H2_SS_HREM;
2748 else
2749 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002750 }
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002751 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002752
2753 conn_err:
2754 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002755 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002756
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002757 out:
2758 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002759 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 +01002760 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002761
2762 send_rst:
2763 /* make the demux send an RST for the current stream. We may only
2764 * do this if we're certain that the HEADERS frame was properly
2765 * decompressed so that the HPACK decoder is still kept up to date.
2766 */
2767 h2_release_buf(h2c, &rxbuf);
2768 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002769
Willy Tarreau022e5e52020-09-10 09:33:15 +02002770 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 +02002771 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002772 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002773}
2774
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002775/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2776 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2777 * errors here are reported as connection errors since it's impossible to
2778 * recover from such errors after the compression context has been altered.
2779 */
2780static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2781{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002782 struct buffer rxbuf = BUF_NULL;
2783 unsigned long long body_len = 0;
2784 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002785 int error;
2786
Willy Tarreau7838a792019-08-12 18:42:03 +02002787 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2788
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002789 if (!b_size(&h2c->dbuf)) {
2790 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002791 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002792 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002793
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002794 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2795 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002796 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002797 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002798
Christopher Faulet6884aa32019-09-23 15:28:20 +02002799 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002800 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len, h2s->upgrade_protocol);
Christopher Faulet6884aa32019-09-23 15:28:20 +02002801 }
2802 else {
2803 /* the connection was already killed by an RST, let's consume
2804 * the data and send another RST.
2805 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002806 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002807 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002808 h2c->st0 = H2_CS_FRAME_E;
2809 goto send_rst;
2810 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002811
Willy Tarreau25919232019-01-03 14:48:18 +01002812 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002813 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002814 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002815
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002816 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2817 /* RFC7540#5.1 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002818 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 +01002819 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2820 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002821 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002822 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002823 }
2824
Willy Tarreau25919232019-01-03 14:48:18 +01002825 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002826 if (error == 0) {
2827 /* Demux not blocked because of the stream, it is an incomplete frame */
2828 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2829 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002830 goto fail; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002831 }
Willy Tarreau25919232019-01-03 14:48:18 +01002832
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002833 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002834 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 +01002835 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002836 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 Tarreauc12f38f2018-10-08 14:53:27 +02002839 }
2840
Christopher Fauletfa922f02019-05-07 10:55:17 +02002841 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002842 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002843
Willy Tarreau95acc8b2022-05-27 16:14:10 +02002844 if (se_fl_test(h2s->sd, SE_FL_ERROR) && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002845 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002846 else if (h2s->flags & H2_SF_ES_RCVD) {
2847 if (h2s->st == H2_SS_OPEN)
2848 h2s->st = H2_SS_HREM;
2849 else if (h2s->st == H2_SS_HLOC)
2850 h2s_close(h2s);
2851 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002852
Christopher Fauletf95f8762021-01-22 11:59:07 +01002853 /* Unblock busy server h2s waiting for the response headers to validate
2854 * the tunnel establishment or the end of the response of an oborted
2855 * tunnel
2856 */
2857 if ((h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY)) == (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY) ||
2858 (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)) {
2859 TRACE_STATE("Unblock h2s blocked on tunnel establishment/abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2860 h2s->flags &= ~H2_SF_BLK_MBUSY;
2861 }
2862
Willy Tarreau9abb3172021-06-16 18:32:42 +02002863 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 +02002864 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002865 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002866 fail:
2867 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2868 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002869
2870 send_rst:
2871 /* make the demux send an RST for the current stream. We may only
2872 * do this if we're certain that the HEADERS frame was properly
2873 * decompressed so that the HPACK decoder is still kept up to date.
2874 */
2875 h2_release_buf(h2c, &rxbuf);
2876 h2c->st0 = H2_CS_FRAME_E;
2877
Willy Tarreau022e5e52020-09-10 09:33:15 +02002878 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 +02002879 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2880 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002881}
2882
Willy Tarreau454f9052017-10-26 19:40:35 +02002883/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2884 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2885 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01002886static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02002887{
2888 int error;
2889
Willy Tarreau7838a792019-08-12 18:42:03 +02002890 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2891
Willy Tarreau454f9052017-10-26 19:40:35 +02002892 /* note that empty DATA frames are perfectly valid and sometimes used
2893 * to signal an end of stream (with the ES flag).
2894 */
2895
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002896 if (!b_size(&h2c->dbuf) && h2c->dfl) {
2897 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002898 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002899 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002900
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002901 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2902 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002903 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002904 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002905
2906 /* now either the frame is complete or the buffer is complete */
2907
Willy Tarreau454f9052017-10-26 19:40:35 +02002908 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2909 /* RFC7540#6.1 */
2910 error = H2_ERR_STREAM_CLOSED;
2911 goto strm_err;
2912 }
2913
Christopher Faulet4f09ec82019-06-19 09:25:58 +02002914 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002915 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002916 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 +01002917 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002918 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002919 goto strm_err;
2920 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002921 if (!(h2c->flags & H2_CF_IS_BACK) &&
2922 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT) &&
2923 ((h2c->dfl - h2c->dpl) || !(h2c->dff & H2_F_DATA_END_STREAM))) {
2924 /* a tunnel attempt was aborted but the client still try to send some raw data.
2925 * Thus the stream is closed with the CANCEL error. Here we take care it is not
2926 * an empty DATA Frame with the ES flag. The error is only handled if ES was
2927 * already sent to the client because depending on the scheduling, these data may
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002928 * have been sent before the server response but not handle here.
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002929 */
2930 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2931 error = H2_ERR_CANCEL;
2932 goto strm_err;
2933 }
Willy Tarreau1915ca22019-01-24 11:49:37 +01002934
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002935 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02002936 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002937
Willy Tarreau454f9052017-10-26 19:40:35 +02002938 /* call the upper layers to process the frame, then let the upper layer
2939 * notify the stream about any change.
2940 */
Willy Tarreau7be4ee02022-05-18 07:31:41 +02002941 if (!h2s_sc(h2s)) {
Willy Tarreau082c4572019-08-06 10:11:02 +02002942 /* The upper layer has already closed, this may happen on
2943 * 4xx/redirects during POST, or when receiving a response
2944 * from an H2 server after the client has aborted.
2945 */
2946 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002947 goto strm_err;
2948 }
2949
Willy Tarreau8f650c32017-11-21 19:36:21 +01002950 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002951 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01002952
Willy Tarreau721c9742017-11-07 11:05:42 +01002953 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002954 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002955 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002956 }
2957
2958 /* check for completion : the callee will change this to FRAME_A or
2959 * FRAME_H once done.
2960 */
2961 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02002962 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02002963
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002964 /* last frame */
2965 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002966 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002967 if (h2s->st == H2_SS_OPEN)
2968 h2s->st = H2_SS_HREM;
2969 else
2970 h2s_close(h2s);
2971
Willy Tarreau1915ca22019-01-24 11:49:37 +01002972 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
2973 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002974 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 +01002975 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002976 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002977 goto strm_err;
2978 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002979 }
2980
Christopher Fauletf95f8762021-01-22 11:59:07 +01002981 /* Unblock busy server h2s waiting for the end of the response for an
2982 * aborted tunnel
2983 */
2984 if ((h2c->flags & H2_CF_IS_BACK) &&
2985 (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)) {
2986 TRACE_STATE("Unblock h2s blocked on tunnel abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2987 h2s->flags &= ~H2_SF_BLK_MBUSY;
2988 }
2989
Willy Tarreau7838a792019-08-12 18:42:03 +02002990 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02002991 return 1;
2992
Willy Tarreau454f9052017-10-26 19:40:35 +02002993 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002994 h2s_error(h2s, error);
2995 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002996 fail:
2997 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 +02002998 return 0;
2999}
3000
Willy Tarreau63864812019-08-07 14:25:20 +02003001/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
3002 * valid for the current stream state. This is needed only after parsing the
3003 * frame header but in practice it can be performed at any time during
3004 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
3005 * or 0 in case of error, in which case either h2s or h2c will carry an error.
3006 */
3007static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
3008{
Willy Tarreau7838a792019-08-12 18:42:03 +02003009 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
3010
Willy Tarreau63864812019-08-07 14:25:20 +02003011 if (h2s->st == H2_SS_IDLE &&
3012 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
3013 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
3014 * this state MUST be treated as a connection error
3015 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003016 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 +02003017 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003018 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02003019 /* only log if no other stream can report the error */
3020 sess_log(h2c->conn->owner);
3021 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003022 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02003023 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 +02003024 return 0;
3025 }
3026
Willy Tarreau57a18162019-11-24 14:57:53 +01003027 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
3028 /* only PUSH_PROMISE would be permitted here */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003029 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 +01003030 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003031 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau57a18162019-11-24 14:57:53 +01003032 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
3033 return 0;
3034 }
3035
Willy Tarreau63864812019-08-07 14:25:20 +02003036 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
3037 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
3038 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
3039 * this state MUST be treated as a stream error.
3040 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
3041 * PUSH_PROMISE/CONTINUATION cause connection errors.
3042 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01003043 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003044 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 +02003045 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003046 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003047 }
3048 else {
Willy Tarreau63864812019-08-07 14:25:20 +02003049 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003050 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003051 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 +02003052 return 0;
3053 }
3054
3055 /* Below the management of frames received in closed state is a
3056 * bit hackish because the spec makes strong differences between
3057 * streams closed by receiving RST, sending RST, and seeing ES
3058 * in both directions. In addition to this, the creation of a
3059 * new stream reusing the identifier of a closed one will be
3060 * detected here. Given that we cannot keep track of all closed
3061 * streams forever, we consider that unknown closed streams were
3062 * closed on RST received, which allows us to respond with an
3063 * RST without breaking the connection (eg: to abort a transfer).
3064 * Some frames have to be silently ignored as well.
3065 */
3066 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
3067 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
3068 /* #5.1.1: The identifier of a newly
3069 * established stream MUST be numerically
3070 * greater than all streams that the initiating
3071 * endpoint has opened or reserved. This
3072 * governs streams that are opened using a
3073 * HEADERS frame and streams that are reserved
3074 * using PUSH_PROMISE. An endpoint that
3075 * receives an unexpected stream identifier
3076 * MUST respond with a connection error.
3077 */
3078 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003079 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 +02003080 return 0;
3081 }
3082
Willy Tarreau4c08f122019-09-26 08:47:15 +02003083 if (h2s->flags & H2_SF_RST_RCVD &&
3084 !(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 +02003085 /* RFC7540#5.1:closed: an endpoint that
3086 * receives any frame other than PRIORITY after
3087 * receiving a RST_STREAM MUST treat that as a
3088 * stream error of type STREAM_CLOSED.
3089 *
3090 * Note that old streams fall into this category
3091 * and will lead to an RST being sent.
3092 *
3093 * However, we cannot generalize this to all frame types. Those
3094 * carrying compression state must still be processed before
3095 * being dropped or we'll desynchronize the decoder. This can
3096 * happen with request trailers received after sending an
3097 * RST_STREAM, or with header/trailers responses received after
3098 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02003099 *
3100 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003101 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003102 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003103 */
3104 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3105 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003106 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 +02003107 return 0;
3108 }
3109
3110 /* RFC7540#5.1:closed: if this state is reached as a
3111 * result of sending a RST_STREAM frame, the peer that
3112 * receives the RST_STREAM might have already sent
3113 * frames on the stream that cannot be withdrawn. An
3114 * endpoint MUST ignore frames that it receives on
3115 * closed streams after it has sent a RST_STREAM
3116 * frame. An endpoint MAY choose to limit the period
3117 * over which it ignores frames and treat frames that
3118 * arrive after this time as being in error.
3119 */
3120 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3121 /* RFC7540#5.1:closed: any frame other than
3122 * PRIO/WU/RST in this state MUST be treated as
3123 * a connection error
3124 */
3125 if (h2c->dft != H2_FT_RST_STREAM &&
3126 h2c->dft != H2_FT_PRIORITY &&
3127 h2c->dft != H2_FT_WINDOW_UPDATE) {
3128 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003129 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 +02003130 return 0;
3131 }
3132 }
3133 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003134 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003135 return 1;
3136}
3137
Willy Tarreaubc933932017-10-09 16:21:43 +02003138/* process Rx frames to be demultiplexed */
3139static void h2_process_demux(struct h2c *h2c)
3140{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003141 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003142 struct h2_fh hdr;
3143 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003144 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003145
Willy Tarreau7838a792019-08-12 18:42:03 +02003146 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3147
Willy Tarreau081d4722017-05-16 21:51:05 +02003148 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003149 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003150
3151 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3152 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003153 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003154 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003155 goto out;
3156
Willy Tarreau52eed752017-09-22 15:05:09 +02003157 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3158 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003159 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003160 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003161 h2c->st0 = H2_CS_ERROR2;
Willy Tarreauee4684f2021-06-17 08:08:48 +02003162 if (b_data(&h2c->dbuf) ||
Christopher Faulet3f35da22021-07-26 10:18:35 +02003163 !(((const struct session *)h2c->conn->owner)->fe->options & (PR_O_NULLNOLOG|PR_O_IGNORE_PRB)))
Willy Tarreauee4684f2021-06-17 08:08:48 +02003164 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003165 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003166 goto done;
Willy Tarreau52eed752017-09-22 15:05:09 +02003167 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003168 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003169
3170 h2c->max_id = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02003171 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaued2b9d92022-08-18 15:30:41 +02003172 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau52eed752017-09-22 15:05:09 +02003173 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003174
3175 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003176 /* ensure that what is pending is a valid SETTINGS frame
3177 * without an ACK.
3178 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003179 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 +02003180 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003181 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003182 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003183 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003184 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 +02003185 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003186 if (!(h2c->flags & H2_CF_IS_BACK))
3187 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003188 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003189 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003190 }
3191
3192 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3193 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003194 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 +02003195 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3196 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003197 if (!(h2c->flags & H2_CF_IS_BACK))
3198 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003199 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003200 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003201 }
3202
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003203 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003204 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003205 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 +02003206 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3207 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003208 if (!(h2c->flags & H2_CF_IS_BACK))
3209 sess_log(h2c->conn->owner);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003210 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003211 }
3212
Willy Tarreau3bf69182018-12-21 15:34:50 +01003213 /* that's OK, switch to FRAME_P to process it. This is
3214 * a SETTINGS frame whose header has already been
3215 * deleted above.
3216 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003217 padlen = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +02003218 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003219 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003220 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003221 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003222
3223 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003224 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003225 int ret = 0;
3226
Willy Tarreau7838a792019-08-12 18:42:03 +02003227 if (!b_data(&h2c->dbuf)) {
3228 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003229 h2c->flags |= H2_CF_DEM_SHORT_READ;
3230 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003231 }
3232
3233 if (h2c->st0 >= H2_CS_ERROR) {
3234 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003235 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003236 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003237
3238 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003239 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003240 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr)) {
3241 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003242 break;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003243 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003244
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003245 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003246 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 +02003247 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003248 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003249 /* only log if no other stream can report the error */
3250 sess_log(h2c->conn->owner);
3251 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003252 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003253 break;
3254 }
3255
Willy Tarreau617592c2022-06-08 16:32:22 +02003256 if (h2c->rcvd_s && h2c->dsi != hdr.sid) {
3257 /* changed stream with a pending WU, need to
3258 * send it now.
3259 */
3260 TRACE_PROTO("sending stream WINDOW_UPDATE frame on stream switch", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
3261 ret = h2c_send_strm_wu(h2c);
3262 if (ret <= 0)
3263 break;
3264 }
3265
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003266 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003267 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3268 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3269 * we read the pad length and drop it from the remaining
3270 * payload (one byte + the 9 remaining ones = 10 total
3271 * removed), so we have a frame payload starting after the
3272 * pad len. Flow controlled frames (DATA) also count the
3273 * padlen in the flow control, so it must be adjusted.
3274 */
3275 if (hdr.len < 1) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003276 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 +01003277 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003278 if (!(h2c->flags & H2_CF_IS_BACK))
3279 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003280 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003281 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003282 }
3283 hdr.len--;
3284
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003285 if (b_data(&h2c->dbuf) < 10) {
3286 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003287 break; // missing padlen
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003288 }
Willy Tarreau3bf69182018-12-21 15:34:50 +01003289
3290 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3291
3292 if (padlen > hdr.len) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003293 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 +01003294 /* RFC7540#6.1 : pad length = length of
3295 * frame payload or greater => error.
3296 */
3297 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003298 if (!(h2c->flags & H2_CF_IS_BACK))
3299 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003300 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003301 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003302 }
3303
3304 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3305 h2c->rcvd_c++;
3306 h2c->rcvd_s++;
3307 }
3308 b_del(&h2c->dbuf, 1);
3309 }
3310 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003311
3312 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003313 h2c->dfl = hdr.len;
3314 h2c->dsi = hdr.sid;
3315 h2c->dft = hdr.ft;
3316 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003317 h2c->dpl = padlen;
Willy Tarreau0f458712022-08-18 11:19:57 +02003318 h2c->flags |= H2_CF_DEM_IN_PROGRESS;
Willy Tarreau73db4342019-09-25 07:28:44 +02003319 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 +02003320 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003321
3322 /* check for minimum basic frame format validity */
3323 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3324 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003325 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 +01003326 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003327 if (!(h2c->flags & H2_CF_IS_BACK))
3328 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003329 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003330 goto done;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003331 }
Willy Tarreau15a47332022-03-18 15:57:34 +01003332
3333 /* transition to HEADERS frame ends the keep-alive idle
3334 * timer and starts the http-request idle delay.
3335 */
3336 if (hdr.ft == H2_FT_HEADERS)
3337 h2c->idle_start = now_ms;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003338 }
3339
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003340 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3341 * H2_CS_FRAME_P indicates an incomplete previous operation
3342 * (most often the first attempt) and requires some validity
3343 * checks for the frame and the current state. The two other
3344 * ones are set after completion (or abortion) and must skip
3345 * validity checks.
3346 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003347 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3348
Willy Tarreau7be4ee02022-05-18 07:31:41 +02003349 if (tmp_h2s != h2s && h2s && h2s_sc(h2s) &&
Willy Tarreau567beb82018-12-18 16:52:44 +01003350 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003351 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003352 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003353 (h2s->flags & H2_SF_ES_RCVD) ||
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003354 se_fl_test(h2s->sd, SE_FL_ERROR | SE_FL_ERR_PENDING | SE_FL_EOS))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003355 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003356 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 +02003357 se_fl_set(h2s->sd, SE_FL_RCV_MORE);
Willy Tarreau7e094452018-12-19 18:08:52 +01003358 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003359 }
3360 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003361
Willy Tarreau63864812019-08-07 14:25:20 +02003362 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003363 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3364 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003365 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003366 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003367
Willy Tarreau7e98c052017-10-10 15:56:59 +02003368 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003369 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003370 if (h2c->st0 == H2_CS_FRAME_P) {
3371 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003372 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003373 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003374 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003375
Willy Tarreau7838a792019-08-12 18:42:03 +02003376 if (h2c->st0 == H2_CS_FRAME_A) {
3377 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 +02003378 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003379 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003380 break;
3381
Willy Tarreaucf68c782017-10-10 17:11:41 +02003382 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003383 if (h2c->st0 == H2_CS_FRAME_P) {
3384 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003385 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003386 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003387
Willy Tarreau7838a792019-08-12 18:42:03 +02003388 if (h2c->st0 == H2_CS_FRAME_A) {
3389 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 +02003390 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003391 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003392 break;
3393
Willy Tarreau26f95952017-07-27 17:18:30 +02003394 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003395 if (h2c->st0 == H2_CS_FRAME_P) {
3396 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 +02003397 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003398 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003399 break;
3400
Willy Tarreau61290ec2017-10-17 08:19:21 +02003401 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003402 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003403 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3404 * frames' parsers consume all following CONTINUATION
3405 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003406 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003407 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 +01003408 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003409 if (!(h2c->flags & H2_CF_IS_BACK))
3410 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003411 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003412 goto done;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003413
Willy Tarreau13278b42017-10-13 19:23:14 +02003414 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003415 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003416 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003417 if (h2c->flags & H2_CF_IS_BACK)
3418 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3419 else
3420 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003421 if (tmp_h2s) {
3422 h2s = tmp_h2s;
3423 ret = 1;
3424 }
3425 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003426 HA_ATOMIC_INC(&h2c->px_counters->headers_rcvd);
Willy Tarreau13278b42017-10-13 19:23:14 +02003427 break;
3428
Willy Tarreau454f9052017-10-26 19:40:35 +02003429 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003430 if (h2c->st0 == H2_CS_FRAME_P) {
3431 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003432 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003433 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003434 HA_ATOMIC_INC(&h2c->px_counters->data_rcvd);
Willy Tarreau454f9052017-10-26 19:40:35 +02003435
Willy Tarreau7838a792019-08-12 18:42:03 +02003436 if (h2c->st0 == H2_CS_FRAME_A) {
Willy Tarreau617592c2022-06-08 16:32:22 +02003437 /* rcvd_s will suffice to trigger the sending of a WU */
3438 h2c->st0 = H2_CS_FRAME_H;
Willy Tarreau7838a792019-08-12 18:42:03 +02003439 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003440 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003441
Willy Tarreau92153fc2017-12-03 19:46:19 +01003442 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003443 if (h2c->st0 == H2_CS_FRAME_P) {
3444 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003445 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003446 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003447 break;
3448
Willy Tarreaucd234e92017-08-18 10:59:39 +02003449 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003450 if (h2c->st0 == H2_CS_FRAME_P) {
3451 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 +02003452 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003453 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003454 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_rcvd);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003455 break;
3456
Willy Tarreaue96b0922017-10-30 00:28:29 +01003457 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003458 if (h2c->st0 == H2_CS_FRAME_P) {
3459 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003460 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003461 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003462 HA_ATOMIC_INC(&h2c->px_counters->goaway_rcvd);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003463 break;
3464
Willy Tarreau1c661982017-10-30 13:52:01 +01003465 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003466 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003467 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003468 /* drop frames that we ignore. They may be larger than
3469 * the buffer so we drain all of their contents until
3470 * we reach the end.
3471 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003472 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3473 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003474 h2c->dfl -= ret;
3475 ret = h2c->dfl == 0;
3476 }
3477
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003478 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003479 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003480 if (h2s->st == H2_SS_ERROR) {
3481 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 +01003482 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003483 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003484
Willy Tarreau7838a792019-08-12 18:42:03 +02003485 if (h2c->st0 == H2_CS_FRAME_E) {
3486 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 +01003487 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003488 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003489
Willy Tarreau7e98c052017-10-10 15:56:59 +02003490 /* error or missing data condition met above ? */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003491 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02003492 break;
3493
3494 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003495 if (h2c->dfl)
3496 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003497 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3498 b_del(&h2c->dbuf, ret);
3499 h2c->dfl -= ret;
3500 if (!h2c->dfl) {
Willy Tarreau0f458712022-08-18 11:19:57 +02003501 h2c->flags &= ~H2_CF_DEM_IN_PROGRESS;
Christopher Faulet5112a602019-09-26 16:38:28 +02003502 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3503 h2c->st0 = H2_CS_FRAME_H;
Christopher Faulet5112a602019-09-26 16:38:28 +02003504 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003505 }
3506 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003507
Willy Tarreau617592c2022-06-08 16:32:22 +02003508 if (h2c->rcvd_s > 0 &&
3509 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3510 TRACE_PROTO("sending stream WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn, h2s);
3511 h2c_send_strm_wu(h2c);
3512 }
3513
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003514 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003515 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3516 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003517 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003518 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003519
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003520 done:
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003521 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_DEM_SHORT_READ)) {
3522 if (h2c->flags & H2_CF_RCVD_SHUT)
3523 h2c->flags |= H2_CF_END_REACHED;
3524 }
3525
Willy Tarreau7be4ee02022-05-18 07:31:41 +02003526 if (h2s && h2s_sc(h2s) &&
Willy Tarreau567beb82018-12-18 16:52:44 +01003527 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003528 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003529 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003530 (h2s->flags & H2_SF_ES_RCVD) ||
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003531 se_fl_test(h2s->sd, SE_FL_ERROR | SE_FL_ERR_PENDING | SE_FL_EOS))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003532 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003533 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 +02003534 se_fl_set(h2s->sd, SE_FL_RCV_MORE);
Willy Tarreau7e094452018-12-19 18:08:52 +01003535 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003536 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003537
Willy Tarreau7838a792019-08-12 18:42:03 +02003538 if (old_iw != h2c->miw) {
3539 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003540 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003541 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003542
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003543 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003544 out:
3545 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003546 return;
Willy Tarreaubc933932017-10-09 16:21:43 +02003547}
3548
Willy Tarreau989539b2020-01-10 17:01:29 +01003549/* resume each h2s eligible for sending in list head <head> */
3550static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3551{
3552 struct h2s *h2s, *h2s_back;
3553
3554 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3555
3556 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3557 if (h2c->mws <= 0 ||
3558 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3559 h2c->st0 >= H2_CS_ERROR)
3560 break;
3561
3562 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003563
Willy Tarreaud9464162020-01-10 18:25:07 +01003564 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003565 continue;
3566
Willy Tarreau5723f292020-01-10 15:16:57 +01003567 /* If the sender changed his mind and unsubscribed, let's just
3568 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003569 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003570 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3571 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003572 LIST_DEL_INIT(&h2s->list);
3573 continue;
3574 }
3575
Willy Tarreauf96508a2020-01-10 11:12:48 +01003576 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003577 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003578 tasklet_wakeup(h2s->subs->tasklet);
3579 h2s->subs->events &= ~SUB_RETRY_SEND;
3580 if (!h2s->subs->events)
3581 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003582 }
3583 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3584 tasklet_wakeup(h2s->shut_tl);
3585 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003586 }
3587
3588 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3589}
3590
Willy Tarreaubc933932017-10-09 16:21:43 +02003591/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3592 * the end.
3593 */
3594static int h2_process_mux(struct h2c *h2c)
3595{
Willy Tarreau7838a792019-08-12 18:42:03 +02003596 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3597
Willy Tarreau01b44822018-10-03 14:26:37 +02003598 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3599 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3600 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3601 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003602 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003603 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003604 goto fail;
3605 }
3606 h2c->st0 = H2_CS_SETTINGS1;
3607 }
3608 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003609 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003610 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003611 }
3612
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003613 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003614 if (h2c->rcvd_s > 0 &&
3615 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3616 h2c_send_strm_wu(h2c) < 0)
3617 goto fail;
3618
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003619 if (h2c->rcvd_c > 0 &&
3620 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3621 h2c_send_conn_wu(h2c) < 0)
3622 goto fail;
3623
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003624 /* First we always process the flow control list because the streams
3625 * waiting there were already elected for immediate emission but were
3626 * blocked just on this.
3627 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003628 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3629 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003630
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003631 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003632 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003633 if (h2c->st0 == H2_CS_ERROR) {
3634 if (h2c->max_id >= 0) {
3635 h2c_send_goaway_error(h2c, NULL);
3636 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003637 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003638 }
3639
3640 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3641 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003642 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003643 done:
3644 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3645 return 1;
3646 out0:
3647 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3648 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003649}
3650
Willy Tarreau62f52692017-10-08 23:01:42 +02003651
Willy Tarreau479998a2018-11-18 06:30:59 +01003652/* Attempt to read data, and subscribe if none available.
3653 * The function returns 1 if data has been received, otherwise zero.
3654 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003655static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003656{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003657 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003658 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003659 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003660 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003661
Willy Tarreau7838a792019-08-12 18:42:03 +02003662 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3663
3664 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3665 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003666 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003667 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003668
Willy Tarreau7838a792019-08-12 18:42:03 +02003669 if (!h2_recv_allowed(h2c)) {
3670 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003671 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003672 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003673
Willy Tarreau44e973f2018-03-01 17:49:30 +01003674 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003675 if (!buf) {
3676 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003677 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003678 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003679 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003680
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003681 if (h2c->flags & H2_CF_RCVD_SHUT) {
3682 TRACE_DEVEL("leaving on rcvd_shut", H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau3a8bbcc2021-11-19 11:41:10 +01003683 return 1;
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003684 }
3685
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003686 if (!b_data(buf)) {
3687 /* try to pre-align the buffer like the
3688 * rxbufs will be to optimize memory copies. We'll make
3689 * sure that the frame header lands at the end of the
3690 * HTX block to alias it upon recv. We cannot use the
3691 * head because rcv_buf() will realign the buffer if
3692 * it's empty. Thus we cheat and pretend we already
3693 * have a few bytes there.
3694 */
3695 max = buf_room_for_htx_data(buf) + 9;
3696 buf->head = sizeof(struct htx) - 9;
3697 }
3698 else
3699 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003700
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003701 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003702
Christopher Fauletde9d6052021-04-23 12:25:18 +02003703 if (max && !ret && h2_recv_allowed(h2c)) {
3704 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
3705 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003706 } else if (ret) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02003707 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003708 h2c->flags &= ~H2_CF_DEM_SHORT_READ;
3709 }
Olivier Houchard81a15af2018-10-19 17:26:49 +02003710
Christopher Fauletde9d6052021-04-23 12:25:18 +02003711 if (conn_xprt_read0_pending(h2c->conn)) {
3712 TRACE_DATA("received read0", H2_EV_H2C_RECV, h2c->conn);
3713 h2c->flags |= H2_CF_RCVD_SHUT;
3714 }
3715
Olivier Houcharda1411e62018-08-17 18:42:48 +02003716 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003717 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003718 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003719 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003720 }
3721
Willy Tarreau7838a792019-08-12 18:42:03 +02003722 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003723 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003724 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003725 }
3726
3727 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003728 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003729}
3730
Willy Tarreau479998a2018-11-18 06:30:59 +01003731/* Try to send data if possible.
3732 * The function returns 1 if data have been sent, otherwise zero.
3733 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003734static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003735{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003736 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003737 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003738 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003739
Willy Tarreau7838a792019-08-12 18:42:03 +02003740 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003741
Willy Tarreau7838a792019-08-12 18:42:03 +02003742 if (conn->flags & CO_FL_ERROR) {
3743 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3744 return 1;
3745 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003746
Willy Tarreau911db9b2020-01-23 16:27:54 +01003747 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003748 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003749 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003750 }
3751
Willy Tarreaubc933932017-10-09 16:21:43 +02003752 /* This loop is quite simple : it tries to fill as much as it can from
3753 * pending streams into the existing buffer until it's reportedly full
3754 * or the end of send requests is reached. Then it tries to send this
3755 * buffer's contents out, marks it not full if at least one byte could
3756 * be sent, and tries again.
3757 *
3758 * The snd_buf() function normally takes a "flags" argument which may
3759 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3760 * data immediately comes and CO_SFL_STREAMER to indicate that the
3761 * connection is streaming lots of data (used to increase TLS record
3762 * size at the expense of latency). The former can be sent any time
3763 * there's a buffer full flag, as it indicates at least one stream
3764 * attempted to send and failed so there are pending data. An
3765 * alternative would be to set it as long as there's an active stream
3766 * but that would be problematic for ACKs until we have an absolute
3767 * guarantee that all waiters have at least one byte to send. The
3768 * latter should possibly not be set for now.
3769 */
3770
3771 done = 0;
3772 while (!done) {
3773 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003774 unsigned int released = 0;
3775 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003776
3777 /* fill as much as we can into the current buffer */
3778 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3779 done = h2_process_mux(h2c);
3780
Olivier Houchard2b094432019-01-29 18:28:36 +01003781 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003782 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003783
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003784 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
Willy Tarreaue6dc7a02021-10-21 17:30:06 +02003785 (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003786 break;
3787
3788 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3789 flags |= CO_SFL_MSG_MORE;
3790
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003791 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3792 if (b_data(buf)) {
3793 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003794 if (!ret) {
3795 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003796 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003797 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003798 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003799 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003800 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003801 if (b_data(buf)) {
3802 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003803 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003804 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003805 }
3806 b_free(buf);
3807 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003808 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003809
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003810 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01003811 offer_buffers(NULL, released);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003812
Willy Tarreaubc933932017-10-09 16:21:43 +02003813 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003814 if (sent)
3815 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003816 }
3817
Willy Tarreaua2af5122017-10-09 11:56:46 +02003818 if (conn->flags & CO_FL_SOCK_WR_SH) {
3819 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003820 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003821 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003822 /* We're not full anymore, so we can wake any task that are waiting
3823 * for us.
3824 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003825 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3826 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003827
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003828 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003829 if (!br_data(h2c->mbuf)) {
3830 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003831 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003832 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003833schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003834 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3835 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003836 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003837 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003838
Willy Tarreau7838a792019-08-12 18:42:03 +02003839 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003840 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003841}
3842
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003843/* this is the tasklet referenced in h2c->wait_event.tasklet */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003844struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state)
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003845{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003846 struct connection *conn;
3847 struct tasklet *tl = (struct tasklet *)t;
3848 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003849 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003850 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003851
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003852 if (state & TASK_F_USR1) {
3853 /* the tasklet was idling on an idle connection, it might have
3854 * been stolen, let's be careful!
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003855 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003856 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3857 if (t->context == NULL) {
3858 /* The connection has been taken over by another thread,
3859 * we're no longer responsible for it, so just free the
3860 * tasklet, and do nothing.
3861 */
3862 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3863 tasklet_free(tl);
Willy Tarreau74163142021-03-13 11:30:19 +01003864 t = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003865 goto leave;
3866 }
3867 conn = h2c->conn;
3868 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003869
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003870 conn_in_list = conn->flags & CO_FL_LIST_MASK;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003871
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003872 /* Remove the connection from the list, to be sure nobody attempts
3873 * to use it while we handle the I/O events
3874 */
3875 if (conn_in_list)
3876 conn_delete_from_tree(&conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003877
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003878 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3879 } else {
3880 /* we're certain the connection was not in an idle list */
3881 conn = h2c->conn;
3882 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3883 conn_in_list = 0;
3884 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003885
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003886 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003887 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003888 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003889 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003890 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003891 ret = h2_process(h2c);
3892
3893 /* If we were in an idle list, we want to add it back into it,
3894 * unless h2_process() returned -1, which mean it has destroyed
3895 * the connection (testing !ret is enough, if h2_process() wasn't
3896 * called then ret will be 0 anyway.
3897 */
Willy Tarreau74163142021-03-13 11:30:19 +01003898 if (ret < 0)
3899 t = NULL;
3900
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003901 if (!ret && conn_in_list) {
3902 struct server *srv = objt_server(conn->target);
3903
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003904 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003905 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau85223482022-09-29 20:32:43 +02003906 eb64_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003907 else
Willy Tarreau85223482022-09-29 20:32:43 +02003908 eb64_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003909 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003910 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003911
Willy Tarreau38468772020-06-28 00:31:13 +02003912leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02003913 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreau74163142021-03-13 11:30:19 +01003914 return t;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003915}
Willy Tarreaua2af5122017-10-09 11:56:46 +02003916
Willy Tarreau62f52692017-10-08 23:01:42 +02003917/* callback called on any event by the connection handler.
3918 * It applies changes and returns zero, or < 0 if it wants immediate
3919 * destruction of the connection (which normally doesn not happen in h2).
3920 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003921static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003922{
Olivier Houchard7505f942018-08-21 18:10:44 +02003923 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003924
Willy Tarreau7838a792019-08-12 18:42:03 +02003925 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3926
Willy Tarreauf0961222021-02-05 11:41:46 +01003927 if (!(h2c->flags & H2_CF_DEM_BLOCK_ANY) &&
3928 (b_data(&h2c->dbuf) || (h2c->flags & H2_CF_RCVD_SHUT))) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003929 h2_process_demux(h2c);
3930
3931 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003932 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003933
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003934 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003935 h2c->flags &= ~H2_CF_DEM_DFULL;
3936 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003937 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003938
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003939 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 +02003940 int send_goaway = 1;
3941 /* If a close-spread-time option is set, we want to avoid
3942 * closing all the active HTTP2 connections at once so we add a
3943 * random factor that will spread the closing.
3944 */
3945 if (tick_isset(global.close_spread_end)) {
3946 int remaining_window = tick_remain(now_ms, global.close_spread_end);
3947 if (remaining_window) {
3948 /* This should increase the closing rate the
3949 * further along the window we are. */
3950 send_goaway = (remaining_window <= statistical_prng_range(global.close_spread_time));
3951 }
3952 }
Remi Tricot-Le Breton4d7fdc62022-04-26 15:17:18 +02003953 else if (global.tune.options & GTUNE_DISABLE_ACTIVE_CLOSE)
3954 send_goaway = 0; /* let the client close his connection himself */
Willy Tarreau8ec14062017-12-30 18:08:13 +01003955 /* frontend is stopping, reload likely in progress, let's try
3956 * to announce a graceful shutdown if not yet done. We don't
3957 * care if it fails, it will be tried again later.
3958 */
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02003959 if (send_goaway) {
3960 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
3961 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3962 if (h2c->last_sid < 0)
3963 h2c->last_sid = (1U << 31) - 1;
3964 h2c_send_goaway_error(h2c, NULL);
3965 }
Willy Tarreau8ec14062017-12-30 18:08:13 +01003966 }
3967 }
3968
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003969 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003970 * If we received early data, and the handshake is done, wake
3971 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003972 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003973 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01003974 (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 +01003975 struct eb32_node *node;
3976 struct h2s *h2s;
3977
3978 h2c->flags |= H2_CF_WAIT_FOR_HS;
3979 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
3980
3981 while (node) {
3982 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003983 if (se_fl_test(h2s->sd, SE_FL_WAIT_FOR_HS))
Willy Tarreau7e094452018-12-19 18:08:52 +01003984 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003985 node = eb32_next(node);
3986 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003987 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003988
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003989 if (conn->flags & CO_FL_ERROR || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01003990 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
3991 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
3992 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02003993 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003994
3995 if (eb_is_empty(&h2c->streams_by_id)) {
3996 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003997 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003998 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003999 return -1;
4000 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004001
4002 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004003 if (conn->flags & CO_FL_LIST_MASK) {
4004 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004005 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004006 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4007 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004008 }
4009 else if (h2c->st0 == H2_CS_ERROR) {
4010 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004011 if (conn->flags & CO_FL_LIST_MASK) {
4012 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004013 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004014 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4015 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004016 }
4017
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004018 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01004019 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004020
Olivier Houchard53216e72018-10-10 15:46:36 +02004021 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
4022 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
4023 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02004024 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02004025 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
4026 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02004027 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02004028
Willy Tarreau15a47332022-03-18 15:57:34 +01004029 h2c_update_timeout(h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +02004030 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004031 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004032 return 0;
4033}
4034
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004035/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004036static int h2_wake(struct connection *conn)
4037{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004038 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02004039 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004040
Willy Tarreau7838a792019-08-12 18:42:03 +02004041 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4042 ret = h2_process(h2c);
Willy Tarreau508f9892020-02-11 04:38:56 +01004043 if (ret >= 0)
4044 h2_wake_some_streams(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02004045 TRACE_LEAVE(H2_EV_H2C_WAKE);
4046 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004047}
4048
Willy Tarreauea392822017-10-31 10:02:25 +01004049/* Connection timeout management. The principle is that if there's no receipt
4050 * nor sending for a certain amount of time, the connection is closed. If the
4051 * MUX buffer still has lying data or is not allocatable, the connection is
4052 * immediately killed. If it's allocatable and empty, we attempt to send a
4053 * GOAWAY frame.
4054 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004055struct task *h2_timeout_task(struct task *t, void *context, unsigned int state)
Willy Tarreauea392822017-10-31 10:02:25 +01004056{
Olivier Houchard9f6af332018-05-25 14:04:04 +02004057 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01004058 int expired = tick_is_expired(t->expire, now_ms);
4059
Willy Tarreau7838a792019-08-12 18:42:03 +02004060 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
4061
Willy Tarreaubd42e922020-06-30 11:19:23 +02004062 if (h2c) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004063 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004064 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004065
4066 /* Somebody already stole the connection from us, so we should not
4067 * free it, we just have to free the task.
4068 */
4069 if (!t->context) {
4070 h2c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004071 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004072 goto do_leave;
4073 }
4074
4075
Willy Tarreaubd42e922020-06-30 11:19:23 +02004076 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004077 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004078 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
4079 return t;
4080 }
Willy Tarreauea392822017-10-31 10:02:25 +01004081
Willy Tarreaubd42e922020-06-30 11:19:23 +02004082 if (!h2c_may_expire(h2c)) {
4083 /* we do still have streams but all of them are idle, waiting
4084 * for the data layer, so we must not enforce the timeout here.
4085 */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004086 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004087 t->expire = TICK_ETERNITY;
4088 return t;
4089 }
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004090
Willy Tarreaubd42e922020-06-30 11:19:23 +02004091 /* We're about to destroy the connection, so make sure nobody attempts
4092 * to steal it from us.
4093 */
Willy Tarreaubd42e922020-06-30 11:19:23 +02004094 if (h2c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004095 conn_delete_from_tree(&h2c->conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004096
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 }
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004099
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004100do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02004101 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02004102
4103 if (!h2c) {
4104 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02004105 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02004106 return NULL;
4107 }
4108
4109 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01004110 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02004111 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01004112
Willy Tarreau662fafc2019-05-26 09:43:07 +02004113 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01004114 /* don't even try to send a GOAWAY, the buffer is stuck */
4115 h2c->flags |= H2_CF_GOAWAY_FAILED;
4116 }
4117
4118 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01004119 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01004120 if (h2c_send_goaway_error(h2c, NULL) <= 0)
4121 h2c->flags |= H2_CF_GOAWAY_FAILED;
4122
Willy Tarreau662fafc2019-05-26 09:43:07 +02004123 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004124 unsigned int released = 0;
4125 struct buffer *buf;
4126
4127 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
4128 if (b_data(buf)) {
4129 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
4130 if (!ret)
4131 break;
4132 b_del(buf, ret);
4133 if (b_data(buf))
4134 break;
4135 b_free(buf);
4136 released++;
4137 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02004138 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004139
4140 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01004141 offer_buffers(NULL, released);
Willy Tarreau787db9a2018-06-14 18:31:46 +02004142 }
Willy Tarreauea392822017-10-31 10:02:25 +01004143
Willy Tarreau4481e262019-10-31 15:36:30 +01004144 /* in any case this connection must not be considered idle anymore */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004145 if (h2c->conn->flags & CO_FL_LIST_MASK) {
4146 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004147 conn_delete_from_tree(&h2c->conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004148 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4149 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004150
Willy Tarreau0975f112018-03-29 15:22:59 +02004151 /* either we can release everything now or it will be done later once
4152 * the last stream closes.
4153 */
4154 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02004155 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01004156
Willy Tarreau7838a792019-08-12 18:42:03 +02004157 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01004158 return NULL;
4159}
4160
4161
Willy Tarreau62f52692017-10-08 23:01:42 +02004162/*******************************************/
4163/* functions below are used by the streams */
4164/*******************************************/
4165
4166/*
4167 * Attach a new stream to a connection
4168 * (Used for outgoing connections)
4169 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004170static int h2_attach(struct connection *conn, struct sedesc *sd, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02004171{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004172 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004173 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004174
Willy Tarreau7838a792019-08-12 18:42:03 +02004175 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004176 h2s = h2c_bck_stream_new(h2c, sd->sc, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004177 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004178 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Christopher Faulete00ad352021-12-16 14:44:31 +01004179 return -1;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004180 }
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004181
4182 /* the connection is not idle anymore, let's mark this */
4183 HA_ATOMIC_AND(&h2c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004184 xprt_set_used(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004185
Willy Tarreau7838a792019-08-12 18:42:03 +02004186 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Christopher Faulete00ad352021-12-16 14:44:31 +01004187 return 0;
Willy Tarreau62f52692017-10-08 23:01:42 +02004188}
4189
Willy Tarreau4596fe22022-05-17 19:07:51 +02004190/* Retrieves the first valid stream connector from this connection, or returns
4191 * NULL. We have to scan because we may have some orphan streams. It might be
Willy Tarreaufafd3982018-11-18 21:29:20 +01004192 * beneficial to scan backwards from the end to reduce the likeliness to find
4193 * orphans.
4194 */
Willy Tarreaud1373532022-05-27 11:00:59 +02004195static struct stconn *h2_get_first_sc(const struct connection *conn)
Willy Tarreaufafd3982018-11-18 21:29:20 +01004196{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004197 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004198 struct h2s *h2s;
4199 struct eb32_node *node;
4200
4201 node = eb32_first(&h2c->streams_by_id);
4202 while (node) {
4203 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau7be4ee02022-05-18 07:31:41 +02004204 if (h2s_sc(h2s))
4205 return h2s_sc(h2s);
Willy Tarreaufafd3982018-11-18 21:29:20 +01004206 node = eb32_next(node);
4207 }
4208 return NULL;
4209}
4210
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004211static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4212{
4213 int ret = 0;
4214 struct h2c *h2c = conn->ctx;
4215
4216 switch (mux_ctl) {
4217 case MUX_STATUS:
4218 /* Only consider the mux to be ready if we're done with
4219 * the preface and settings, and we had no error.
4220 */
4221 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4222 ret |= MUX_STATUS_READY;
4223 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02004224 case MUX_EXIT_STATUS:
4225 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004226 default:
4227 return -1;
4228 }
4229}
4230
Willy Tarreau62f52692017-10-08 23:01:42 +02004231/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004232 * Destroy the mux and the associated connection, if it is no longer used
4233 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004234static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004235{
Christopher Faulet73c12072019-04-08 11:23:22 +02004236 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004237
Willy Tarreau7838a792019-08-12 18:42:03 +02004238 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet4e610962022-04-14 11:23:50 +02004239 if (eb_is_empty(&h2c->streams_by_id)) {
4240 BUG_ON(h2c->conn->ctx != h2c);
Christopher Faulet73c12072019-04-08 11:23:22 +02004241 h2_release(h2c);
Christopher Faulet4e610962022-04-14 11:23:50 +02004242 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004243 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004244}
4245
4246/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004247 * Detach the stream from the connection and possibly release the connection.
4248 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004249static void h2_detach(struct sedesc *sd)
Willy Tarreau62f52692017-10-08 23:01:42 +02004250{
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004251 struct h2s *h2s = sd->se;
Willy Tarreau60935142017-10-16 18:11:19 +02004252 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004253 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004254
Willy Tarreau7838a792019-08-12 18:42:03 +02004255 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4256
Willy Tarreau7838a792019-08-12 18:42:03 +02004257 if (!h2s) {
4258 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004259 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004260 }
Willy Tarreau60935142017-10-16 18:11:19 +02004261
Willy Tarreaud9464162020-01-10 18:25:07 +01004262 /* there's no txbuf so we're certain not to be able to send anything */
4263 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004264
Olivier Houchardf502aca2018-12-14 19:42:40 +01004265 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004266 h2c = h2s->h2c;
Willy Tarreau36c22322022-05-27 10:41:24 +02004267 h2c->nb_sc--;
4268 if (!h2c->nb_sc)
Willy Tarreau15a47332022-03-18 15:57:34 +01004269 h2c->idle_start = now_ms;
4270
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004271 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
Willy Tarreau36c22322022-05-27 10:41:24 +02004272 !h2_frt_has_too_many_sc(h2c)) {
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004273 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004274 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004275 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004276 }
Willy Tarreau60935142017-10-16 18:11:19 +02004277
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004278 /* this stream may be blocked waiting for some data to leave (possibly
4279 * an ES or RST frame), so orphan it in this case.
4280 */
Christopher Faulet897d6122021-12-17 17:28:35 +01004281 if (!(h2c->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004282 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004283 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004284 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004285 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau15a47332022-03-18 15:57:34 +01004286 /* refresh the timeout if none was active, so that the last
4287 * leaving stream may arm it.
4288 */
4289 if (!tick_isset(h2c->task->expire))
4290 h2c_update_timeout(h2c);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004291 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004292 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004293
Willy Tarreau45f752e2017-10-30 15:44:59 +01004294 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
4295 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
4296 /* unblock the connection if it was blocked on this
4297 * stream.
4298 */
4299 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4300 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004301 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004302 }
4303
Willy Tarreau71049cc2018-03-28 13:56:39 +02004304 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004305
Christopher Faulet9b79a102019-07-15 11:22:56 +02004306 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01004307 if (!(h2c->conn->flags &
4308 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004309 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004310 /* Add the connection in the session server list, if not already done */
4311 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4312 h2c->conn->owner = NULL;
4313 if (eb_is_empty(&h2c->streams_by_id)) {
4314 h2c->conn->mux->destroy(h2c);
4315 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4316 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004317 }
4318 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004319 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004320 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4321 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4322 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004323 return;
4324 }
4325 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004326 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004327 else {
4328 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004329 /* If the connection is owned by the session, first remove it
4330 * from its list
4331 */
4332 if (h2c->conn->owner) {
4333 session_unown_conn(h2c->conn->owner, h2c->conn);
4334 h2c->conn->owner = NULL;
4335 }
4336
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004337 /* mark that the tasklet may lose its context to another thread and
4338 * that the handler needs to check it under the idle conns lock.
4339 */
4340 HA_ATOMIC_OR(&h2c->wait_event.tasklet->state, TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004341 xprt_set_idle(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
4342
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004343 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004344 /* The server doesn't want it, let's kill the connection right away */
4345 h2c->conn->mux->destroy(h2c);
4346 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4347 return;
4348 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004349 /* At this point, the connection has been added to the
4350 * server idle list, so another thread may already have
4351 * hijacked it, so we can't do anything with it.
4352 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004353 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4354 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004355
Olivier Houchard8a786902018-12-15 16:05:40 +01004356 }
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004357 else if (!h2c->conn->hash_node->node.node.leaf_p &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004358 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02004359 !LIST_INLIST(&h2c->conn->session_list)) {
Willy Tarreau85223482022-09-29 20:32:43 +02004360 eb64_insert(&__objt_server(h2c->conn->target)->per_thr[tid].avail_conns,
4361 &h2c->conn->hash_node->node);
Christopher Fauletc5579d12020-07-01 15:45:41 +02004362 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004363 }
4364 }
4365 }
4366
Willy Tarreaue323f342018-03-28 13:51:45 +02004367 /* We don't want to close right now unless we're removing the
4368 * last stream, and either the connection is in error, or it
4369 * reached the ID already specified in a GOAWAY frame received
4370 * or sent (as seen by last_sid >= 0).
4371 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004372 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004373 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004374 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004375 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004376 }
4377 else if (h2c->task) {
Willy Tarreau15a47332022-03-18 15:57:34 +01004378 h2c_update_timeout(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004379 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004380 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004381 else
4382 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004383}
4384
Willy Tarreau88bdba32019-05-13 18:17:53 +02004385/* Performs a synchronous or asynchronous shutr(). */
4386static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004387{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004388 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004389
Willy Tarreauf983d002019-05-14 10:40:21 +02004390 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004391 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004392
Willy Tarreau7838a792019-08-12 18:42:03 +02004393 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4394
Willy Tarreau18059042019-01-31 19:12:48 +01004395 /* a connstream may require us to immediately kill the whole connection
4396 * for example because of a "tcp-request content reject" rule that is
4397 * normally used to limit abuse. In this case we schedule a goaway to
4398 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004399 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004400 if (se_fl_test(h2s->sd, SE_FL_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004401 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004402 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004403 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4404 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4405 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004406 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4407 /* Nothing was never sent for this stream, so reset with
4408 * REFUSED_STREAM error to let the client retry the
4409 * request.
4410 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004411 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004412 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4413 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004414 else {
4415 /* a final response was already provided, we don't want this
4416 * stream anymore. This may happen when the server responds
4417 * before the end of an upload and closes quickly (redirect,
4418 * deny, ...)
4419 */
4420 h2s_error(h2s, H2_ERR_CANCEL);
4421 }
Willy Tarreau18059042019-01-31 19:12:48 +01004422
Willy Tarreau90c32322017-11-24 08:00:30 +01004423 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004424 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004425 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004426
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004427 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004428 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004429 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004430 done:
4431 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004432 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004433 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004434add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004435 /* Let the handler know we want to shutr, and add ourselves to the
4436 * most relevant list if not yet done. h2_deferred_shut() will be
4437 * automatically called via the shut_tl tasklet when there's room
4438 * again.
4439 */
4440 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau2b718102021-04-21 07:32:39 +02004441 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004442 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004443 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004444 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004445 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004446 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004447 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004448 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004449}
4450
Willy Tarreau88bdba32019-05-13 18:17:53 +02004451/* Performs a synchronous or asynchronous shutw(). */
4452static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004453{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004454 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004455
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004456 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004457 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004458
Willy Tarreau7838a792019-08-12 18:42:03 +02004459 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4460
Willy Tarreau473e0e52022-08-18 16:12:15 +02004461 if (h2s->st != H2_SS_ERROR &&
4462 (h2s->flags & (H2_SF_HEADERS_SENT | H2_SF_MORE_HTX_DATA)) == H2_SF_HEADERS_SENT) {
4463 /* we can cleanly close using an empty data frame only after headers
4464 * and if no more data is expected to be sent.
4465 */
Willy Tarreau58e32082017-11-07 14:41:09 +01004466 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4467 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004468 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004469
4470 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004471 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004472 else
4473 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004474 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004475 /* a connstream may require us to immediately kill the whole connection
4476 * for example because of a "tcp-request content reject" rule that is
4477 * normally used to limit abuse. In this case we schedule a goaway to
4478 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004479 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004480 if (se_fl_test(h2s->sd, SE_FL_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004481 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004482 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004483 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4484 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4485 }
Willy Tarreau473e0e52022-08-18 16:12:15 +02004486 else if (h2s->flags & H2_SF_MORE_HTX_DATA) {
4487 /* some unsent data were pending (e.g. abort during an upload),
4488 * let's send a CANCEL.
4489 */
4490 TRACE_STATE("shutw before end of data, sending CANCEL", H2_EV_STRM_SHUT, h2c->conn, h2s);
4491 h2s_error(h2s, H2_ERR_CANCEL);
4492 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004493 else {
4494 /* Nothing was never sent for this stream, so reset with
4495 * REFUSED_STREAM error to let the client retry the
4496 * request.
4497 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004498 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004499 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4500 }
Willy Tarreau18059042019-01-31 19:12:48 +01004501
Willy Tarreau90c32322017-11-24 08:00:30 +01004502 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004503 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004504 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004505
Willy Tarreau00dd0782018-03-01 16:31:34 +01004506 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004507 }
4508
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004509 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004510 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004511
4512 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4513
Willy Tarreau88bdba32019-05-13 18:17:53 +02004514 done:
4515 h2s->flags &= ~H2_SF_WANT_SHUTW;
4516 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004517
4518 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004519 /* Let the handler know we want to shutw, and add ourselves to the
4520 * most relevant list if not yet done. h2_deferred_shut() will be
4521 * automatically called via the shut_tl tasklet when there's room
4522 * again.
4523 */
4524 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau2b718102021-04-21 07:32:39 +02004525 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004526 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004527 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004528 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004529 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004530 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004531 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004532 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004533}
4534
Willy Tarreau5723f292020-01-10 15:16:57 +01004535/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004536 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4537 * and prevented the last frame from being emitted.
4538 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004539struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004540{
4541 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004542 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004543
Willy Tarreau7838a792019-08-12 18:42:03 +02004544 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4545
Willy Tarreau5723f292020-01-10 15:16:57 +01004546 if (h2s->flags & H2_SF_NOTIFIED) {
4547 /* some data processing remains to be done first */
4548 goto end;
4549 }
4550
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004551 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004552 h2_do_shutw(h2s);
4553
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004554 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004555 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004556
Willy Tarreau88bdba32019-05-13 18:17:53 +02004557 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004558 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004559 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004560
Willy Tarreau7be4ee02022-05-18 07:31:41 +02004561 if (!h2s_sc(h2s)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004562 h2s_destroy(h2s);
Willy Tarreau74163142021-03-13 11:30:19 +01004563 if (h2c_is_dead(h2c)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004564 h2_release(h2c);
Willy Tarreau74163142021-03-13 11:30:19 +01004565 t = NULL;
4566 }
Willy Tarreau88bdba32019-05-13 18:17:53 +02004567 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004568 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004569 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004570 TRACE_LEAVE(H2_EV_STRM_SHUT);
Willy Tarreau74163142021-03-13 11:30:19 +01004571 return t;
Willy Tarreau62f52692017-10-08 23:01:42 +02004572}
4573
Willy Tarreau4596fe22022-05-17 19:07:51 +02004574/* shutr() called by the stream connector (mux_ops.shutr) */
Willy Tarreau36c22322022-05-27 10:41:24 +02004575static void h2_shutr(struct stconn *sc, enum co_shr_mode mode)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004576{
Willy Tarreau36c22322022-05-27 10:41:24 +02004577 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004578
Willy Tarreau7838a792019-08-12 18:42:03 +02004579 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004580 if (mode)
4581 h2_do_shutr(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004582 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004583}
4584
Willy Tarreau4596fe22022-05-17 19:07:51 +02004585/* shutw() called by the stream connector (mux_ops.shutw) */
Willy Tarreau36c22322022-05-27 10:41:24 +02004586static void h2_shutw(struct stconn *sc, enum co_shw_mode mode)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004587{
Willy Tarreau36c22322022-05-27 10:41:24 +02004588 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004589
Willy Tarreau7838a792019-08-12 18:42:03 +02004590 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004591 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004592 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004593}
4594
Christopher Faulet9b79a102019-07-15 11:22:56 +02004595/* Decode the payload of a HEADERS frame and produce the HTX request or response
4596 * depending on the connection's side. Returns a positive value on success, a
4597 * negative value on failure, or 0 if it couldn't proceed. May report connection
4598 * errors in h2c->errcode if the frame is non-decodable and the connection
4599 * unrecoverable. In absence of connection error when a failure is reported, the
4600 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004601 *
4602 * The function may fold CONTINUATION frames into the initial HEADERS frame
4603 * by removing padding and next frame header, then moving the CONTINUATION
4604 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4605 * leaving a hole between the main frame and the beginning of the next one.
4606 * The possibly remaining incomplete or next frame at the end may be moved
4607 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4608 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4609 *
4610 * A buffer at the beginning of processing may look like this :
4611 *
4612 * ,---.---------.-----.--------------.--------------.------.---.
4613 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4614 * `---^---------^-----^--------------^--------------^------^---'
4615 * | | <-----> | |
4616 * area | dpl | wrap
4617 * |<--------------> |
4618 * | dfl |
4619 * |<-------------------------------------------------->|
4620 * head data
4621 *
4622 * Padding is automatically overwritten when folding, participating to the
4623 * hole size after dfl :
4624 *
4625 * ,---.------------------------.-----.--------------.------.---.
4626 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4627 * `---^------------------------^-----^--------------^------^---'
4628 * | | <-----> | |
4629 * area | hole | wrap
4630 * |<-----------------------> |
4631 * | dfl |
4632 * |<-------------------------------------------------->|
4633 * head data
4634 *
4635 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4636 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4637 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004638 *
4639 * The <flags> field must point to either the stream's flags or to a copy of it
4640 * so that the function can update the following flags :
4641 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004642 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004643 *
4644 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4645 * decoding, in order to detect if we're dealing with a headers or a trailers
4646 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004647 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004648static int h2c_decode_headers(struct h2c *h2c, struct buffer *rxbuf, uint32_t *flags, unsigned long long *body_len, char *upgrade_protocol)
Willy Tarreau13278b42017-10-13 19:23:14 +02004649{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004650 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004651 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004652 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004653 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004654 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004655 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004656 int flen; // header frame len
4657 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004658 int ret = 0;
4659 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004660 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004661
Willy Tarreau7838a792019-08-12 18:42:03 +02004662 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4663
Willy Tarreauea18f862018-12-22 20:19:26 +01004664next_frame:
4665 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4666 goto leave; // incomplete input frame
4667
4668 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4669 * this case, we'll try to paste it immediately after the initial
4670 * HEADERS frame payload and kill any possible padding. The initial
4671 * frame's length will be increased to represent the concatenation
4672 * of the two frames. The next frame is read from position <tlen>
4673 * and written at position <flen> (minus padding if some is present).
4674 */
4675 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4676 struct h2_fh hdr;
4677 int clen; // CONTINUATION frame's payload length
4678
Willy Tarreau7838a792019-08-12 18:42:03 +02004679 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 +01004680 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4681 /* no more data, the buffer may be full, either due to
4682 * too large a frame or because of too large a hole that
4683 * we're going to compact at the end.
4684 */
4685 goto leave;
4686 }
4687
4688 if (hdr.ft != H2_FT_CONTINUATION) {
4689 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004690 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 +01004691 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004692 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004693 goto fail;
4694 }
4695
4696 if (hdr.sid != h2c->dsi) {
4697 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004698 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 +01004699 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004700 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004701 goto fail;
4702 }
4703
4704 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4705 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004706 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 +01004707 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4708 goto fail;
4709 }
4710
4711 /* detect when we must stop aggragating frames */
4712 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4713
4714 /* Take as much as we can of the CONTINUATION frame's payload */
4715 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4716 if (clen > hdr.len)
4717 clen = hdr.len;
4718
4719 /* Move the frame's payload over the padding, hole and frame
4720 * header. At least one of hole or dpl is null (see diagrams
4721 * above). The hole moves after the new aggragated frame.
4722 */
4723 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 +02004724 h2c->dfl += hdr.len - h2c->dpl;
Willy Tarreauea18f862018-12-22 20:19:26 +01004725 hole += h2c->dpl + 9;
4726 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004727 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 +01004728 goto next_frame;
4729 }
4730
4731 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004732
Willy Tarreau13278b42017-10-13 19:23:14 +02004733 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004734 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004735 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004736 copy = alloc_trash_chunk();
4737 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004738 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 +02004739 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4740 goto fail;
4741 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004742 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4743 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4744 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004745 }
4746
Willy Tarreau13278b42017-10-13 19:23:14 +02004747 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4748 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004749 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004750 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004751 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 +01004752 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004753 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004754 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004755 }
4756
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004757 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004758 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 +01004759 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4760 goto fail;
4761 }
4762
Willy Tarreau13278b42017-10-13 19:23:14 +02004763 hdrs += 5; // stream dep = 4, weight = 1
4764 flen -= 5;
4765 }
4766
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004767 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004768 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 +01004769 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004770 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004771 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004772
Willy Tarreau937f7602018-02-26 15:22:17 +01004773 /* we can't retry a failed decompression operation so we must be very
4774 * careful not to take any risks. In practice the output buffer is
4775 * always empty except maybe for trailers, in which case we simply have
4776 * to wait for the upper layer to finish consuming what is available.
4777 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004778 htx = htx_from_buf(rxbuf);
4779 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004780 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 +02004781 h2c->flags |= H2_CF_DEM_SFULL;
4782 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004783 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004784
Willy Tarreau25919232019-01-03 14:48:18 +01004785 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004786 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4787 sizeof(list)/sizeof(list[0]), tmp);
4788 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004789 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 +01004790 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4791 goto fail;
4792 }
4793
Willy Tarreau25919232019-01-03 14:48:18 +01004794 /* The PACK decompressor was updated, let's update the input buffer and
4795 * the parser's state to commit these changes and allow us to later
4796 * fail solely on the stream if needed.
4797 */
4798 b_del(&h2c->dbuf, h2c->dfl + hole);
4799 h2c->dfl = hole = 0;
4800 h2c->st0 = H2_CS_FRAME_H;
4801
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004802 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004803 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Christopher Fauletd0db4232021-01-22 11:46:30 +01004804 msgf |= (*flags & H2_SF_BODY_TUNNEL) ? H2_MSGF_BODY_TUNNEL: 0;
Amaury Denoyelle74162742020-12-11 17:53:05 +01004805 /* If an Extended CONNECT has been sent on this stream, set message flag
Ilya Shipitsinacf84592021-02-06 22:29:08 +05004806 * to convert 200 response to 101 htx response */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004807 msgf |= (*flags & H2_SF_EXT_CONNECT_SENT) ? H2_MSGF_EXT_CONNECT: 0;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004808
Willy Tarreau88d138e2019-01-02 19:38:14 +01004809 if (*flags & H2_SF_HEADERS_RCVD)
4810 goto trailers;
4811
4812 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004813 if (h2c->flags & H2_CF_IS_BACK)
Amaury Denoyelle74162742020-12-11 17:53:05 +01004814 outlen = h2_make_htx_response(list, htx, &msgf, body_len, upgrade_protocol);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004815 else
4816 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004817
Christopher Faulet3d875582021-04-26 17:46:13 +02004818 if (outlen < 0 || htx_free_space(htx) < global.tune.maxrewrite) {
Willy Tarreau25919232019-01-03 14:48:18 +01004819 /* too large headers? this is a stream error only */
Christopher Faulet3d875582021-04-26 17:46:13 +02004820 TRACE_STATE("message headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
4821 htx->flags |= HTX_FL_PARSING_ERROR;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004822 goto fail;
4823 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004824
Willy Tarreau174b06a2018-04-25 18:13:58 +02004825 if (msgf & H2_MSGF_BODY) {
4826 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004827 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004828 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004829 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004830 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004831 }
Christopher Faulet7d247f02020-12-02 14:26:36 +01004832 if (msgf & H2_MSGF_BODYLESS_RSP)
4833 *flags |= H2_SF_BODYLESS_RESP;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004834
Christopher Fauletd0db4232021-01-22 11:46:30 +01004835 if (msgf & H2_MSGF_BODY_TUNNEL)
4836 *flags |= H2_SF_BODY_TUNNEL;
4837 else {
4838 /* Abort the tunnel attempt, if any */
4839 if (*flags & H2_SF_BODY_TUNNEL)
4840 *flags |= H2_SF_TUNNEL_ABRT;
4841 *flags &= ~H2_SF_BODY_TUNNEL;
4842 }
4843
Willy Tarreau88d138e2019-01-02 19:38:14 +01004844 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004845 /* indicate that a HEADERS frame was received for this stream, except
4846 * for 1xx responses. For 1xx responses, another HEADERS frame is
4847 * expected.
4848 */
4849 if (!(msgf & H2_MSGF_RSP_1XX))
4850 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004851
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004852 if (h2c->dff & H2_F_HEADERS_END_STREAM) {
4853 /* no more data are expected for this message */
4854 htx->flags |= HTX_FL_EOM;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004855 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004856
Amaury Denoyelleefe22762020-12-11 17:53:08 +01004857 if (msgf & H2_MSGF_EXT_CONNECT)
4858 *flags |= H2_SF_EXT_CONNECT_RCVD;
4859
Willy Tarreau86277d42019-01-02 15:36:11 +01004860 /* success */
4861 ret = 1;
4862
Willy Tarreau68dd9852017-07-03 14:44:26 +02004863 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004864 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004865 * move the remaining data over it.
4866 */
4867 if (hole) {
4868 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4869 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4870 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4871 b_sub(&h2c->dbuf, hole);
4872 }
4873
Christopher Faulet07f88d72021-04-21 10:39:53 +02004874 if (b_full(&h2c->dbuf) && h2c->dfl) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004875 /* too large frames */
4876 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004877 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004878 }
4879
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004880 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004881 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004882 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004883 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004884 return ret;
4885
Willy Tarreau68dd9852017-07-03 14:44:26 +02004886 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004887 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004888 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004889
4890 trailers:
4891 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004892 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4893 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004894 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 +01004895 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004896 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau88d138e2019-01-02 19:38:14 +01004897 goto fail;
4898 }
4899
Christopher Faulet9b79a102019-07-15 11:22:56 +02004900 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02004901 if (h2_make_htx_trailers(list, htx) <= 0) {
4902 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 +02004903 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004904 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004905 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02004906}
4907
Christopher Faulet9b79a102019-07-15 11:22:56 +02004908/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004909 * parser state is automatically updated. Returns > 0 if it could completely
4910 * send the current frame, 0 if it couldn't complete, in which case
Willy Tarreaub605c422022-05-17 17:04:55 +02004911 * SE_FL_RCV_MORE must be checked to know if some data remain pending (an empty
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004912 * DATA frame can return 0 as a valid result). Stream errors are reported in
4913 * h2s->errcode and connection errors in h2c->errcode. The caller must already
4914 * have checked the frame header and ensured that the frame was complete or the
4915 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02004916 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01004917static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02004918{
4919 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004920 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004921 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004922 struct htx *htx = NULL;
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02004923 struct buffer *scbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004924 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02004925
Willy Tarreau7838a792019-08-12 18:42:03 +02004926 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
4927
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004928 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02004929
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02004930 scbuf = h2_get_buf(h2c, &h2s->rxbuf);
4931 if (!scbuf) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004932 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02004933 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 +01004934 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004935 }
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02004936 htx = htx_from_buf(scbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004937
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004938try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004939 flen = h2c->dfl - h2c->dpl;
4940 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01004941 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004942
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004943 if (flen > b_data(&h2c->dbuf)) {
4944 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004945 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01004946 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004947 }
4948
Christopher Faulet9b79a102019-07-15 11:22:56 +02004949 block = htx_free_data_space(htx);
4950 if (!block) {
4951 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004952 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 +02004953 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004954 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004955 if (flen > block)
4956 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004957
Christopher Faulet9b79a102019-07-15 11:22:56 +02004958 /* here, flen is the max we can copy into the output buffer */
4959 block = b_contig_data(&h2c->dbuf, 0);
4960 if (flen > block)
4961 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004962
Christopher Faulet9b79a102019-07-15 11:22:56 +02004963 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02004964 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 +02004965
Christopher Faulet9b79a102019-07-15 11:22:56 +02004966 b_del(&h2c->dbuf, sent);
4967 h2c->dfl -= sent;
4968 h2c->rcvd_c += sent;
4969 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02004970
Christopher Faulet9b79a102019-07-15 11:22:56 +02004971 if (h2s->flags & H2_SF_DATA_CLEN) {
4972 h2s->body_len -= sent;
4973 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004974 }
4975
Christopher Faulet9b79a102019-07-15 11:22:56 +02004976 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004977 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004978 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 +01004979 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004980 }
4981
Christopher Faulet9b79a102019-07-15 11:22:56 +02004982 goto try_again;
4983
Willy Tarreau4a28da12018-01-04 14:41:00 +01004984 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004985 /* here we're done with the frame, all the payload (except padding) was
4986 * transferred.
4987 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02004988
Christopher Faulet5be651d2021-01-22 15:28:03 +01004989 if (!(h2s->flags & H2_SF_BODY_TUNNEL) && (h2c->dff & H2_F_DATA_END_STREAM)) {
4990 /* no more data are expected for this message. This add the EOM
4991 * flag but only on the response path or if no tunnel attempt
4992 * was aborted. Otherwise (request path + tunnel abrted), the
4993 * EOM was already reported.
4994 */
Christopher Faulet33724322021-02-10 09:04:59 +01004995 if ((h2c->flags & H2_CF_IS_BACK) || !(h2s->flags & H2_SF_TUNNEL_ABRT)) {
4996 /* If we receive an empty DATA frame with ES flag while the HTX
4997 * message is empty, we must be sure to push a block to be sure
4998 * the HTX EOM flag will be handled on the other side. It is a
4999 * workaround because for now it is not possible to push empty
5000 * HTX DATA block. And without this block, there is no way to
5001 * "commit" the end of the message.
5002 */
5003 if (htx_is_empty(htx)) {
5004 if (!htx_add_endof(htx, HTX_BLK_EOT))
5005 goto fail;
5006 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005007 htx->flags |= HTX_FL_EOM;
Christopher Faulet33724322021-02-10 09:04:59 +01005008 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02005009 }
5010
Willy Tarreaud1023bb2018-03-22 16:53:12 +01005011 h2c->rcvd_c += h2c->dpl;
5012 h2c->rcvd_s += h2c->dpl;
5013 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005014 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005015 htx_to_buf(htx, scbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005016 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005017 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01005018 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005019 if (htx)
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005020 htx_to_buf(htx, scbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005021 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01005022 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005023}
5024
Willy Tarreau115e83b2018-12-01 19:17:53 +01005025/* Try to send a HEADERS frame matching HTX response present in HTX message
5026 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5027 * must check the stream's status to detect any error which might have happened
5028 * subsequently to a successful send. The htx blocks are automatically removed
5029 * from the message. The htx message is assumed to be valid since produced from
5030 * the internal code, hence it contains a start line, an optional series of
5031 * header blocks and an end of header, otherwise an invalid frame could be
5032 * emitted and the resulting htx message could be left in an inconsistent state.
5033 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005034static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005035{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005036 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01005037 struct h2c *h2c = h2s->h2c;
5038 struct htx_blk *blk;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005039 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005040 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005041 struct htx_sl *sl;
5042 enum htx_blk_type type;
5043 int es_now = 0;
5044 int ret = 0;
5045 int hdr;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005046
Willy Tarreau7838a792019-08-12 18:42:03 +02005047 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5048
Willy Tarreau115e83b2018-12-01 19:17:53 +01005049 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005050 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005051 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005052 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005053 return 0;
5054 }
5055
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005056 /* get the start line (we do have one) and the rest of the headers,
5057 * that we dump starting at header 0 */
5058 sl = NULL;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005059 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005060 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005061 type = htx_get_blk_type(blk);
5062
5063 if (type == HTX_BLK_UNUSED)
5064 continue;
5065
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005066 if (type == HTX_BLK_EOH)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005067 break;
5068
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005069 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005070 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005071 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5072 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5073 goto fail;
5074 }
5075
5076 list[hdr].n = htx_get_blk_name(htx, blk);
5077 list[hdr].v = htx_get_blk_value(htx, blk);
5078 hdr++;
5079 }
5080 else if (type == HTX_BLK_RES_SL) {
Christopher Faulet56498132021-01-29 11:39:43 +01005081 BUG_ON(sl); /* Only one start-line expected */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005082 sl = htx_get_blk_ptr(htx, blk);
5083 h2s->status = sl->info.res.status;
Christopher Faulet7d247f02020-12-02 14:26:36 +01005084 if (h2s->status == 204 || h2s->status == 304)
5085 h2s->flags |= H2_SF_BODYLESS_RESP;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005086 if (h2s->status < 100 || h2s->status > 999) {
5087 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5088 goto fail;
5089 }
5090 else if (h2s->status == 101) {
Amaury Denoyelleefe22762020-12-11 17:53:08 +01005091 if (unlikely(h2s->flags & H2_SF_EXT_CONNECT_RCVD)) {
5092 /* If an Extended CONNECT has been received, we need to convert 101 to 200 */
5093 h2s->status = 200;
5094 h2s->flags &= ~H2_SF_EXT_CONNECT_RCVD;
5095 }
5096 else {
5097 /* Otherwise, 101 responses are not supported in H2, so return a error (RFC7540#8.1.1) */
5098 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5099 goto fail;
5100 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005101 }
5102 else if ((h2s->flags & H2_SF_BODY_TUNNEL) && h2s->status >= 300) {
5103 /* Abort the tunnel attempt */
5104 h2s->flags &= ~H2_SF_BODY_TUNNEL;
5105 h2s->flags |= H2_SF_TUNNEL_ABRT;
5106 }
5107 }
5108 else {
5109 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 +01005110 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005111 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005112 }
5113
Christopher Faulet56498132021-01-29 11:39:43 +01005114 /* The start-line me be defined */
5115 BUG_ON(!sl);
5116
Willy Tarreau115e83b2018-12-01 19:17:53 +01005117 /* marker for end of headers */
5118 list[hdr].n = ist("");
5119
Willy Tarreau9c218e72019-05-26 10:08:28 +02005120 mbuf = br_tail(h2c->mbuf);
5121 retry:
5122 if (!h2_get_buf(h2c, mbuf)) {
5123 h2c->flags |= H2_CF_MUX_MALLOC;
5124 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005125 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 +02005126 return 0;
5127 }
5128
Willy Tarreau115e83b2018-12-01 19:17:53 +01005129 chunk_reset(&outbuf);
5130
5131 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005132 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5133 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005134 break;
5135 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005136 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01005137 }
5138
5139 if (outbuf.size < 9)
5140 goto full;
5141
5142 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5143 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5144 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5145 outbuf.data = 9;
5146
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005147 if ((h2c->flags & (H2_CF_SHTS_UPDATED|H2_CF_DTSU_EMITTED)) == H2_CF_SHTS_UPDATED) {
5148 /* SETTINGS_HEADER_TABLE_SIZE changed, we must send an HPACK
5149 * dynamic table size update so that some clients are not
5150 * confused. In practice we only need to send the DTSU when the
5151 * advertised size is lower than the current one, and since we
5152 * don't use it and don't care about the default 4096 bytes,
5153 * we only ack it with a zero size thus we at most have to deal
5154 * with this once. See RFC7541#4.2 and #6.3 for the spec, and
5155 * below for the whole context and interoperability risks:
5156 * https://lists.w3.org/Archives/Public/ietf-http-wg/2021OctDec/0235.html
5157 */
5158 if (b_room(&outbuf) < 1)
5159 goto full;
5160 outbuf.area[outbuf.data++] = 0x20; // HPACK DTSU 0 bytes
5161
5162 /* let's not update the flags now but only once the buffer is
5163 * really committed.
5164 */
5165 }
5166
Willy Tarreau115e83b2018-12-01 19:17:53 +01005167 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01005168 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005169 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005170 goto realign_again;
5171 goto full;
5172 }
5173
5174 /* encode all headers, stop at empty name */
5175 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5176 /* these ones do not exist in H2 and must be dropped. */
5177 if (isteq(list[hdr].n, ist("connection")) ||
5178 isteq(list[hdr].n, ist("proxy-connection")) ||
5179 isteq(list[hdr].n, ist("keep-alive")) ||
5180 isteq(list[hdr].n, ist("upgrade")) ||
5181 isteq(list[hdr].n, ist("transfer-encoding")))
5182 continue;
5183
Christopher Faulet86d144c2019-08-14 16:32:25 +02005184 /* Skip all pseudo-headers */
5185 if (*(list[hdr].n.ptr) == ':')
5186 continue;
5187
Willy Tarreau115e83b2018-12-01 19:17:53 +01005188 if (isteq(list[hdr].n, ist("")))
5189 break; // end
5190
5191 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
5192 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005193 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005194 goto realign_again;
5195 goto full;
5196 }
5197 }
5198
Willy Tarreaucb985a42019-10-07 16:56:34 +02005199 /* update the frame's size */
5200 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5201
5202 if (outbuf.data > h2c->mfs + 9) {
5203 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5204 /* output full */
5205 if (b_space_wraps(mbuf))
5206 goto realign_again;
5207 goto full;
5208 }
5209 }
5210
Willy Tarreau3a537072021-06-17 08:40:04 +02005211 TRACE_USER("sent H2 response ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5212
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005213 /* remove all header blocks including the EOH and compute the
5214 * corresponding size.
Willy Tarreau115e83b2018-12-01 19:17:53 +01005215 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005216 ret = 0;
5217 blk = htx_get_head_blk(htx);
5218 while (blk) {
5219 type = htx_get_blk_type(blk);
5220 ret += htx_get_blksz(blk);
5221 blk = htx_remove_blk(htx, blk);
5222 /* The removed block is the EOH */
5223 if (type == HTX_BLK_EOH)
5224 break;
Christopher Faulet5be651d2021-01-22 15:28:03 +01005225 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005226
Willy Tarreau95acc8b2022-05-27 16:14:10 +02005227 if (!h2s_sc(h2s) || se_fl_test(h2s->sd, SE_FL_SHW)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005228 /* Response already closed: add END_STREAM */
5229 es_now = 1;
5230 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005231 else if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && h2s->status >= 200) {
5232 /* EOM+empty: we may need to add END_STREAM except for 1xx
Christopher Faulet991febd2020-12-02 15:17:31 +01005233 * responses and tunneled response.
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005234 */
Christopher Faulet991febd2020-12-02 15:17:31 +01005235 if (!(h2s->flags & H2_SF_BODY_TUNNEL) || h2s->status >= 300)
5236 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005237 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005238
Willy Tarreau115e83b2018-12-01 19:17:53 +01005239 if (es_now)
5240 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5241
5242 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005243 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01005244
5245 /* indicates the HEADERS frame was sent, except for 1xx responses. For
5246 * 1xx responses, another HEADERS frame is expected.
5247 */
Christopher Faulet89899422020-12-07 18:24:43 +01005248 if (h2s->status >= 200)
Christopher Faulet0b465482019-02-19 15:14:23 +01005249 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005250
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005251 if (h2c->flags & H2_CF_SHTS_UPDATED) {
5252 /* was sent above */
5253 h2c->flags |= H2_CF_DTSU_EMITTED;
Willy Tarreauc7d85482022-02-16 14:28:14 +01005254 h2c->flags &= ~H2_CF_SHTS_UPDATED;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005255 }
5256
Willy Tarreau115e83b2018-12-01 19:17:53 +01005257 if (es_now) {
5258 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005259 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 +01005260 if (h2s->st == H2_SS_OPEN)
5261 h2s->st = H2_SS_HLOC;
5262 else
5263 h2s_close(h2s);
5264 }
5265
5266 /* OK we could properly deliver the response */
Willy Tarreau115e83b2018-12-01 19:17:53 +01005267 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005268 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005269 return ret;
5270 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005271 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5272 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005273 h2c->flags |= H2_CF_MUX_MFULL;
5274 h2s->flags |= H2_SF_BLK_MROOM;
5275 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005276 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 +01005277 goto end;
5278 fail:
5279 /* unparsable HTX messages, too large ones to be produced in the local
5280 * list etc go here (unrecoverable errors).
5281 */
5282 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5283 ret = 0;
5284 goto end;
5285}
5286
Willy Tarreau80739692018-10-05 11:35:57 +02005287/* Try to send a HEADERS frame matching HTX request present in HTX message
5288 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5289 * must check the stream's status to detect any error which might have happened
5290 * subsequently to a successful send. The htx blocks are automatically removed
5291 * from the message. The htx message is assumed to be valid since produced from
5292 * the internal code, hence it contains a start line, an optional series of
5293 * header blocks and an end of header, otherwise an invalid frame could be
5294 * emitted and the resulting htx message could be left in an inconsistent state.
5295 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005296static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005297{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005298 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005299 struct h2c *h2c = h2s->h2c;
5300 struct htx_blk *blk;
Willy Tarreau80739692018-10-05 11:35:57 +02005301 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005302 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005303 struct htx_sl *sl;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005304 struct ist meth, uri, auth, host = IST_NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005305 enum htx_blk_type type;
5306 int es_now = 0;
5307 int ret = 0;
5308 int hdr;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005309 int extended_connect = 0;
Willy Tarreau80739692018-10-05 11:35:57 +02005310
Willy Tarreau7838a792019-08-12 18:42:03 +02005311 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5312
Willy Tarreau80739692018-10-05 11:35:57 +02005313 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005314 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005315 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005316 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005317 return 0;
5318 }
5319
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005320 /* get the start line (we do have one) and the rest of the headers,
5321 * that we dump starting at header 0 */
5322 sl = NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005323 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005324 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005325 type = htx_get_blk_type(blk);
5326
5327 if (type == HTX_BLK_UNUSED)
5328 continue;
5329
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005330 if (type == HTX_BLK_EOH)
Willy Tarreau80739692018-10-05 11:35:57 +02005331 break;
5332
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005333 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005334 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005335 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5336 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5337 goto fail;
5338 }
Willy Tarreau80739692018-10-05 11:35:57 +02005339
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005340 list[hdr].n = htx_get_blk_name(htx, blk);
5341 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005342
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005343 /* Skip header if same name is used to add the server name */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005344 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name) &&
5345 isteq(list[hdr].n, h2c->proxy->server_id_hdr_name))
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005346 continue;
Christopher Faulet67d58092019-10-02 10:51:38 +02005347
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005348 /* Convert connection: upgrade to Extended connect from rfc 8441 */
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005349 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteqi(list[hdr].n, ist("connection"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005350 /* rfc 7230 #6.1 Connection = list of tokens */
5351 struct ist connection_ist = list[hdr].v;
5352 do {
5353 if (isteqi(iststop(connection_ist, ','),
5354 ist("upgrade"))) {
Amaury Denoyelle0df04362021-10-18 09:43:29 +02005355 if (!(h2c->flags & H2_CF_RCVD_RFC8441)) {
5356 TRACE_STATE("reject upgrade because of no RFC8441 support", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5357 goto fail;
5358 }
5359
Amaury Denoyellee0c258c2021-10-18 10:05:16 +02005360 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 +01005361 h2s->flags |= (H2_SF_BODY_TUNNEL|H2_SF_EXT_CONNECT_SENT);
5362 sl->info.req.meth = HTTP_METH_CONNECT;
5363 meth = ist("CONNECT");
5364
5365 extended_connect = 1;
5366 break;
5367 }
5368
5369 connection_ist = istadv(istfind(connection_ist, ','), 1);
5370 } while (istlen(connection_ist));
5371 }
5372
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005373 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteq(list[hdr].n, ist("upgrade"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005374 /* rfc 7230 #6.7 Upgrade = list of protocols
5375 * rfc 8441 #4 Extended connect = :protocol is single-valued
5376 *
5377 * only first HTTP/1 protocol is preserved
5378 */
5379 const struct ist protocol = iststop(list[hdr].v, ',');
5380 /* upgrade_protocol field is 16 bytes long in h2s */
5381 istpad(h2s->upgrade_protocol, isttrim(protocol, 15));
5382 }
5383
5384 if (isteq(list[hdr].n, ist("host")))
5385 host = list[hdr].v;
5386
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005387 hdr++;
5388 }
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005389 else if (type == HTX_BLK_REQ_SL) {
5390 BUG_ON(sl); /* Only one start-line expected */
5391 sl = htx_get_blk_ptr(htx, blk);
5392 meth = htx_sl_req_meth(sl);
5393 uri = htx_sl_req_uri(sl);
5394 if (sl->info.req.meth == HTTP_METH_HEAD)
5395 h2s->flags |= H2_SF_BODYLESS_RESP;
5396 if (unlikely(uri.len == 0)) {
5397 TRACE_ERROR("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5398 goto fail;
5399 }
5400 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005401 else {
5402 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5403 goto fail;
5404 }
Willy Tarreau80739692018-10-05 11:35:57 +02005405 }
5406
Christopher Faulet56498132021-01-29 11:39:43 +01005407 /* The start-line me be defined */
5408 BUG_ON(!sl);
5409
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005410 /* Now add the server name to a header (if requested) */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005411 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name)) {
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005412 struct server *srv = objt_server(h2c->conn->target);
5413
5414 if (srv) {
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005415 list[hdr].n = h2c->proxy->server_id_hdr_name;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005416 list[hdr].v = ist(srv->id);
5417 hdr++;
5418 }
5419 }
5420
Willy Tarreau80739692018-10-05 11:35:57 +02005421 /* marker for end of headers */
5422 list[hdr].n = ist("");
5423
Willy Tarreau9c218e72019-05-26 10:08:28 +02005424 mbuf = br_tail(h2c->mbuf);
5425 retry:
5426 if (!h2_get_buf(h2c, mbuf)) {
5427 h2c->flags |= H2_CF_MUX_MALLOC;
5428 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005429 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 +02005430 return 0;
5431 }
5432
Willy Tarreau80739692018-10-05 11:35:57 +02005433 chunk_reset(&outbuf);
5434
5435 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005436 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5437 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005438 break;
5439 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005440 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005441 }
5442
5443 if (outbuf.size < 9)
5444 goto full;
5445
5446 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5447 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5448 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5449 outbuf.data = 9;
5450
5451 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005452 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005453 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005454 goto realign_again;
5455 goto full;
5456 }
5457
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005458 auth = ist(NULL);
5459
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005460 /* RFC7540 #8.3: the CONNECT method must have :
5461 * - :authority set to the URI part (host:port)
5462 * - :method set to CONNECT
5463 * - :scheme and :path omitted
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005464 *
5465 * Note that this is not applicable in case of the Extended CONNECT
5466 * protocol from rfc 8441.
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005467 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005468 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT) && !extended_connect) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005469 auth = uri;
5470
5471 if (!hpack_encode_header(&outbuf, ist(":authority"), auth)) {
5472 /* output full */
5473 if (b_space_wraps(mbuf))
5474 goto realign_again;
5475 goto full;
5476 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005477 h2s->flags |= H2_SF_BODY_TUNNEL;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005478 } else {
5479 /* other methods need a :scheme. If an authority is known from
5480 * the request line, it must be sent, otherwise only host is
5481 * sent. Host is never sent as the authority.
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005482 *
5483 * This code is also applicable for Extended CONNECT protocol
5484 * from rfc 8441.
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005485 */
5486 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005487
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005488 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5489 /* the URI seems to start with a scheme */
5490 int len = 1;
5491
5492 while (len < uri.len && uri.ptr[len] != ':')
5493 len++;
5494
5495 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5496 /* make the uri start at the authority now */
Tim Duesterhus9f75ed12021-03-02 18:57:26 +01005497 scheme = ist2(uri.ptr, len);
Tim Duesterhus154374c2021-03-02 18:57:27 +01005498 uri = istadv(uri, len + 3);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005499
5500 /* find the auth part of the URI */
Tim Duesterhus92c696e2021-02-28 16:11:36 +01005501 auth = ist2(uri.ptr, 0);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005502 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5503 auth.len++;
5504
Tim Duesterhus154374c2021-03-02 18:57:27 +01005505 uri = istadv(uri, auth.len);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005506 }
5507 }
5508
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005509 /* For Extended CONNECT, the :authority must be present.
5510 * Use host value for it.
5511 */
5512 if (unlikely(extended_connect) && isttest(host))
5513 auth = host;
5514
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005515 if (!scheme.len) {
5516 /* no explicit scheme, we're using an origin-form URI,
5517 * probably from an H1 request transcoded to H2 via an
5518 * external layer, then received as H2 without authority.
5519 * So we have to look up the scheme from the HTX flags.
5520 * In such a case only http and https are possible, and
5521 * https is the default (sent by browsers).
5522 */
5523 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5524 scheme = ist("http");
5525 else
5526 scheme = ist("https");
5527 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005528
5529 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005530 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005531 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005532 goto realign_again;
5533 goto full;
5534 }
Willy Tarreau80739692018-10-05 11:35:57 +02005535
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005536 if (auth.len && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005537 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005538 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005539 goto realign_again;
5540 goto full;
5541 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005542
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005543 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5544 * be sent as '/' or '*'.
5545 */
5546 if (unlikely(!uri.len)) {
5547 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5548 uri = ist("*");
5549 else
5550 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005551 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005552
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005553 if (!hpack_encode_path(&outbuf, uri)) {
5554 /* output full */
5555 if (b_space_wraps(mbuf))
5556 goto realign_again;
5557 goto full;
5558 }
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005559
5560 /* encode the pseudo-header protocol from rfc8441 if using
5561 * Extended CONNECT method.
5562 */
5563 if (unlikely(extended_connect)) {
5564 const struct ist protocol = ist(h2s->upgrade_protocol);
5565 if (isttest(protocol)) {
5566 if (!hpack_encode_header(&outbuf,
5567 ist(":protocol"),
5568 protocol)) {
5569 /* output full */
5570 if (b_space_wraps(mbuf))
5571 goto realign_again;
5572 goto full;
5573 }
5574 }
5575 }
Willy Tarreau80739692018-10-05 11:35:57 +02005576 }
5577
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005578 /* encode all headers, stop at empty name. Host is only sent if we
5579 * do not provide an authority.
5580 */
Willy Tarreau80739692018-10-05 11:35:57 +02005581 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005582 struct ist n = list[hdr].n;
5583 struct ist v = list[hdr].v;
5584
Willy Tarreau80739692018-10-05 11:35:57 +02005585 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005586 if (isteq(n, ist("connection")) ||
5587 (auth.len && isteq(n, ist("host"))) ||
5588 isteq(n, ist("proxy-connection")) ||
5589 isteq(n, ist("keep-alive")) ||
5590 isteq(n, ist("upgrade")) ||
5591 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005592 continue;
5593
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005594 if (isteq(n, ist("te"))) {
5595 /* "te" may only be sent with "trailers" if this value
5596 * is present, otherwise it must be deleted.
5597 */
5598 v = istist(v, ist("trailers"));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01005599 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005600 continue;
5601 v = ist("trailers");
5602 }
5603
Christopher Faulet86d144c2019-08-14 16:32:25 +02005604 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005605 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005606 continue;
5607
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005608 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005609 break; // end
5610
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005611 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005612 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005613 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005614 goto realign_again;
5615 goto full;
5616 }
5617 }
5618
Willy Tarreaucb985a42019-10-07 16:56:34 +02005619 /* update the frame's size */
5620 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5621
5622 if (outbuf.data > h2c->mfs + 9) {
5623 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5624 /* output full */
5625 if (b_space_wraps(mbuf))
5626 goto realign_again;
5627 goto full;
5628 }
5629 }
5630
Willy Tarreau3a537072021-06-17 08:40:04 +02005631 TRACE_USER("sent H2 request ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5632
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005633 /* remove all header blocks including the EOH and compute the
5634 * corresponding size.
Willy Tarreau80739692018-10-05 11:35:57 +02005635 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005636 ret = 0;
5637 blk = htx_get_head_blk(htx);
5638 while (blk) {
5639 type = htx_get_blk_type(blk);
5640 ret += htx_get_blksz(blk);
5641 blk = htx_remove_blk(htx, blk);
5642 /* The removed block is the EOH */
5643 if (type == HTX_BLK_EOH)
5644 break;
Christopher Fauletd0db4232021-01-22 11:46:30 +01005645 }
Willy Tarreau80739692018-10-05 11:35:57 +02005646
Willy Tarreau95acc8b2022-05-27 16:14:10 +02005647 if (!h2s_sc(h2s) || se_fl_test(h2s->sd, SE_FL_SHW)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005648 /* Request already closed: add END_STREAM */
Willy Tarreau80739692018-10-05 11:35:57 +02005649 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005650 }
5651 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5652 /* EOM+empty: we may need to add END_STREAM (except for CONNECT
5653 * request)
5654 */
5655 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5656 es_now = 1;
5657 }
Willy Tarreau80739692018-10-05 11:35:57 +02005658
Willy Tarreau80739692018-10-05 11:35:57 +02005659 if (es_now)
5660 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5661
5662 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005663 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005664 h2s->flags |= H2_SF_HEADERS_SENT;
5665 h2s->st = H2_SS_OPEN;
5666
Willy Tarreau80739692018-10-05 11:35:57 +02005667 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005668 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 +02005669 // trim any possibly pending data (eg: inconsistent content-length)
5670 h2s->flags |= H2_SF_ES_SENT;
5671 h2s->st = H2_SS_HLOC;
5672 }
5673
Willy Tarreau80739692018-10-05 11:35:57 +02005674 end:
5675 return ret;
5676 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005677 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5678 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005679 h2c->flags |= H2_CF_MUX_MFULL;
5680 h2s->flags |= H2_SF_BLK_MROOM;
5681 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005682 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 +02005683 goto end;
5684 fail:
5685 /* unparsable HTX messages, too large ones to be produced in the local
5686 * list etc go here (unrecoverable errors).
5687 */
5688 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5689 ret = 0;
5690 goto end;
5691}
5692
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005693/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005694 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5695 * caller must check the stream's status to detect any error which might have
5696 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005697 * consumed, or zero if nothing done.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005698 */
Christopher Faulet142854b2020-12-02 15:12:40 +01005699static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005700{
5701 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005702 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005703 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005704 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005705 size_t total = 0;
5706 int es_now = 0;
5707 int bsize; /* htx block size */
5708 int fsize; /* h2 frame size */
5709 struct htx_blk *blk;
5710 enum htx_blk_type type;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005711 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005712
Willy Tarreau7838a792019-08-12 18:42:03 +02005713 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5714
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005715 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005716 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005717 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005718 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005719 goto end;
5720 }
5721
Willy Tarreau98de12a2018-12-12 07:03:00 +01005722 htx = htx_from_buf(buf);
5723
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005724 /* We only come here with HTX_BLK_DATA blocks */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005725
5726 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005727 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005728 goto end;
5729
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005730 if ((h2c->flags & H2_CF_IS_BACK) &&
Christopher Fauletf95f8762021-01-22 11:59:07 +01005731 (h2s->flags & (H2_SF_HEADERS_RCVD|H2_SF_BODY_TUNNEL)) == H2_SF_BODY_TUNNEL) {
5732 /* The response HEADERS frame not received yet. Thus the tunnel
5733 * is not fully established yet. In this situation, we block
5734 * data sending.
5735 */
5736 h2s->flags |= H2_SF_BLK_MBUSY;
5737 TRACE_STATE("Request DATA frame blocked waiting for tunnel establishment", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5738 goto end;
5739 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01005740 else if ((h2c->flags & H2_CF_IS_BACK) && (h2s->flags & H2_SF_TUNNEL_ABRT)) {
5741 /* a tunnel attempt was aborted but the is pending raw data to xfer to the server.
5742 * Thus the stream is closed with the CANCEL error. The error will be reported to
5743 * the upper layer as aserver abort. But at this stage there is nothing more we can
5744 * do. We just wait for the end of the response to be sure to not truncate it.
5745 */
5746 if (!(h2s->flags & H2_SF_ES_RCVD)) {
5747 TRACE_STATE("Request DATA frame blocked waiting end of aborted tunnel", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5748 h2s->flags |= H2_SF_BLK_MBUSY;
5749 }
5750 else {
5751 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5752 h2s_error(h2s, H2_ERR_CANCEL);
5753 }
5754 goto end;
5755 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005756
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005757 blk = htx_get_head_blk(htx);
5758 type = htx_get_blk_type(blk);
5759 bsize = htx_get_blksz(blk);
5760 fsize = bsize;
5761 trunc_out = 0;
5762 if (type != HTX_BLK_DATA)
5763 goto end;
5764
Willy Tarreau9c218e72019-05-26 10:08:28 +02005765 mbuf = br_tail(h2c->mbuf);
5766 retry:
5767 if (!h2_get_buf(h2c, mbuf)) {
5768 h2c->flags |= H2_CF_MUX_MALLOC;
5769 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005770 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 +02005771 goto end;
5772 }
5773
Willy Tarreau98de12a2018-12-12 07:03:00 +01005774 /* Perform some optimizations to reduce the number of buffer copies.
5775 * First, if the mux's buffer is empty and the htx area contains
5776 * exactly one data block of the same size as the requested count, and
5777 * this count fits within the frame size, the stream's window size, and
5778 * the connection's window size, then it's possible to simply swap the
5779 * caller's buffer with the mux's output buffer and adjust offsets and
5780 * length to match the entire DATA HTX block in the middle. In this
5781 * case we perform a true zero-copy operation from end-to-end. This is
5782 * the situation that happens all the time with large files. Second, if
5783 * this is not possible, but the mux's output buffer is empty, we still
5784 * have an opportunity to avoid the copy to the intermediary buffer, by
5785 * making the intermediary buffer's area point to the output buffer's
5786 * area. In this case we want to skip the HTX header to make sure that
5787 * copies remain aligned and that this operation remains possible all
5788 * the time. This goes for headers, data blocks and any data extracted
5789 * from the HTX blocks.
5790 */
5791 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005792 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005793 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005794 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005795
Willy Tarreaubcc45952019-05-26 10:05:50 +02005796 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005797 /* Too bad there are data left there. We're willing to memcpy/memmove
5798 * up to 1/4 of the buffer, which means that it's OK to copy a large
5799 * frame into a buffer containing few data if it needs to be realigned,
5800 * and that it's also OK to copy few data without realigning. Otherwise
5801 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005802 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005803 if (fsize + 9 <= b_room(mbuf) &&
5804 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005805 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5806 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 +01005807 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005808 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005809
Willy Tarreau9c218e72019-05-26 10:08:28 +02005810 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5811 goto retry;
5812
Willy Tarreau98de12a2018-12-12 07:03:00 +01005813 h2c->flags |= H2_CF_MUX_MFULL;
5814 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005815 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 +01005816 goto end;
5817 }
5818
Christopher Faulet925abdf2021-04-27 22:51:07 +02005819 if (htx->flags & HTX_FL_EOM) {
5820 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5821 * message)
5822 */
5823 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5824 es_now = 1;
5825 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005826 /* map an H2 frame to the HTX block so that we can put the
5827 * frame header there.
5828 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005829 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5830 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005831
5832 /* prepend an H2 DATA frame header just before the DATA block */
5833 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5834 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
Christopher Faulet925abdf2021-04-27 22:51:07 +02005835 if (es_now)
5836 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005837 h2_set_frame_size(outbuf.area, fsize);
5838
5839 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005840 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005841 h2c->mws -= fsize;
5842
5843 /* and exchange with our old area */
5844 buf->area = old_area;
5845 buf->data = buf->head = 0;
5846 total += fsize;
Christopher Faulet925abdf2021-04-27 22:51:07 +02005847 fsize = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005848
5849 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 +02005850 goto out;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005851 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005852
Willy Tarreau98de12a2018-12-12 07:03:00 +01005853 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005854 /* for DATA and EOM we'll have to emit a frame, even if empty */
5855
5856 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005857 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5858 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005859 break;
5860 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005861 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005862 }
5863
5864 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005865 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5866 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005867 h2c->flags |= H2_CF_MUX_MFULL;
5868 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005869 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005870 goto end;
5871 }
5872
5873 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5874 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5875 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5876 outbuf.data = 9;
5877
5878 /* we have in <fsize> the exact number of bytes we need to copy from
5879 * the HTX buffer. We need to check this against the connection's and
5880 * the stream's send windows, and to ensure that this fits in the max
5881 * frame size and in the buffer's available space minus 9 bytes (for
5882 * the frame header). The connection's flow control is applied last so
5883 * that we can use a separate list of streams which are immediately
5884 * unblocked on window opening. Note: we don't implement padding.
5885 */
5886
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005887 if (!fsize)
5888 goto send_empty;
5889
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005890 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005891 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreau2b718102021-04-21 07:32:39 +02005892 if (LIST_INLIST(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005893 LIST_DEL_INIT(&h2s->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02005894 LIST_APPEND(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005895 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 +01005896 goto end;
5897 }
5898
Willy Tarreauee573762018-12-04 15:25:57 +01005899 if (fsize > count)
5900 fsize = count;
5901
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005902 if (fsize > h2s_mws(h2s))
5903 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005904
5905 if (h2c->mfs && fsize > h2c->mfs)
5906 fsize = h2c->mfs; // >0
5907
5908 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005909 /* It doesn't fit at once. If it at least fits once split and
5910 * the amount of data to move is low, let's defragment the
5911 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005912 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005913 if (b_space_wraps(mbuf) &&
5914 (fsize + 9 <= b_room(mbuf)) &&
5915 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005916 goto realign_again;
5917 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005918 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005919
5920 if (fsize <= 0) {
5921 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005922 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5923 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005924 h2c->flags |= H2_CF_MUX_MFULL;
5925 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005926 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005927 goto end;
5928 }
5929 }
5930
5931 if (h2c->mws <= 0) {
5932 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005933 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 +01005934 goto end;
5935 }
5936
5937 if (fsize > h2c->mws)
5938 fsize = h2c->mws;
5939
5940 /* now let's copy this this into the output buffer */
5941 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005942 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005943 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005944 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005945
5946 send_empty:
5947 /* update the frame's size */
5948 h2_set_frame_size(outbuf.area, fsize);
5949
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005950 /* consume incoming HTX block */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005951 total += fsize;
5952 if (fsize == bsize) {
5953 htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005954 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5955 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5956 * message)
5957 */
5958 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5959 es_now = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02005960 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005961 }
5962 else {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005963 /* we've truncated this block */
5964 htx_cut_data_blk(htx, blk, fsize);
5965 }
5966
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005967 if (es_now)
5968 outbuf.area[4] |= H2_F_DATA_END_STREAM;
5969
5970 /* commit the H2 response */
5971 b_add(mbuf, fsize + 9);
5972
Christopher Faulet925abdf2021-04-27 22:51:07 +02005973 out:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005974 if (es_now) {
5975 if (h2s->st == H2_SS_OPEN)
5976 h2s->st = H2_SS_HLOC;
5977 else
5978 h2s_close(h2s);
5979
5980 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005981 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 +01005982 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005983 else if (fsize) {
5984 if (fsize == bsize) {
5985 TRACE_DEVEL("more data may be available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5986 goto new_frame;
5987 }
5988 else if (trunc_out) {
5989 /* we've truncated this block */
5990 goto new_frame;
5991 }
5992 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005993
5994 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005995 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005996 return total;
5997}
5998
Christopher Faulet991febd2020-12-02 15:17:31 +01005999/* Skip the message payload (DATA blocks) and emit an empty DATA frame with the
6000 * ES flag set for stream <h2s>. This function is called for response known to
6001 * have no payload. Only DATA blocks are skipped. This means the trailers are
Ilya Shipitsinacf84592021-02-06 22:29:08 +05006002 * still emitted. The caller must check the stream's status to detect any error
Christopher Faulet991febd2020-12-02 15:17:31 +01006003 * which might have happened subsequently to a successful send. Returns the
6004 * number of data bytes consumed, or zero if nothing done.
6005 */
6006static size_t h2s_skip_data(struct h2s *h2s, struct buffer *buf, size_t count)
6007{
6008 struct h2c *h2c = h2s->h2c;
6009 struct htx *htx;
6010 int bsize; /* htx block size */
6011 int fsize; /* h2 frame size */
6012 struct htx_blk *blk;
6013 enum htx_blk_type type;
6014 size_t total = 0;
6015
6016 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6017
6018 if (h2c_mux_busy(h2c, h2s)) {
6019 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6020 h2s->flags |= H2_SF_BLK_MBUSY;
6021 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6022 goto end;
6023 }
6024
6025 htx = htx_from_buf(buf);
6026
6027 next_data:
6028 if (!count || htx_is_empty(htx))
6029 goto end;
6030 blk = htx_get_head_blk(htx);
6031 type = htx_get_blk_type(blk);
6032 bsize = htx_get_blksz(blk);
6033 fsize = bsize;
6034 if (type != HTX_BLK_DATA)
6035 goto end;
6036
6037 if (fsize > count)
6038 fsize = count;
6039
6040 if (fsize != bsize)
6041 goto skip_data;
6042
6043 if (!(htx->flags & HTX_FL_EOM) || !htx_is_unique_blk(htx, blk))
6044 goto skip_data;
6045
6046 /* Here, it is the last block and it is also the end of the message. So
6047 * we can emit an empty DATA frame with the ES flag set
6048 */
6049 if (h2_send_empty_data_es(h2s) <= 0)
6050 goto end;
6051
6052 if (h2s->st == H2_SS_OPEN)
6053 h2s->st = H2_SS_HLOC;
6054 else
6055 h2s_close(h2s);
6056
6057 skip_data:
6058 /* consume incoming HTX block */
6059 total += fsize;
6060 if (fsize == bsize) {
6061 TRACE_DEVEL("more data may be available, trying to skip another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6062 htx_remove_blk(htx, blk);
6063 goto next_data;
6064 }
6065 else {
6066 /* we've truncated this block */
6067 htx_cut_data_blk(htx, blk, fsize);
6068 }
6069
6070 end:
6071 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6072 return total;
6073}
6074
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006075/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
6076 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
6077 * processed. The caller must check the stream's status to detect any error
6078 * which might have happened subsequently to a successful send. The htx blocks
6079 * are automatically removed from the message. The htx message is assumed to be
6080 * valid since produced from the internal code. Processing stops when meeting
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006081 * the EOT, which *is* removed. All trailers are processed at once and sent as a
6082 * single frame. The ES flag is always set.
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006083 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006084static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006085{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02006086 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006087 struct h2c *h2c = h2s->h2c;
6088 struct htx_blk *blk;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006089 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02006090 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006091 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006092 int ret = 0;
6093 int hdr;
6094 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006095
Willy Tarreau7838a792019-08-12 18:42:03 +02006096 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
6097
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006098 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006099 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006100 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02006101 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006102 goto end;
6103 }
6104
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006105 /* get trailers. */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006106 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006107 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006108 type = htx_get_blk_type(blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006109
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006110 if (type == HTX_BLK_UNUSED)
6111 continue;
6112
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006113 if (type == HTX_BLK_EOT)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006114 break;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006115 if (type == HTX_BLK_TLR) {
6116 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
6117 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
6118 goto fail;
6119 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006120
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006121 list[hdr].n = htx_get_blk_name(htx, blk);
6122 list[hdr].v = htx_get_blk_value(htx, blk);
6123 hdr++;
6124 }
6125 else {
6126 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 +01006127 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02006128 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006129 }
6130
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006131 /* marker for end of trailers */
6132 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006133
Willy Tarreau9c218e72019-05-26 10:08:28 +02006134 mbuf = br_tail(h2c->mbuf);
6135 retry:
6136 if (!h2_get_buf(h2c, mbuf)) {
6137 h2c->flags |= H2_CF_MUX_MALLOC;
6138 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006139 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 +02006140 goto end;
6141 }
6142
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006143 chunk_reset(&outbuf);
6144
6145 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006146 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6147 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006148 break;
6149 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006150 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006151 }
6152
6153 if (outbuf.size < 9)
6154 goto full;
6155
6156 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
6157 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
6158 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6159 outbuf.data = 9;
6160
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006161 /* encode all headers */
6162 for (idx = 0; idx < hdr; idx++) {
6163 /* these ones do not exist in H2 or must not appear in
6164 * trailers and must be dropped.
6165 */
6166 if (isteq(list[idx].n, ist("host")) ||
6167 isteq(list[idx].n, ist("content-length")) ||
6168 isteq(list[idx].n, ist("connection")) ||
6169 isteq(list[idx].n, ist("proxy-connection")) ||
6170 isteq(list[idx].n, ist("keep-alive")) ||
6171 isteq(list[idx].n, ist("upgrade")) ||
6172 isteq(list[idx].n, ist("te")) ||
6173 isteq(list[idx].n, ist("transfer-encoding")))
6174 continue;
6175
Christopher Faulet86d144c2019-08-14 16:32:25 +02006176 /* Skip all pseudo-headers */
6177 if (*(list[idx].n.ptr) == ':')
6178 continue;
6179
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006180 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
6181 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006182 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006183 goto realign_again;
6184 goto full;
6185 }
6186 }
6187
Willy Tarreau5121e5d2019-05-06 15:13:41 +02006188 if (outbuf.data == 9) {
6189 /* here we have a problem, we have nothing to emit (either we
6190 * received an empty trailers block followed or we removed its
6191 * contents above). Because of this we can't send a HEADERS
6192 * frame, so we have to cheat and instead send an empty DATA
6193 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01006194 */
6195 outbuf.area[3] = H2_FT_DATA;
6196 outbuf.area[4] = H2_F_DATA_END_STREAM;
6197 }
6198
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006199 /* update the frame's size */
6200 h2_set_frame_size(outbuf.area, outbuf.data - 9);
6201
Willy Tarreau572d9f52019-10-11 16:58:37 +02006202 if (outbuf.data > h2c->mfs + 9) {
6203 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
6204 /* output full */
6205 if (b_space_wraps(mbuf))
6206 goto realign_again;
6207 goto full;
6208 }
6209 }
6210
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006211 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02006212 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 +02006213 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006214 h2s->flags |= H2_SF_ES_SENT;
6215
6216 if (h2s->st == H2_SS_OPEN)
6217 h2s->st = H2_SS_HLOC;
6218 else
6219 h2s_close(h2s);
6220
6221 /* OK we could properly deliver the response */
6222 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02006223 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006224 ret = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006225 blk = htx_get_head_blk(htx);
6226 while (blk) {
6227 type = htx_get_blk_type(blk);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006228 ret += htx_get_blksz(blk);
6229 blk = htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006230 /* The removed block is the EOT */
6231 if (type == HTX_BLK_EOT)
6232 break;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006233 }
6234
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006235 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006236 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006237 return ret;
6238 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02006239 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6240 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006241 h2c->flags |= H2_CF_MUX_MFULL;
6242 h2s->flags |= H2_SF_BLK_MROOM;
6243 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006244 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 +01006245 goto end;
6246 fail:
6247 /* unparsable HTX messages, too large ones to be produced in the local
6248 * list etc go here (unrecoverable errors).
6249 */
6250 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
6251 ret = 0;
6252 goto end;
6253}
6254
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006255/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6256 * event subscriber <es> is not allowed to change from a previous call as long
6257 * as at least one event is still subscribed. The <event_type> must only be a
6258 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006259 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006260static int h2_subscribe(struct stconn *sc, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02006261{
Willy Tarreau36c22322022-05-27 10:41:24 +02006262 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02006263 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006264
Willy Tarreau7838a792019-08-12 18:42:03 +02006265 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006266
6267 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006268 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006269
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006270 es->events |= event_type;
6271 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006272
6273 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006274 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006275
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006276 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006277 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02006278 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02006279 !LIST_INLIST(&h2s->list)) {
Olivier Houchardf8338152019-05-14 17:50:32 +02006280 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02006281 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Olivier Houchardf8338152019-05-14 17:50:32 +02006282 else
Willy Tarreau2b718102021-04-21 07:32:39 +02006283 LIST_APPEND(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02006284 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02006285 }
Willy Tarreau7838a792019-08-12 18:42:03 +02006286 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006287 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006288}
6289
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006290/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6291 * The <es> pointer is not allowed to differ from the one passed to the
6292 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006293 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006294static int h2_unsubscribe(struct stconn *sc, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006295{
Willy Tarreau36c22322022-05-27 10:41:24 +02006296 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006297
Willy Tarreau7838a792019-08-12 18:42:03 +02006298 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006299
6300 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006301 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006302
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006303 es->events &= ~event_type;
6304 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01006305 h2s->subs = NULL;
6306
6307 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006308 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006309
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006310 if (event_type & SUB_RETRY_SEND) {
Frédéric Lécaille67fda162022-06-30 12:01:54 +02006311 TRACE_DEVEL("unsubscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006312 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006313 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
6314 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02006315 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01006316
Willy Tarreau7838a792019-08-12 18:42:03 +02006317 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006318 return 0;
6319}
6320
6321
Christopher Faulet564e39c2021-09-21 15:50:55 +02006322/* Called from the upper layer, to receive data
6323 *
6324 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
6325 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
6326 * means the caller wants to flush input data (from the mux buffer and the
6327 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
6328 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
6329 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
6330 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
6331 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
6332 * copy as much data as possible.
6333 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006334static size_t h2_rcv_buf(struct stconn *sc, struct buffer *buf, size_t count, int flags)
Olivier Houchard511efea2018-08-16 15:30:32 +02006335{
Willy Tarreau36c22322022-05-27 10:41:24 +02006336 struct h2s *h2s = __sc_mux_strm(sc);
Willy Tarreau082f5592018-11-25 08:03:32 +01006337 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01006338 struct htx *h2s_htx = NULL;
6339 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02006340 size_t ret = 0;
6341
Willy Tarreau7838a792019-08-12 18:42:03 +02006342 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
6343
Olivier Houchard511efea2018-08-16 15:30:32 +02006344 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006345 h2s_htx = htx_from_buf(&h2s->rxbuf);
Christopher Fauletec361bb2022-02-21 15:12:54 +01006346 if (htx_is_empty(h2s_htx) && !(h2s_htx->flags & HTX_FL_PARSING_ERROR)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02006347 /* Here htx_to_buf() will set buffer data to 0 because
6348 * the HTX is empty.
6349 */
6350 htx_to_buf(h2s_htx, &h2s->rxbuf);
6351 goto end;
6352 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01006353
Christopher Faulet9b79a102019-07-15 11:22:56 +02006354 ret = h2s_htx->data;
6355 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01006356
Christopher Faulet9b79a102019-07-15 11:22:56 +02006357 /* <buf> is empty and the message is small enough, swap the
6358 * buffers. */
6359 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01006360 htx_to_buf(buf_htx, buf);
6361 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006362 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
6363 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01006364 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02006365
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006366 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_UNUSED);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006367
6368 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
6369 buf_htx->flags |= HTX_FL_PARSING_ERROR;
6370 if (htx_is_empty(buf_htx))
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006371 se_fl_set(h2s->sd, SE_FL_EOI);
Willy Tarreau86724e22018-12-01 23:19:43 +01006372 }
Christopher Faulet810df062020-07-22 16:20:34 +02006373 else if (htx_is_empty(h2s_htx))
Christopher Faulet42432f32020-11-20 17:43:16 +01006374 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006375
Christopher Faulet9b79a102019-07-15 11:22:56 +02006376 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
6377 htx_to_buf(buf_htx, buf);
6378 htx_to_buf(h2s_htx, &h2s->rxbuf);
6379 ret -= h2s_htx->data;
6380
Christopher Faulet37070b22019-02-14 15:12:14 +01006381 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02006382 if (b_data(&h2s->rxbuf))
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006383 se_fl_set(h2s->sd, SE_FL_RCV_MORE | SE_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006384 else {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006385 se_fl_clr(h2s->sd, SE_FL_RCV_MORE | SE_FL_WANT_ROOM);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006386 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006387 se_fl_set(h2s->sd, SE_FL_EOI);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006388 /* Add EOS flag for tunnel */
6389 if (h2s->flags & H2_SF_BODY_TUNNEL)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006390 se_fl_set(h2s->sd, SE_FL_EOS);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006391 }
Christopher Fauletaade4ed2020-10-08 15:38:41 +02006392 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006393 se_fl_set(h2s->sd, SE_FL_EOS);
6394 if (se_fl_test(h2s->sd, SE_FL_ERR_PENDING))
6395 se_fl_set(h2s->sd, SE_FL_ERROR);
Olivier Houchard638b7992018-08-16 15:41:52 +02006396 if (b_size(&h2s->rxbuf)) {
6397 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01006398 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02006399 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006400 }
6401
Willy Tarreau082f5592018-11-25 08:03:32 +01006402 if (ret && h2c->dsi == h2s->id) {
6403 /* demux is blocking on this stream's buffer */
6404 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006405 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006406 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006407
Willy Tarreau7838a792019-08-12 18:42:03 +02006408 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006409 return ret;
6410}
6411
Olivier Houchardd846c262018-10-19 17:24:29 +02006412
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006413/* Called from the upper layer, to send data from buffer <buf> for no more than
6414 * <count> bytes. Returns the number of bytes effectively sent. Some status
Willy Tarreau4596fe22022-05-17 19:07:51 +02006415 * flags may be updated on the stream connector.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006416 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006417static size_t h2_snd_buf(struct stconn *sc, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006418{
Willy Tarreau36c22322022-05-27 10:41:24 +02006419 struct h2s *h2s = __sc_mux_strm(sc);
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006420 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006421 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006422 struct htx *htx;
6423 struct htx_blk *blk;
6424 enum htx_blk_type btype;
6425 uint32_t bsize;
6426 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006427
Willy Tarreau7838a792019-08-12 18:42:03 +02006428 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6429
Olivier Houchardd360ac62019-03-22 17:37:16 +01006430 /* If we were not just woken because we wanted to send but couldn't,
6431 * and there's somebody else that is waiting to send, do nothing,
6432 * we will subscribe later and be put at the end of the list
6433 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006434 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006435 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6436 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 +01006437 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006438 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006439 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006440
Willy Tarreau7838a792019-08-12 18:42:03 +02006441 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6442 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 +02006443 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006444 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006445
Willy Tarreaucab22952019-10-31 15:48:18 +01006446 if (h2s->h2c->st0 >= H2_CS_ERROR) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006447 se_fl_set(h2s->sd, SE_FL_ERROR);
Willy Tarreaucab22952019-10-31 15:48:18 +01006448 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);
6449 return 0;
6450 }
6451
Christopher Faulet9b79a102019-07-15 11:22:56 +02006452 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006453
Willy Tarreau0bad0432018-06-14 16:54:01 +02006454 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006455 h2s->flags |= H2_SF_OUTGOING_DATA;
6456
Willy Tarreau48770452022-08-18 16:03:51 +02006457 if (htx->extra)
6458 h2s->flags |= H2_SF_MORE_HTX_DATA;
6459 else
6460 h2s->flags &= ~H2_SF_MORE_HTX_DATA;
6461
Willy Tarreau751f2d02018-10-05 09:35:00 +02006462 if (h2s->id == 0) {
6463 int32_t id = h2c_get_next_sid(h2s->h2c);
6464
6465 if (id < 0) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006466 se_fl_set(h2s->sd, SE_FL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02006467 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 +02006468 return 0;
6469 }
6470
6471 eb32_delete(&h2s->by_id);
6472 h2s->by_id.key = h2s->id = id;
6473 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006474 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006475 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6476 }
6477
Christopher Faulet9b79a102019-07-15 11:22:56 +02006478 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6479 count && !htx_is_empty(htx)) {
6480 idx = htx_get_head(htx);
6481 blk = htx_get_blk(htx, idx);
6482 btype = htx_get_blk_type(blk);
6483 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006484
Christopher Faulet9b79a102019-07-15 11:22:56 +02006485 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006486 case HTX_BLK_REQ_SL:
6487 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006488 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006489 if (ret > 0) {
6490 total += ret;
6491 count -= ret;
6492 if (ret < bsize)
6493 goto done;
6494 }
6495 break;
6496
Willy Tarreau115e83b2018-12-01 19:17:53 +01006497 case HTX_BLK_RES_SL:
6498 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006499 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006500 if (ret > 0) {
6501 total += ret;
6502 count -= ret;
6503 if (ret < bsize)
6504 goto done;
6505 }
6506 break;
6507
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006508 case HTX_BLK_DATA:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006509 /* all these cause the emission of a DATA frame (possibly empty) */
Christopher Faulet991febd2020-12-02 15:17:31 +01006510 if (!(h2s->h2c->flags & H2_CF_IS_BACK) &&
6511 (h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BODYLESS_RESP)) == H2_SF_BODYLESS_RESP)
6512 ret = h2s_skip_data(h2s, buf, count);
6513 else
6514 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006515 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006516 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006517 total += ret;
6518 count -= ret;
6519 if (ret < bsize)
6520 goto done;
6521 }
6522 break;
6523
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006524 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006525 case HTX_BLK_EOT:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006526 /* This is the first trailers block, all the subsequent ones */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006527 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006528 if (ret > 0) {
6529 total += ret;
6530 count -= ret;
6531 if (ret < bsize)
6532 goto done;
6533 }
6534 break;
6535
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006536 default:
6537 htx_remove_blk(htx, blk);
6538 total += bsize;
6539 count -= bsize;
6540 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006541 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006542 }
6543
Christopher Faulet9b79a102019-07-15 11:22:56 +02006544 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006545 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006546 /* trim any possibly pending data after we close (extra CR-LF,
6547 * unprocessed trailers, abnormal extra data, ...)
6548 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006549 total += count;
6550 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006551 }
6552
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006553 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006554 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006555 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 +02006556 se_fl_set_error(h2s->sd);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006557 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006558 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006559 }
6560
Christopher Faulet9b79a102019-07-15 11:22:56 +02006561 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006562
Olivier Houchard7505f942018-08-21 18:10:44 +02006563 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006564 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006565 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 +02006566 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006567 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006568
Olivier Houchard7505f942018-08-21 18:10:44 +02006569 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006570 /* If we're waiting for flow control, and we got a shutr on the
6571 * connection, we will never be unlocked, so add an error on
Willy Tarreau4596fe22022-05-17 19:07:51 +02006572 * the stream connector.
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006573 */
6574 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
6575 !b_data(&h2s->h2c->dbuf) &&
6576 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006577 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 Tarreau95acc8b2022-05-27 16:14:10 +02006578 if (se_fl_test(h2s->sd, SE_FL_EOS))
6579 se_fl_set(h2s->sd, SE_FL_ERROR);
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006580 else
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006581 se_fl_set(h2s->sd, SE_FL_ERR_PENDING);
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006582 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006583
Willy Tarreau5723f292020-01-10 15:16:57 +01006584 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6585 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006586 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006587 LIST_DEL_INIT(&h2s->list);
6588 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006589
Willy Tarreau7838a792019-08-12 18:42:03 +02006590 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006591 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006592}
6593
Willy Tarreau90bffa22022-09-01 19:06:44 +02006594/* appends some info about stream <h2s> to buffer <msg>, or does nothing if
Willy Tarreau7051f732022-09-02 15:22:12 +02006595 * <h2s> is NULL. Returns non-zero if the stream is considered suspicious. May
6596 * emit multiple lines, each new one being prefixed with <pfx>, if <pfx> is not
6597 * NULL, otherwise a single line is used.
Willy Tarreau90bffa22022-09-01 19:06:44 +02006598 */
Willy Tarreau7051f732022-09-02 15:22:12 +02006599static int h2_dump_h2s_info(struct buffer *msg, const struct h2s *h2s, const char *pfx)
Willy Tarreau90bffa22022-09-01 19:06:44 +02006600{
6601 int ret = 0;
6602
6603 if (!h2s)
6604 return ret;
6605
Willy Tarreau7051f732022-09-02 15:22:12 +02006606 chunk_appendf(msg, " h2s.id=%d .st=%s .flg=0x%04x .rxbuf=%u@%p+%u/%u",
Willy Tarreau90bffa22022-09-01 19:06:44 +02006607 h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
6608 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
Willy Tarreau7051f732022-09-02 15:22:12 +02006609 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf));
6610
6611 if (pfx)
6612 chunk_appendf(msg, "\n%s", pfx);
6613
6614 chunk_appendf(msg, " .sc=%p", h2s_sc(h2s));
Willy Tarreau90bffa22022-09-01 19:06:44 +02006615 if (h2s_sc(h2s))
6616 chunk_appendf(msg, "(.flg=0x%08x .app=%p)",
6617 h2s_sc(h2s)->flags, h2s_sc(h2s)->app);
6618
Willy Tarreau7051f732022-09-02 15:22:12 +02006619 chunk_appendf(msg, " .sd=%p", h2s->sd);
Willy Tarreau90bffa22022-09-01 19:06:44 +02006620 chunk_appendf(msg, "(.flg=0x%08x)", se_fl_get(h2s->sd));
6621
Willy Tarreau7051f732022-09-02 15:22:12 +02006622 if (pfx)
6623 chunk_appendf(msg, "\n%s", pfx);
6624
Willy Tarreau90bffa22022-09-01 19:06:44 +02006625 chunk_appendf(msg, " .subs=%p", h2s->subs);
6626 if (h2s->subs) {
6627 chunk_appendf(msg, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
6628 chunk_appendf(msg, " tl.calls=%d tl.ctx=%p tl.fct=",
6629 h2s->subs->tasklet->calls,
6630 h2s->subs->tasklet->context);
6631 if (h2s->subs->tasklet->calls >= 1000000)
6632 ret = 1;
6633 resolve_sym_name(msg, NULL, h2s->subs->tasklet->process);
6634 chunk_appendf(msg, ")");
6635 }
6636 return ret;
6637}
6638
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006639/* appends some info about connection <h2c> to buffer <msg>, or does nothing if
6640 * <h2c> is NULL. Returns non-zero if the connection is considered suspicious.
Willy Tarreau7051f732022-09-02 15:22:12 +02006641 * May emit multiple lines, each new one being prefixed with <pfx>, if <pfx> is
6642 * not NULL, otherwise a single line is used.
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006643 */
Willy Tarreau7051f732022-09-02 15:22:12 +02006644static int h2_dump_h2c_info(struct buffer *msg, struct h2c *h2c, const char *pfx)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006645{
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006646 const struct buffer *hmbuf, *tmbuf;
6647 const struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006648 struct eb32_node *node;
6649 int fctl_cnt = 0;
6650 int send_cnt = 0;
6651 int tree_cnt = 0;
6652 int orph_cnt = 0;
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006653 int ret = 0;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006654
6655 if (!h2c)
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006656 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006657
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006658 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006659 fctl_cnt++;
6660
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006661 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006662 send_cnt++;
6663
6664 node = eb32_first(&h2c->streams_by_id);
6665 while (node) {
6666 h2s = container_of(node, struct h2s, by_id);
6667 tree_cnt++;
Willy Tarreau7be4ee02022-05-18 07:31:41 +02006668 if (!h2s_sc(h2s))
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006669 orph_cnt++;
6670 node = eb32_next(node);
6671 }
6672
Willy Tarreau60f62682019-05-26 11:32:27 +02006673 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006674 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006675 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau7051f732022-09-02 15:22:12 +02006676 " .nbst=%u .nbsc=%u",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006677 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau7051f732022-09-02 15:22:12 +02006678 h2c->nb_streams, h2c->nb_sc);
6679
6680 if (pfx)
6681 chunk_appendf(msg, "\n%s", pfx);
6682
6683 chunk_appendf(msg, " .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
6684 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u",
6685 fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006686 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006687 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
Willy Tarreau7051f732022-09-02 15:22:12 +02006688 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf));
6689
6690 if (pfx)
6691 chunk_appendf(msg, "\n%s", pfx);
6692
6693 chunk_appendf(msg, " .msi=%d"
6694 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreau987c0632018-12-18 10:32:05 +01006695 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02006696 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6697 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6698 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006699 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6700 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006701
Willy Tarreau7051f732022-09-02 15:22:12 +02006702
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006703 return ret;
6704}
6705
6706/* for debugging with CLI's "show fd" command */
6707static int h2_show_fd(struct buffer *msg, struct connection *conn)
6708{
6709 struct h2c *h2c = conn->ctx;
6710 const struct h2s *h2s;
6711 struct eb32_node *node;
6712 int ret = 0;
6713
6714 if (!h2c)
6715 return ret;
6716
Willy Tarreau7051f732022-09-02 15:22:12 +02006717 ret |= h2_dump_h2c_info(msg, h2c, NULL);
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006718
6719 node = eb32_last(&h2c->streams_by_id);
6720 if (node) {
6721 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau90bffa22022-09-01 19:06:44 +02006722 chunk_appendf(msg, " last_h2s=%p", h2s);
Willy Tarreau7051f732022-09-02 15:22:12 +02006723 ret |= h2_dump_h2s_info(msg, h2s, NULL);
Willy Tarreau987c0632018-12-18 10:32:05 +01006724 }
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006725
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006726 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006727}
Willy Tarreau62f52692017-10-08 23:01:42 +02006728
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02006729/* for debugging with CLI's "show sess" command. May emit multiple lines, each
6730 * new one being prefixed with <pfx>, if <pfx> is not NULL, otherwise a single
6731 * line is used. Each field starts with a space so it's safe to print it after
6732 * existing fields.
6733 */
6734static int h2_show_sd(struct buffer *msg, struct sedesc *sd, const char *pfx)
6735{
6736 struct h2s *h2s = sd->se;
6737 int ret = 0;
6738
6739 if (!h2s)
6740 return ret;
6741
6742 chunk_appendf(msg, " h2s=%p", h2s);
Willy Tarreau7051f732022-09-02 15:22:12 +02006743 ret |= h2_dump_h2s_info(msg, h2s, pfx);
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02006744 if (pfx)
6745 chunk_appendf(msg, "\n%s", pfx);
6746 chunk_appendf(msg, " h2c=%p", h2s->h2c);
Willy Tarreau7051f732022-09-02 15:22:12 +02006747 ret |= h2_dump_h2c_info(msg, h2s->h2c, pfx);
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02006748 return ret;
6749}
6750
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006751/* Migrate the the connection to the current thread.
6752 * Return 0 if successful, non-zero otherwise.
6753 * Expected to be called with the old thread lock held.
6754 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006755static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006756{
6757 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006758 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006759
6760 if (fd_takeover(conn->handle.fd, conn) != 0)
6761 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006762
6763 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6764 /* We failed to takeover the xprt, even if the connection may
6765 * still be valid, flag it as error'd, as we have already
6766 * taken over the fd, and wake the tasklet, so that it will
6767 * destroy it.
6768 */
6769 conn->flags |= CO_FL_ERROR;
6770 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6771 return -1;
6772 }
6773
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006774 if (h2c->wait_event.events)
6775 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6776 h2c->wait_event.events, &h2c->wait_event);
6777 /* To let the tasklet know it should free itself, and do nothing else,
6778 * set its context to NULL.
6779 */
6780 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006781 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006782
6783 task = h2c->task;
6784 if (task) {
6785 task->context = NULL;
6786 h2c->task = NULL;
6787 __ha_barrier_store();
6788 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006789
Willy Tarreaubeeabf52021-10-01 18:23:30 +02006790 h2c->task = task_new_here();
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006791 if (!h2c->task) {
6792 h2_release(h2c);
6793 return -1;
6794 }
6795 h2c->task->process = h2_timeout_task;
6796 h2c->task->context = h2c;
6797 }
6798 h2c->wait_event.tasklet = tasklet_new();
6799 if (!h2c->wait_event.tasklet) {
6800 h2_release(h2c);
6801 return -1;
6802 }
6803 h2c->wait_event.tasklet->process = h2_io_cb;
6804 h2c->wait_event.tasklet->context = h2c;
6805 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6806 SUB_RETRY_RECV, &h2c->wait_event);
6807
6808 return 0;
6809}
6810
Willy Tarreau62f52692017-10-08 23:01:42 +02006811/*******************************************************/
6812/* functions below are dedicated to the config parsers */
6813/*******************************************************/
6814
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006815/* config parser for global "tune.h2.header-table-size" */
6816static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006817 const struct proxy *defpx, const char *file, int line,
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006818 char **err)
6819{
6820 if (too_many_args(1, args, err, NULL))
6821 return -1;
6822
6823 h2_settings_header_table_size = atoi(args[1]);
6824 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6825 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6826 return -1;
6827 }
6828 return 0;
6829}
Willy Tarreau62f52692017-10-08 23:01:42 +02006830
Willy Tarreaue6baec02017-07-27 11:45:11 +02006831/* config parser for global "tune.h2.initial-window-size" */
6832static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006833 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue6baec02017-07-27 11:45:11 +02006834 char **err)
6835{
6836 if (too_many_args(1, args, err, NULL))
6837 return -1;
6838
6839 h2_settings_initial_window_size = atoi(args[1]);
6840 if (h2_settings_initial_window_size < 0) {
6841 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6842 return -1;
6843 }
6844 return 0;
6845}
6846
Willy Tarreau5242ef82017-07-27 11:47:28 +02006847/* config parser for global "tune.h2.max-concurrent-streams" */
6848static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006849 const struct proxy *defpx, const char *file, int line,
Willy Tarreau5242ef82017-07-27 11:47:28 +02006850 char **err)
6851{
6852 if (too_many_args(1, args, err, NULL))
6853 return -1;
6854
6855 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006856 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006857 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6858 return -1;
6859 }
6860 return 0;
6861}
6862
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006863/* config parser for global "tune.h2.max-frame-size" */
6864static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006865 const struct proxy *defpx, const char *file, int line,
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006866 char **err)
6867{
6868 if (too_many_args(1, args, err, NULL))
6869 return -1;
6870
6871 h2_settings_max_frame_size = atoi(args[1]);
6872 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6873 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6874 return -1;
6875 }
6876 return 0;
6877}
6878
Willy Tarreau62f52692017-10-08 23:01:42 +02006879
6880/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006881/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006882/***************************************/
6883
6884/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006885static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006886 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006887 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006888 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006889 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006890 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006891 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006892 .attach = h2_attach,
Willy Tarreaud1373532022-05-27 11:00:59 +02006893 .get_first_sc = h2_get_first_sc,
Willy Tarreau62f52692017-10-08 23:01:42 +02006894 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006895 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006896 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006897 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006898 .shutr = h2_shutr,
6899 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006900 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006901 .show_fd = h2_show_fd,
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02006902 .show_sd = h2_show_sd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006903 .takeover = h2_takeover,
Christopher Fauleta97cced2022-04-12 18:04:10 +02006904 .flags = MX_FL_HTX|MX_FL_HOL_RISK|MX_FL_NO_UPG,
Willy Tarreau62f52692017-10-08 23:01:42 +02006905 .name = "H2",
6906};
6907
Christopher Faulet32f61c02018-04-10 14:33:41 +02006908static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006909 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006910
Willy Tarreau0108d902018-11-25 19:14:37 +01006911INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6912
Willy Tarreau62f52692017-10-08 23:01:42 +02006913/* config keyword parsers */
6914static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006915 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006916 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006917 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006918 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006919 { 0, NULL, NULL }
6920}};
6921
Willy Tarreau0108d902018-11-25 19:14:37 +01006922INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006923
6924/* initialize internal structs after the config is parsed.
6925 * Returns zero on success, non-zero on error.
6926 */
6927static int init_h2()
6928{
6929 pool_head_hpack_tbl = create_pool("hpack_tbl",
6930 h2_settings_header_table_size,
6931 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01006932 if (!pool_head_hpack_tbl) {
6933 ha_alert("failed to allocate hpack_tbl memory pool\n");
6934 return (ERR_ALERT | ERR_FATAL);
6935 }
6936 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006937}
6938
6939REGISTER_POST_CHECK(init_h2);