blob: 330e80f7fbc5a59fdbe43bc1350c9949706c5b8e [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 */
Christopher Fauletff7925d2022-10-11 19:12:40 +0200657 ((h2c->flags & H2_CF_ERROR) || /* errors close immediately */
Olivier Houchard7a977432019-03-21 15:47:13 +0100658 (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 */
Christopher Fauletff7925d2022-10-11 19:12:40 +0200661 ((h2c->flags & H2_CF_RCVD_SHUT) ||
Olivier Houchard7a977432019-03-21 15:47:13 +0100662 (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 &&
Christopher Fauletff7925d2022-10-11 19:12:40 +0200691 ((h2c->flags & (H2_CF_RCVD_SHUT|H2_CF_ERROR)) || h2c->st0 >= H2_CS_ERROR))
Willy Tarreau315d8072017-12-10 22:17:57 +0100692 return 0;
693
694 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100695 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100696 return 1;
697
698 return 0;
699}
700
Willy Tarreau47b515a2018-12-21 16:09:41 +0100701/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200702static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100703{
704 if (!h2_recv_allowed(h2c))
705 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200706 if ((!consider_buffer || !b_data(&h2c->dbuf))
707 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100708 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200709 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100710}
711
712
Willy Tarreau4596fe22022-05-17 19:07:51 +0200713/* returns true if the front connection has too many stream connectors attached */
Willy Tarreau36c22322022-05-27 10:41:24 +0200714static inline int h2_frt_has_too_many_sc(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200715{
Willy Tarreau36c22322022-05-27 10:41:24 +0200716 return h2c->nb_sc > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200717}
718
Willy Tarreau44e973f2018-03-01 17:49:30 +0100719/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
720 * flags are used to figure what buffer was requested. It returns 1 if the
721 * allocation succeeds, in which case the connection is woken up, or 0 if it's
722 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200723 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100724static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200725{
726 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100727 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200728
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100729 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc(&h2c->dbuf)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200730 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200731 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200732 return 1;
733 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200734
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100735 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc(br_tail(h2c->mbuf))) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100736 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200737
738 if (h2c->flags & H2_CF_DEM_MROOM) {
739 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200740 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200741 }
Willy Tarreau14398122017-09-22 14:26:04 +0200742 return 1;
743 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100744
745 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
Willy Tarreau7be4ee02022-05-18 07:31:41 +0200746 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s_sc(h2s) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100747 b_alloc(&h2s->rxbuf)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100748 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200749 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100750 return 1;
751 }
752
Willy Tarreau14398122017-09-22 14:26:04 +0200753 return 0;
754}
755
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200756static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200757{
758 struct buffer *buf = NULL;
759
Willy Tarreau2b718102021-04-21 07:32:39 +0200760 if (likely(!LIST_INLIST(&h2c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100761 unlikely((buf = b_alloc(bptr)) == NULL)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100762 h2c->buf_wait.target = h2c;
763 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreaub4e34762021-09-30 19:02:18 +0200764 LIST_APPEND(&th_ctx->buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200765 }
766 return buf;
767}
768
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200769static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200770{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200771 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100772 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100773 offer_buffers(NULL, 1);
Willy Tarreau14398122017-09-22 14:26:04 +0200774 }
775}
776
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200777static inline void h2_release_mbuf(struct h2c *h2c)
778{
779 struct buffer *buf;
780 unsigned int count = 0;
781
782 while (b_size(buf = br_head_pick(h2c->mbuf))) {
783 b_free(buf);
784 count++;
785 }
786 if (count)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100787 offer_buffers(NULL, count);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200788}
789
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100790/* returns the number of allocatable outgoing streams for the connection taking
791 * the last_sid and the reserved ones into account.
792 */
793static inline int h2_streams_left(const struct h2c *h2c)
794{
795 int ret;
796
797 /* consider the number of outgoing streams we're allowed to create before
798 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
799 * nb_reserved is the number of streams which don't yet have an ID.
800 */
801 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
802 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
803 if (ret < 0)
804 ret = 0;
805 return ret;
806}
807
Willy Tarreau00f18a32019-01-26 12:19:01 +0100808/* returns the number of streams in use on a connection to figure if it's
Willy Tarreau36c22322022-05-27 10:41:24 +0200809 * idle or not. We check nb_sc and not nb_streams as the caller will want
Willy Tarreau00f18a32019-01-26 12:19:01 +0100810 * to know if it was the last one after a detach().
811 */
812static int h2_used_streams(struct connection *conn)
813{
814 struct h2c *h2c = conn->ctx;
815
Willy Tarreau36c22322022-05-27 10:41:24 +0200816 return h2c->nb_sc;
Willy Tarreau00f18a32019-01-26 12:19:01 +0100817}
818
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100819/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100820static int h2_avail_streams(struct connection *conn)
821{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100822 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100823 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100824 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100825
Willy Tarreau6afec462019-01-28 06:40:19 +0100826 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
827 * streams on the connection.
828 */
829 if (h2c->last_sid >= 0)
830 return 0;
831
Willy Tarreauc61966f2019-10-31 15:10:03 +0100832 if (h2c->st0 >= H2_CS_ERROR)
833 return 0;
834
Willy Tarreau86949782019-01-31 10:42:05 +0100835 /* note: may be negative if a SETTINGS frame changes the limit */
836 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100837
838 /* we must also consider the limit imposed by stream IDs */
839 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100840 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100841 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100842 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
843 ret1 = MIN(ret1, ret2);
844 }
845 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100846}
847
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200848
Willy Tarreau62f52692017-10-08 23:01:42 +0200849/*****************************************************************/
850/* functions below are dedicated to the mux setup and management */
851/*****************************************************************/
852
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200853/* Initialize the mux once it's attached. For outgoing connections, the context
854 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200855 * connections from the fact that the context is still NULL (even during mux
856 * upgrades). <input> is always used as Input buffer and may contain data. It is
857 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200858 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200859static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
860 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200861{
862 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100863 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200864 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200865
Christopher Fauletf81ef032019-10-04 15:19:43 +0200866 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200867
Willy Tarreaubafbe012017-11-24 17:34:44 +0100868 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200869 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200870 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200871
Christopher Faulete9b70722019-04-08 10:46:02 +0200872 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200873 h2c->flags = H2_CF_IS_BACK;
874 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
875 if (tick_isset(prx->timeout.serverfin))
876 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100877
878 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
879 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200880 } else {
881 h2c->flags = H2_CF_NONE;
882 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
883 if (tick_isset(prx->timeout.clientfin))
884 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100885
886 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
887 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200888 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100889
Willy Tarreau0b37d652018-10-03 10:33:02 +0200890 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100891 h2c->task = NULL;
Willy Tarreau15a47332022-03-18 15:57:34 +0100892 h2c->idle_start = now_ms;
Willy Tarreau3f133572017-10-31 19:21:06 +0100893 if (tick_isset(h2c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +0200894 t = task_new_here();
Willy Tarreau3f133572017-10-31 19:21:06 +0100895 if (!t)
896 goto fail;
897
898 h2c->task = t;
899 t->process = h2_timeout_task;
900 t->context = h2c;
901 t->expire = tick_add(now_ms, h2c->timeout);
902 }
Willy Tarreauea392822017-10-31 10:02:25 +0100903
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200904 h2c->wait_event.tasklet = tasklet_new();
905 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200906 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200907 h2c->wait_event.tasklet->process = h2_io_cb;
908 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100909 h2c->wait_event.events = 0;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200910 if (!conn_is_back(conn)) {
911 /* Connection might already be in the stopping_list if subject
912 * to h1->h2 upgrade.
913 */
914 if (!LIST_INLIST(&conn->stopping_list)) {
915 LIST_APPEND(&mux_stopping_data[tid].list,
916 &conn->stopping_list);
917 }
918 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200919
Willy Tarreau2bdcc702020-05-19 11:31:11 +0200920 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +0200921 if (!h2c->ddht)
922 goto fail;
923
924 /* Initialise the context. */
925 h2c->st0 = H2_CS_PREFACE;
926 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100927 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200928 h2c->max_id = -1;
929 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100930 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200931 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +0100932 h2c->nb_streams = 0;
Willy Tarreau36c22322022-05-27 10:41:24 +0200933 h2c->nb_sc = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100934 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100935 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200936
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200937 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200938 h2c->dsi = -1;
939 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100940
Willy Tarreau32218eb2017-09-22 08:07:25 +0200941 h2c->last_sid = -1;
942
Willy Tarreau51330962019-05-26 09:38:07 +0200943 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +0200944 h2c->miw = 65535; /* mux initial window size */
945 h2c->mws = 65535; /* mux window size */
946 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +0200947 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200948 LIST_INIT(&h2c->send_list);
949 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200950 LIST_INIT(&h2c->blocked_list);
Willy Tarreau90f366b2021-02-20 11:49:49 +0100951 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200952
Christopher Fauletf81ef032019-10-04 15:19:43 +0200953 conn->ctx = h2c;
954
Willy Tarreau8e6f7492021-06-16 17:47:24 +0200955 TRACE_USER("new H2 connection", H2_EV_H2C_NEW, conn);
956
Willy Tarreau3f133572017-10-31 19:21:06 +0100957 if (t)
958 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +0100959
Willy Tarreau01b44822018-10-03 14:26:37 +0200960 if (h2c->flags & H2_CF_IS_BACK) {
961 /* FIXME: this is temporary, for outgoing connections we need
962 * to immediately allocate a stream until the code is modified
Willy Tarreau36c22322022-05-27 10:41:24 +0200963 * so that the caller calls ->attach(). For now the outgoing sc
Christopher Fauletf81ef032019-10-04 15:19:43 +0200964 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +0200965 */
966 struct h2s *h2s;
967
Christopher Fauletf81ef032019-10-04 15:19:43 +0200968 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +0200969 if (!h2s)
970 goto fail_stream;
971 }
972
Willy Tarreau4781b152021-04-06 13:53:36 +0200973 HA_ATOMIC_INC(&h2c->px_counters->open_conns);
974 HA_ATOMIC_INC(&h2c->px_counters->total_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100975
Willy Tarreau0f383582018-10-03 14:22:21 +0200976 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200977 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +0200978 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200979 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +0200980 fail_stream:
981 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +0200982 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200983 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200984 if (h2c->wait_event.tasklet)
985 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100986 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +0200987 fail_no_h2c:
Willy Tarreau3b990fe2022-01-12 17:24:26 +0100988 if (!conn_is_back(conn))
989 LIST_DEL_INIT(&conn->stopping_list);
Christopher Fauletf81ef032019-10-04 15:19:43 +0200990 conn->ctx = conn_ctx; /* restore saved ctx */
991 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200992 return -1;
993}
994
Willy Tarreau751f2d02018-10-05 09:35:00 +0200995/* returns the next allocatable outgoing stream ID for the H2 connection, or
996 * -1 if no more is allocatable.
997 */
998static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
999{
1000 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001001
1002 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001003 id = -1;
1004 return id;
1005}
1006
Willy Tarreau2373acc2017-10-12 17:35:14 +02001007/* returns the stream associated with id <id> or NULL if not found */
1008static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1009{
1010 struct eb32_node *node;
1011
Willy Tarreau751f2d02018-10-05 09:35:00 +02001012 if (id == 0)
1013 return (struct h2s *)h2_closed_stream;
1014
Willy Tarreau2a856182017-05-16 15:20:39 +02001015 if (id > h2c->max_id)
1016 return (struct h2s *)h2_idle_stream;
1017
Willy Tarreau2373acc2017-10-12 17:35:14 +02001018 node = eb32_lookup(&h2c->streams_by_id, id);
1019 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001020 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001021
1022 return container_of(node, struct h2s, by_id);
1023}
1024
Christopher Faulet73c12072019-04-08 11:23:22 +02001025/* release function. This one should be called to free all resources allocated
1026 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001027 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001028static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001029{
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001030 struct connection *conn = h2c->conn;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001031
Willy Tarreau7838a792019-08-12 18:42:03 +02001032 TRACE_ENTER(H2_EV_H2C_END);
1033
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001034 hpack_dht_free(h2c->ddht);
Christopher Faulet61840e72019-04-15 09:33:32 +02001035
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001036 if (LIST_INLIST(&h2c->buf_wait.list))
1037 LIST_DEL_INIT(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001038
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001039 h2_release_buf(h2c, &h2c->dbuf);
1040 h2_release_mbuf(h2c);
Willy Tarreau14398122017-09-22 14:26:04 +02001041
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001042 if (h2c->task) {
1043 h2c->task->context = NULL;
1044 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
1045 h2c->task = NULL;
1046 }
1047 if (h2c->wait_event.tasklet)
1048 tasklet_free(h2c->wait_event.tasklet);
1049 if (conn && h2c->wait_event.events != 0)
1050 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
1051 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001052
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001053 HA_ATOMIC_DEC(&h2c->px_counters->open_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001054
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001055 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001056
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001057 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001058 if (!conn_is_back(conn))
1059 LIST_DEL_INIT(&conn->stopping_list);
1060
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001061 conn->mux = NULL;
1062 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001063 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001064
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001065 conn_stop_tracking(conn);
Willy Tarreau0b222472021-10-21 22:24:31 +02001066
1067 /* there might be a GOAWAY frame still pending in the TCP
1068 * stack, and if the peer continues to send (i.e. window
1069 * updates etc), this can result in losing the GOAWAY. For
1070 * this reason we try to drain anything received in between.
1071 */
1072 conn->flags |= CO_FL_WANT_DRAIN;
1073
1074 conn_xprt_shutw(conn);
1075 conn_xprt_close(conn);
1076 conn_sock_shutw(conn, !conn_is_back(conn));
1077 conn_ctrl_close(conn);
1078
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001079 if (conn->destroy_cb)
1080 conn->destroy_cb(conn);
1081 conn_free(conn);
1082 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001083
1084 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001085}
1086
1087
Willy Tarreau71681172017-10-23 14:39:06 +02001088/******************************************************/
1089/* functions below are for the H2 protocol processing */
1090/******************************************************/
1091
1092/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001093static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001094{
1095 return h2s ? h2s->id : 0;
1096}
1097
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001098/* returns the sum of the stream's own window size and the mux's initial
1099 * window, which together form the stream's effective window size.
1100 */
1101static inline int h2s_mws(const struct h2s *h2s)
1102{
1103 return h2s->sws + h2s->h2c->miw;
1104}
1105
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001106/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001107static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001108{
1109 if (h2c->msi < 0)
1110 return 0;
1111
1112 if (h2c->msi == h2s_id(h2s))
1113 return 0;
1114
1115 return 1;
1116}
1117
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001118/* marks an error on the connection. Before settings are sent, we must not send
1119 * a GOAWAY frame, and the error state will prevent h2c_send_goaway_error()
1120 * from verifying this so we set H2_CF_GOAWAY_FAILED to make sure it will not
1121 * even try.
1122 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001123static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001124{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001125 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001126 h2c->errcode = err;
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001127 if (h2c->st0 < H2_CS_SETTINGS1)
1128 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau741d6df2017-10-17 08:00:59 +02001129 h2c->st0 = H2_CS_ERROR;
1130}
1131
Willy Tarreau175cebb2019-01-24 10:02:24 +01001132/* marks an error on the stream. It may also update an already closed stream
1133 * (e.g. to report an error after an RST was received).
1134 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001135static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001136{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001137 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001138 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001139 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001140 if (h2s->st < H2_SS_ERROR)
1141 h2s->st = H2_SS_ERROR;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001142 se_fl_set_error(h2s->sd);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001143 }
1144}
1145
Willy Tarreau7e094452018-12-19 18:08:52 +01001146/* attempt to notify the data layer of recv availability */
1147static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1148{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001149 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001150 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001151 tasklet_wakeup(h2s->subs->tasklet);
1152 h2s->subs->events &= ~SUB_RETRY_RECV;
1153 if (!h2s->subs->events)
1154 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001155 }
1156}
1157
1158/* attempt to notify the data layer of send availability */
1159static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1160{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001161 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001162 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001163 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001164 tasklet_wakeup(h2s->subs->tasklet);
1165 h2s->subs->events &= ~SUB_RETRY_SEND;
1166 if (!h2s->subs->events)
1167 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001168 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001169 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1170 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1171 tasklet_wakeup(h2s->shut_tl);
1172 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001173}
1174
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001175/* alerts the data layer, trying to wake it up by all means, following
1176 * this sequence :
1177 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1178 * - if its subscribed to send, then it's woken up for send
1179 * - if it was subscribed to neither, its ->wake() callback is called
1180 * It is safe to call this function with a closed stream which doesn't have a
Willy Tarreau4596fe22022-05-17 19:07:51 +02001181 * stream connector anymore.
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001182 */
1183static void __maybe_unused h2s_alert(struct h2s *h2s)
1184{
Willy Tarreau7838a792019-08-12 18:42:03 +02001185 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1186
Willy Tarreauf96508a2020-01-10 11:12:48 +01001187 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001188 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001189 h2s_notify_recv(h2s);
1190 h2s_notify_send(h2s);
1191 }
Willy Tarreau2f2318d2022-05-18 10:17:16 +02001192 else if (h2s_sc(h2s) && h2s_sc(h2s)->app_ops->wake != NULL) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001193 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau2f2318d2022-05-18 10:17:16 +02001194 h2s_sc(h2s)->app_ops->wake(h2s_sc(h2s));
Willy Tarreau7838a792019-08-12 18:42:03 +02001195 }
1196
1197 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001198}
1199
Willy Tarreaue4820742017-07-27 13:37:23 +02001200/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001201static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001202{
1203 uint8_t *out = frame;
1204
1205 *out = len >> 16;
1206 write_n16(out + 1, len);
1207}
1208
Willy Tarreau54c15062017-10-10 17:10:03 +02001209/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1210 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1211 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001212 * available in the buffer's input prior to calling this function. The buffer
1213 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001214 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001215static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001216 const struct buffer *b, int o)
1217{
Willy Tarreau591d4452018-06-15 17:21:00 +02001218 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 +02001219}
1220
Willy Tarreau1f094672017-11-20 21:27:45 +01001221static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001222{
Willy Tarreau591d4452018-06-15 17:21:00 +02001223 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001224}
1225
Willy Tarreau1f094672017-11-20 21:27:45 +01001226static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001227{
Willy Tarreau591d4452018-06-15 17:21:00 +02001228 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001229}
1230
Willy Tarreau1f094672017-11-20 21:27:45 +01001231static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001232{
Willy Tarreau591d4452018-06-15 17:21:00 +02001233 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001234}
1235
1236
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001237/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1238 * The algorithm is not obvious. It turns out that H2 headers are neither
1239 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1240 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001241 *
1242 * b0 b1 b2 b3 b4 b5..b8
1243 * +----------+---------+--------+----+----+----------------------+
1244 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1245 * +----------+---------+--------+----+----+----------------------+
1246 *
1247 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1248 * we get the sid properly aligned and ordered, and 16 bits of len properly
1249 * ordered as well. The type and flags can be extracted using bit shifts from
1250 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001251 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1252 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001253 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001254static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001255{
1256 uint64_t w;
1257
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001258 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001259 return 0;
1260
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001261 w = h2_get_n64(b, o + 1);
1262 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001263 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1264 h->ff = w >> 32;
1265 h->ft = w >> 40;
1266 h->len += w >> 48;
1267 return 1;
1268}
1269
1270/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1271 * h2_peek_frame_hdr() above.
1272 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001273static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001274{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001275 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001276}
1277
1278/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001279static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001280{
1281 int ret;
1282
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001283 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001284 if (ret > 0)
1285 h2_skip_frame_hdr(b);
1286 return ret;
1287}
1288
Willy Tarreaucb985a42019-10-07 16:56:34 +02001289
1290/* try to fragment the headers frame present at the beginning of buffer <b>,
1291 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1292 * success. Typical causes of failure include a buffer not large enough to
1293 * add extra frame headers. The existing frame size is read in the current
1294 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1295 * and its length will be adjusted. The stream ID for continuation frames will
1296 * be copied from the initial frame's.
1297 */
1298static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1299{
1300 size_t remain = b->data - 9;
1301 int extra_frames = (remain - 1) / mfs;
1302 size_t fsize;
1303 char *fptr;
1304 int frame;
1305
1306 if (b->data <= mfs + 9)
1307 return 1;
1308
1309 /* Too large a frame, we need to fragment it using CONTINUATION
1310 * frames. We start from the end and move tails as needed.
1311 */
1312 if (b->data + extra_frames * 9 > b->size)
1313 return 0;
1314
1315 for (frame = extra_frames; frame; frame--) {
1316 fsize = ((remain - 1) % mfs) + 1;
1317 remain -= fsize;
1318
1319 /* move data */
1320 fptr = b->area + 9 + remain + (frame - 1) * 9;
1321 memmove(fptr + 9, b->area + 9 + remain, fsize);
1322 b->data += 9;
1323
1324 /* write new frame header */
1325 h2_set_frame_size(fptr, fsize);
1326 fptr[3] = H2_FT_CONTINUATION;
1327 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1328 write_n32(fptr + 5, read_n32(b->area + 5));
1329 }
1330
1331 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1332 h2_set_frame_size(b->area, remain);
1333 return 1;
1334}
1335
1336
Willy Tarreau00dd0782018-03-01 16:31:34 +01001337/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1338 * its connection if the stream was not yet closed. Please use this exclusively
1339 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001340 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001341static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001342{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001343 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001344 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001345 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001346 if (!h2s->id)
1347 h2s->h2c->nb_reserved--;
Willy Tarreau7be4ee02022-05-18 07:31:41 +02001348 if (h2s_sc(h2s)) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001349 if (!se_fl_test(h2s->sd, SE_FL_EOS) && !b_data(&h2s->rxbuf))
Willy Tarreaua27db382019-03-25 18:13:16 +01001350 h2s_notify_recv(h2s);
1351 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001352 HA_ATOMIC_DEC(&h2s->h2c->px_counters->open_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001353
Willy Tarreau7838a792019-08-12 18:42:03 +02001354 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001355 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001356 h2s->st = H2_SS_CLOSED;
1357}
1358
Willy Tarreau71049cc2018-03-28 13:56:39 +02001359/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001360/* h2s_destroy should only ever be called by the thread that owns the stream,
1361 * that means that a tasklet should be used if we want to destroy the h2s
1362 * from another thread
1363 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001364static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001365{
Willy Tarreau7838a792019-08-12 18:42:03 +02001366 struct connection *conn = h2s->h2c->conn;
1367
1368 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1369
Willy Tarreau0a10de62018-03-01 16:27:53 +01001370 h2s_close(h2s);
1371 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001372 if (b_size(&h2s->rxbuf)) {
1373 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01001374 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02001375 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001376
1377 if (h2s->subs)
1378 h2s->subs->events = 0;
1379
Joseph Herlantd77575d2018-11-25 10:54:45 -08001380 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001381 * reference left would be in the h2c send_list/fctl_list, and if
1382 * we're in it, we're getting out anyway
1383 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001384 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001385
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001386 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001387 tasklet_free(h2s->shut_tl);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001388 BUG_ON(h2s->sd && !se_fl_test(h2s->sd, SE_FL_ORPHAN));
1389 sedesc_free(h2s->sd);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001390 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001391
1392 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001393}
1394
Willy Tarreaua8e49542018-10-03 18:53:55 +02001395/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1396 * stream tree. In case of error, nothing is added and NULL is returned. The
1397 * causes of errors can be any failed memory allocation. The caller is
1398 * responsible for checking if the connection may support an extra stream
1399 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001400 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001401static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001402{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001403 struct h2s *h2s;
1404
Willy Tarreau7838a792019-08-12 18:42:03 +02001405 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1406
Willy Tarreaubafbe012017-11-24 17:34:44 +01001407 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001408 if (!h2s)
1409 goto out;
1410
Willy Tarreau5723f292020-01-10 15:16:57 +01001411 h2s->shut_tl = tasklet_new();
1412 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001413 pool_free(pool_head_h2s, h2s);
1414 goto out;
1415 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001416 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001417 h2s->shut_tl->process = h2_deferred_shut;
1418 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001419 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001420 h2s->h2c = h2c;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001421 h2s->sd = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001422 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001423 h2s->flags = H2_SF_NONE;
1424 h2s->errcode = H2_ERR_NO_ERROR;
1425 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001426 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001427 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001428 h2s->rxbuf = BUF_NULL;
Amaury Denoyelle74162742020-12-11 17:53:05 +01001429 memset(h2s->upgrade_protocol, 0, sizeof(h2s->upgrade_protocol));
Willy Tarreau751f2d02018-10-05 09:35:00 +02001430
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001431 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001432 if (id > 0)
1433 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001434 else
1435 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001436
1437 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001438 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001439 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001440
Willy Tarreau4781b152021-04-06 13:53:36 +02001441 HA_ATOMIC_INC(&h2c->px_counters->open_streams);
1442 HA_ATOMIC_INC(&h2c->px_counters->total_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001443
Willy Tarreau7838a792019-08-12 18:42:03 +02001444 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001445 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001446 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001447 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001448 return NULL;
1449}
1450
1451/* creates a new stream <id> on the h2c connection and returns it, or NULL in
Christopher Faulet7d013e72020-12-15 16:56:50 +01001452 * case of memory allocation error. <input> is used as input buffer for the new
1453 * stream. On success, it is transferred to the stream and the mux is no longer
1454 * responsible of it. On error, <input> is unchanged, thus the mux must still
1455 * take care of it.
Willy Tarreaua8e49542018-10-03 18:53:55 +02001456 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001457static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id, struct buffer *input, uint32_t flags)
Willy Tarreaua8e49542018-10-03 18:53:55 +02001458{
1459 struct session *sess = h2c->conn->owner;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001460 struct h2s *h2s;
1461
Willy Tarreau7838a792019-08-12 18:42:03 +02001462 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1463
Willy Tarreaue872f752022-05-12 09:24:41 +02001464 if (h2c->nb_streams >= h2_settings_max_concurrent_streams) {
1465 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 +02001466 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001467 }
Willy Tarreaua8e49542018-10-03 18:53:55 +02001468
1469 h2s = h2s_new(h2c, id);
1470 if (!h2s)
Willy Tarreaue872f752022-05-12 09:24:41 +02001471 goto out_alloc;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001472
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001473 h2s->sd = sedesc_new();
1474 if (!h2s->sd)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001475 goto out_close;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001476 h2s->sd->se = h2s;
1477 h2s->sd->conn = h2c->conn;
1478 se_fl_set(h2s->sd, SE_FL_T_MUX | SE_FL_ORPHAN | SE_FL_NOT_FIRST);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001479
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001480 /* FIXME wrong analogy between ext-connect and websocket, this need to
1481 * be refine.
1482 */
1483 if (flags & H2_SF_EXT_CONNECT_RCVD)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001484 se_fl_set(h2s->sd, SE_FL_WEBSOCKET);
Christopher Fauletb669d682022-03-22 18:37:19 +01001485
Willy Tarreaud0de6772022-02-04 09:05:37 +01001486 /* The stream will record the request's accept date (which is either the
1487 * end of the connection's or the date immediately after the previous
1488 * request) and the idle time, which is the delay since the previous
1489 * request. We can set the value now, it will be copied by stream_new().
1490 */
1491 sess->t_idle = tv_ms_elapsed(&sess->tv_accept, &now) - sess->t_handshake;
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001492
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001493 if (!sc_new_from_endp(h2s->sd, sess, input))
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001494 goto out_close;
Willy Tarreaucd6bb1a2022-05-10 15:00:03 +02001495
Willy Tarreau36c22322022-05-27 10:41:24 +02001496 h2c->nb_sc++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001497
Willy Tarreau590a0512018-09-05 11:56:48 +02001498 /* We want the accept date presented to the next stream to be the one
1499 * we have now, the handshake time to be null (since the next stream
1500 * is not delayed by a handshake), and the idle time to count since
1501 * right now.
1502 */
1503 sess->accept_date = date;
1504 sess->tv_accept = now;
1505 sess->t_handshake = 0;
Willy Tarreaud0de6772022-02-04 09:05:37 +01001506 sess->t_idle = 0;
Willy Tarreau590a0512018-09-05 11:56:48 +02001507
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001508 /* OK done, the stream lives its own life now */
Willy Tarreau36c22322022-05-27 10:41:24 +02001509 if (h2_frt_has_too_many_sc(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001510 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001511 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001512 return h2s;
1513
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001514 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001515 h2s_destroy(h2s);
Willy Tarreaue872f752022-05-12 09:24:41 +02001516 out_alloc:
1517 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 +02001518 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001519 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001520 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001521 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001522}
1523
Willy Tarreau36c22322022-05-27 10:41:24 +02001524/* allocates a new stream associated to stream connector <sc> on the h2c
Willy Tarreau4596fe22022-05-17 19:07:51 +02001525 * connection and returns it, or NULL in case of memory allocation error or if
1526 * the highest possible stream ID was reached.
Willy Tarreau751f2d02018-10-05 09:35:00 +02001527 */
Willy Tarreau36c22322022-05-27 10:41:24 +02001528static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct stconn *sc, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001529{
1530 struct h2s *h2s = NULL;
1531
Willy Tarreau7838a792019-08-12 18:42:03 +02001532 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1533
Willy Tarreaue872f752022-05-12 09:24:41 +02001534 if (h2c->nb_streams >= h2c->streams_limit) {
1535 TRACE_ERROR("Aborting stream since negotiated limit is too low", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001536 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001537 }
Willy Tarreau751f2d02018-10-05 09:35:00 +02001538
Willy Tarreaue872f752022-05-12 09:24:41 +02001539 if (h2_streams_left(h2c) < 1) {
1540 TRACE_ERROR("Aborting stream since no more streams left", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreaua80dca82019-01-24 17:08:28 +01001541 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001542 }
Willy Tarreaua80dca82019-01-24 17:08:28 +01001543
Willy Tarreau751f2d02018-10-05 09:35:00 +02001544 /* Defer choosing the ID until we send the first message to create the stream */
1545 h2s = h2s_new(h2c, 0);
Willy Tarreaue872f752022-05-12 09:24:41 +02001546 if (!h2s) {
1547 TRACE_ERROR("Failed to allocate a new stream", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001548 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001549 }
Willy Tarreau751f2d02018-10-05 09:35:00 +02001550
Willy Tarreau36c22322022-05-27 10:41:24 +02001551 if (sc_attach_mux(sc, h2s, h2c->conn) < 0) {
Willy Tarreaue872f752022-05-12 09:24:41 +02001552 TRACE_ERROR("Failed to allocate a new stream", H2_EV_H2S_NEW, h2c->conn);
Christopher Faulet070b91b2022-03-31 19:27:18 +02001553 h2s_destroy(h2s);
1554 h2s = NULL;
1555 goto out;
1556 }
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001557 h2s->sd = sc->sedesc;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001558 h2s->sess = sess;
Willy Tarreau36c22322022-05-27 10:41:24 +02001559 h2c->nb_sc++;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001560
Willy Tarreau751f2d02018-10-05 09:35:00 +02001561 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001562 if (likely(h2s))
1563 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1564 else
1565 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001566 return h2s;
1567}
1568
Willy Tarreaube5b7152017-09-25 16:25:39 +02001569/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1570 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1571 * the various settings codes.
1572 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001573static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001574{
1575 struct buffer *res;
1576 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001577 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001578 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001579 int ret = 0;
1580
1581 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001582
1583 if (h2c_mux_busy(h2c, NULL)) {
1584 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001585 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001586 }
1587
Willy Tarreaube5b7152017-09-25 16:25:39 +02001588 chunk_init(&buf, buf_data, sizeof(buf_data));
1589 chunk_memcpy(&buf,
1590 "\x00\x00\x00" /* length : 0 for now */
1591 "\x04\x00" /* type : 4 (settings), flags : 0 */
1592 "\x00\x00\x00\x00", /* stream ID : 0 */
1593 9);
1594
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001595 if (h2c->flags & H2_CF_IS_BACK) {
1596 /* send settings_enable_push=0 */
1597 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1598 }
1599
Amaury Denoyellebefeae82021-07-09 17:14:30 +02001600 /* rfc 8441 #3 SETTINGS_ENABLE_CONNECT_PROTOCOL=1,
1601 * sent automatically unless disabled in the global config */
1602 if (!(global.tune.options & GTUNE_DISABLE_H2_WEBSOCKET))
1603 chunk_memcat(&buf, "\x00\x08\x00\x00\x00\x01", 6);
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01001604
Willy Tarreaube5b7152017-09-25 16:25:39 +02001605 if (h2_settings_header_table_size != 4096) {
1606 char str[6] = "\x00\x01"; /* header_table_size */
1607
1608 write_n32(str + 2, h2_settings_header_table_size);
1609 chunk_memcat(&buf, str, 6);
1610 }
1611
1612 if (h2_settings_initial_window_size != 65535) {
1613 char str[6] = "\x00\x04"; /* initial_window_size */
1614
1615 write_n32(str + 2, h2_settings_initial_window_size);
1616 chunk_memcat(&buf, str, 6);
1617 }
1618
1619 if (h2_settings_max_concurrent_streams != 0) {
1620 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1621
1622 /* Note: 0 means "unlimited" for haproxy's config but not for
1623 * the protocol, so never send this value!
1624 */
1625 write_n32(str + 2, h2_settings_max_concurrent_streams);
1626 chunk_memcat(&buf, str, 6);
1627 }
1628
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001629 mfs = h2_settings_max_frame_size;
1630 if (mfs > global.tune.bufsize)
1631 mfs = global.tune.bufsize;
1632
1633 if (!mfs)
1634 mfs = global.tune.bufsize;
1635
1636 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001637 char str[6] = "\x00\x05"; /* max_frame_size */
1638
1639 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1640 * match bufsize - rewrite size, but at the moment it seems
1641 * that clients don't take care of it.
1642 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001643 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001644 chunk_memcat(&buf, str, 6);
1645 }
1646
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001647 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001648
1649 res = br_tail(h2c->mbuf);
1650 retry:
1651 if (!h2_get_buf(h2c, res)) {
1652 h2c->flags |= H2_CF_MUX_MALLOC;
1653 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001654 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001655 }
1656
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001657 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001658 if (unlikely(ret <= 0)) {
1659 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001660 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1661 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001662 h2c->flags |= H2_CF_MUX_MFULL;
1663 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001664 }
1665 else {
1666 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001667 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001668 }
1669 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001670 out:
1671 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001672 return ret;
1673}
1674
Willy Tarreau52eed752017-09-22 15:05:09 +02001675/* Try to receive a connection preface, then upon success try to send our
1676 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1677 * missing data. It may return an error in h2c.
1678 */
1679static int h2c_frt_recv_preface(struct h2c *h2c)
1680{
1681 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001682 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001683
Willy Tarreau7838a792019-08-12 18:42:03 +02001684 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1685
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001686 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001687
1688 if (unlikely(ret1 <= 0)) {
Christopher Fauletb5f7b522021-07-26 12:06:53 +02001689 if (!ret1)
1690 h2c->flags |= H2_CF_DEM_SHORT_READ;
Christopher Fauletff7925d2022-10-11 19:12:40 +02001691 if (ret1 < 0 || (h2c->flags & H2_CF_RCVD_SHUT)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001692 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 +02001693 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauee4684f2021-06-17 08:08:48 +02001694 if (b_data(&h2c->dbuf) ||
1695 !(((const struct session *)h2c->conn->owner)->fe->options & PR_O_IGNORE_PRB))
1696 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001697 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001698 ret2 = 0;
1699 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001700 }
1701
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001702 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001703 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001704 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001705 out:
1706 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001707 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001708}
1709
Willy Tarreau01b44822018-10-03 14:26:37 +02001710/* Try to send a connection preface, then upon success try to send our
1711 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1712 * missing data. It may return an error in h2c.
1713 */
1714static int h2c_bck_send_preface(struct h2c *h2c)
1715{
1716 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001717 int ret = 0;
1718
1719 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001720
1721 if (h2c_mux_busy(h2c, NULL)) {
1722 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001723 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001724 }
1725
Willy Tarreaubcc45952019-05-26 10:05:50 +02001726 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001727 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001728 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001729 h2c->flags |= H2_CF_MUX_MALLOC;
1730 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001731 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001732 }
1733
1734 if (!b_data(res)) {
1735 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001736 ret = b_istput(res, ist(H2_CONN_PREFACE));
1737 if (unlikely(ret <= 0)) {
1738 if (!ret) {
1739 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1740 goto retry;
1741 h2c->flags |= H2_CF_MUX_MFULL;
1742 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001743 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001744 }
1745 else {
1746 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001747 ret = 0;
1748 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001749 }
1750 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001751 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001752 ret = h2c_send_settings(h2c);
1753 out:
1754 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1755 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001756}
1757
Willy Tarreau081d4722017-05-16 21:51:05 +02001758/* try to send a GOAWAY frame on the connection to report an error or a graceful
1759 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1760 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1761 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1762 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1763 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1764 * on unrecoverable failure. It will not attempt to send one again in this last
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001765 * case, nor will it send one if settings were not sent (e.g. still waiting for
1766 * a preface) so that it is safe to use h2c_error() to report such errors.
Willy Tarreau081d4722017-05-16 21:51:05 +02001767 */
1768static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1769{
1770 struct buffer *res;
1771 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001772 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001773
Willy Tarreau7838a792019-08-12 18:42:03 +02001774 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1775
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001776 if ((h2c->flags & H2_CF_GOAWAY_FAILED) || h2c->st0 < H2_CS_SETTINGS1) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001777 ret = 1; // claim that it worked
1778 goto out;
1779 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001780
1781 if (h2c_mux_busy(h2c, h2s)) {
1782 if (h2s)
1783 h2s->flags |= H2_SF_BLK_MBUSY;
1784 else
1785 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001786 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001787 }
1788
Willy Tarreau9c218e72019-05-26 10:08:28 +02001789 /* len: 8, type: 7, flags: none, sid: 0 */
1790 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1791
1792 if (h2c->last_sid < 0)
1793 h2c->last_sid = h2c->max_id;
1794
1795 write_n32(str + 9, h2c->last_sid);
1796 write_n32(str + 13, h2c->errcode);
1797
Willy Tarreaubcc45952019-05-26 10:05:50 +02001798 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001799 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001800 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001801 h2c->flags |= H2_CF_MUX_MALLOC;
1802 if (h2s)
1803 h2s->flags |= H2_SF_BLK_MROOM;
1804 else
1805 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001806 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001807 }
1808
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001809 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001810 if (unlikely(ret <= 0)) {
1811 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001812 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1813 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001814 h2c->flags |= H2_CF_MUX_MFULL;
1815 if (h2s)
1816 h2s->flags |= H2_SF_BLK_MROOM;
1817 else
1818 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001819 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001820 }
1821 else {
1822 /* we cannot report this error using GOAWAY, so we mark
1823 * it and claim a success.
1824 */
1825 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1826 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001827 ret = 1;
1828 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001829 }
1830 }
1831 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001832
1833 /* some codes are not for real errors, just attempts to close cleanly */
1834 switch (h2c->errcode) {
1835 case H2_ERR_NO_ERROR:
1836 case H2_ERR_ENHANCE_YOUR_CALM:
1837 case H2_ERR_REFUSED_STREAM:
1838 case H2_ERR_CANCEL:
1839 break;
1840 default:
Willy Tarreau4781b152021-04-06 13:53:36 +02001841 HA_ATOMIC_INC(&h2c->px_counters->goaway_resp);
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001842 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001843 out:
1844 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001845 return ret;
1846}
1847
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001848/* Try to send an RST_STREAM frame on the connection for the indicated stream
1849 * during mux operations. This stream must be valid and cannot be closed
1850 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1851 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1852 * not yet.
1853 *
1854 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1855 * to write the message, it subscribes the stream to future notifications.
1856 */
1857static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1858{
1859 struct buffer *res;
1860 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001861 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001862
Willy Tarreau7838a792019-08-12 18:42:03 +02001863 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1864
1865 if (!h2s || h2s->st == H2_SS_CLOSED) {
1866 ret = 1;
1867 goto out;
1868 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001869
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001870 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1871 * RST_STREAM in response to a RST_STREAM frame.
1872 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001873 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001874 ret = 1;
1875 goto ignore;
1876 }
1877
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001878 if (h2c_mux_busy(h2c, h2s)) {
1879 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001880 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001881 }
1882
Willy Tarreau9c218e72019-05-26 10:08:28 +02001883 /* len: 4, type: 3, flags: none */
1884 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1885 write_n32(str + 5, h2s->id);
1886 write_n32(str + 9, h2s->errcode);
1887
Willy Tarreaubcc45952019-05-26 10:05:50 +02001888 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001889 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001890 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001891 h2c->flags |= H2_CF_MUX_MALLOC;
1892 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001893 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001894 }
1895
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001896 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001897 if (unlikely(ret <= 0)) {
1898 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001899 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1900 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001901 h2c->flags |= H2_CF_MUX_MFULL;
1902 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001903 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001904 }
1905 else {
1906 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001907 ret = 0;
1908 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001909 }
1910 }
1911
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001912 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001913 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001914 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001915 out:
1916 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001917 return ret;
1918}
1919
1920/* Try to send an RST_STREAM frame on the connection for the stream being
1921 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001922 * error code, even if the stream is one of the dummy ones, and will update
1923 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001924 *
1925 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1926 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001927 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001928 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001929 */
1930static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1931{
1932 struct buffer *res;
1933 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001934 int ret = 0;
1935
1936 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001937
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001938 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1939 * RST_STREAM in response to a RST_STREAM frame.
1940 */
1941 if (h2c->dft == H2_FT_RST_STREAM) {
1942 ret = 1;
1943 goto ignore;
1944 }
1945
Willy Tarreau27a84c92017-10-17 08:10:17 +02001946 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001947 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001948 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001949 }
1950
Willy Tarreau9c218e72019-05-26 10:08:28 +02001951 /* len: 4, type: 3, flags: none */
1952 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1953
1954 write_n32(str + 5, h2c->dsi);
1955 write_n32(str + 9, h2s->errcode);
1956
Willy Tarreaubcc45952019-05-26 10:05:50 +02001957 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001958 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001959 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001960 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001961 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001962 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001963 }
1964
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001965 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02001966 if (unlikely(ret <= 0)) {
1967 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001968 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1969 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001970 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001971 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001972 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001973 }
1974 else {
1975 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001976 ret = 0;
1977 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001978 }
1979 }
1980
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001981 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02001982 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001983 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001984 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001985 }
1986
Willy Tarreau7838a792019-08-12 18:42:03 +02001987 out:
Willy Tarreau4781b152021-04-06 13:53:36 +02001988 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_resp);
Willy Tarreau7838a792019-08-12 18:42:03 +02001989 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001990 return ret;
1991}
1992
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001993/* try to send an empty DATA frame with the ES flag set to notify about the
1994 * end of stream and match a shutdown(write). If an ES was already sent as
1995 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
1996 * on success or zero if nothing was done. In case of lack of room to write the
1997 * message, it subscribes the requesting stream to future notifications.
1998 */
1999static int h2_send_empty_data_es(struct h2s *h2s)
2000{
2001 struct h2c *h2c = h2s->h2c;
2002 struct buffer *res;
2003 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002004 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002005
Willy Tarreau7838a792019-08-12 18:42:03 +02002006 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
2007
2008 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
2009 ret = 1;
2010 goto out;
2011 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002012
2013 if (h2c_mux_busy(h2c, h2s)) {
2014 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002015 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002016 }
2017
Willy Tarreau9c218e72019-05-26 10:08:28 +02002018 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
2019 memcpy(str, "\x00\x00\x00\x00\x01", 5);
2020 write_n32(str + 5, h2s->id);
2021
Willy Tarreaubcc45952019-05-26 10:05:50 +02002022 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002023 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002024 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002025 h2c->flags |= H2_CF_MUX_MALLOC;
2026 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002027 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002028 }
2029
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002030 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002031 if (likely(ret > 0)) {
2032 h2s->flags |= H2_SF_ES_SENT;
2033 }
2034 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002035 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2036 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002037 h2c->flags |= H2_CF_MUX_MFULL;
2038 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002039 }
2040 else {
2041 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002042 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002043 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002044 out:
2045 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002046 return ret;
2047}
2048
Willy Tarreau4596fe22022-05-17 19:07:51 +02002049/* wake a specific stream and assign its stream connector some SE_FL_* flags
2050 * among SE_FL_ERR_PENDING and SE_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002051 * is automatically updated accordingly. If the stream is orphaned, it is
2052 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002053 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002054static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002055{
Willy Tarreau7838a792019-08-12 18:42:03 +02002056 struct h2c *h2c = h2s->h2c;
2057
2058 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2059
Willy Tarreau7be4ee02022-05-18 07:31:41 +02002060 if (!h2s_sc(h2s)) {
Christopher Fauletf02ca002019-03-07 16:21:34 +01002061 /* this stream was already orphaned */
2062 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002063 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002064 return;
2065 }
2066
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002067 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002068 if (h2s->st == H2_SS_OPEN)
2069 h2s->st = H2_SS_HREM;
2070 else if (h2s->st == H2_SS_HLOC)
2071 h2s_close(h2s);
2072 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002073
Christopher Fauletff7925d2022-10-11 19:12:40 +02002074 if (h2s->h2c->st0 >= H2_CS_ERROR || (h2s->h2c->flags & (H2_CF_ERR_PENDING|H2_CF_ERROR)) ||
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002075 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
Christopher Fauletff7925d2022-10-11 19:12:40 +02002076 se_fl_set_error(h2s->sd);
Willy Tarreau23482912019-05-07 15:23:14 +02002077
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002078 if (h2s->st < H2_SS_ERROR)
2079 h2s->st = H2_SS_ERROR;
2080 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002081
2082 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002083 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002084}
2085
2086/* wake the streams attached to the connection, whose id is greater than <last>
2087 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002088 */
Willy Tarreau23482912019-05-07 15:23:14 +02002089static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002090{
2091 struct eb32_node *node;
2092 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002093
Willy Tarreau7838a792019-08-12 18:42:03 +02002094 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2095
Christopher Fauletf02ca002019-03-07 16:21:34 +01002096 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002097 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2098 while (node) {
2099 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002100 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002101 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002102 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002103
Christopher Fauletf02ca002019-03-07 16:21:34 +01002104 /* Wake all streams with unassigned ID (ID == 0) */
2105 node = eb32_lookup(&h2c->streams_by_id, 0);
2106 while (node) {
2107 h2s = container_of(node, struct h2s, by_id);
2108 if (h2s->id > 0)
2109 break;
2110 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002111 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002112 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002113
2114 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002115}
2116
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002117/* Wake up all blocked streams whose window size has become positive after the
2118 * mux's initial window was adjusted. This should be done after having processed
2119 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002120 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002121static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002122{
2123 struct h2s *h2s;
2124 struct eb32_node *node;
2125
Willy Tarreau7838a792019-08-12 18:42:03 +02002126 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2127
Willy Tarreau3421aba2017-07-27 15:41:03 +02002128 node = eb32_first(&h2c->streams_by_id);
2129 while (node) {
2130 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002131 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002132 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002133 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002134 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2135 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002136 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002137 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002138 node = eb32_next(node);
2139 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002140
2141 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002142}
2143
2144/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2145 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002146 * return an error in h2c. The caller must have already verified frame length
2147 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002148 */
2149static int h2c_handle_settings(struct h2c *h2c)
2150{
2151 unsigned int offset;
2152 int error;
2153
Willy Tarreau7838a792019-08-12 18:42:03 +02002154 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2155
Willy Tarreau3421aba2017-07-27 15:41:03 +02002156 if (h2c->dff & H2_F_SETTINGS_ACK) {
2157 if (h2c->dfl) {
2158 error = H2_ERR_FRAME_SIZE_ERROR;
2159 goto fail;
2160 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002161 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002162 }
2163
Willy Tarreau3421aba2017-07-27 15:41:03 +02002164 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002165 if (b_data(&h2c->dbuf) < h2c->dfl) {
2166 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002167 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002168 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002169
2170 /* parse the frame */
2171 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002172 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2173 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002174
2175 switch (type) {
2176 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2177 /* we need to update all existing streams with the
2178 * difference from the previous iws.
2179 */
2180 if (arg < 0) { // RFC7540#6.5.2
2181 error = H2_ERR_FLOW_CONTROL_ERROR;
2182 goto fail;
2183 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002184 h2c->miw = arg;
2185 break;
2186 case H2_SETTINGS_MAX_FRAME_SIZE:
2187 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002188 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 +02002189 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002190 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002191 goto fail;
2192 }
2193 h2c->mfs = arg;
2194 break;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01002195 case H2_SETTINGS_HEADER_TABLE_SIZE:
2196 h2c->flags |= H2_CF_SHTS_UPDATED;
2197 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002198 case H2_SETTINGS_ENABLE_PUSH:
2199 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002200 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002201 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002202 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002203 goto fail;
2204 }
2205 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002206 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2207 if (h2c->flags & H2_CF_IS_BACK) {
2208 /* the limit is only for the backend; for the frontend it is our limit */
2209 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2210 arg = h2_settings_max_concurrent_streams;
2211 h2c->streams_limit = arg;
2212 }
2213 break;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002214 case H2_SETTINGS_ENABLE_CONNECT_PROTOCOL:
Amaury Denoyelle0df04362021-10-18 09:43:29 +02002215 if (arg == 1)
2216 h2c->flags |= H2_CF_RCVD_RFC8441;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002217 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002218 }
2219 }
2220
2221 /* need to ACK this frame now */
2222 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002223 done:
2224 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002225 return 1;
2226 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002227 if (!(h2c->flags & H2_CF_IS_BACK))
2228 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002229 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002230 out0:
2231 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 +02002232 return 0;
2233}
2234
2235/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2236 * success or one of the h2_status values.
2237 */
2238static int h2c_ack_settings(struct h2c *h2c)
2239{
2240 struct buffer *res;
2241 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002242 int ret = 0;
2243
2244 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002245
2246 if (h2c_mux_busy(h2c, NULL)) {
2247 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002248 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002249 }
2250
Willy Tarreau9c218e72019-05-26 10:08:28 +02002251 memcpy(str,
2252 "\x00\x00\x00" /* length : 0 (no data) */
2253 "\x04" "\x01" /* type : 4, flags : ACK */
2254 "\x00\x00\x00\x00" /* stream ID */, 9);
2255
Willy Tarreaubcc45952019-05-26 10:05:50 +02002256 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002257 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002258 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002259 h2c->flags |= H2_CF_MUX_MALLOC;
2260 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002261 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002262 }
2263
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002264 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002265 if (unlikely(ret <= 0)) {
2266 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002267 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2268 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002269 h2c->flags |= H2_CF_MUX_MFULL;
2270 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002271 }
2272 else {
2273 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002274 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002275 }
2276 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002277 out:
2278 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002279 return ret;
2280}
2281
Willy Tarreaucf68c782017-10-10 17:11:41 +02002282/* processes a PING frame and schedules an ACK if needed. The caller must pass
2283 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002284 * missing data. The caller must have already verified frame length
2285 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002286 */
2287static int h2c_handle_ping(struct h2c *h2c)
2288{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002289 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002290 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002291 h2c->st0 = H2_CS_FRAME_A;
2292 return 1;
2293}
2294
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002295/* Try to send a window update for stream id <sid> and value <increment>.
2296 * Returns > 0 on success or zero on missing room or failure. It may return an
2297 * error in h2c.
2298 */
2299static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2300{
2301 struct buffer *res;
2302 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002303 int ret = 0;
2304
2305 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002306
2307 if (h2c_mux_busy(h2c, NULL)) {
2308 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002309 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002310 }
2311
Willy Tarreau9c218e72019-05-26 10:08:28 +02002312 /* length: 4, type: 8, flags: none */
2313 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2314 write_n32(str + 5, sid);
2315 write_n32(str + 9, increment);
2316
Willy Tarreaubcc45952019-05-26 10:05:50 +02002317 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002318 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002319 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002320 h2c->flags |= H2_CF_MUX_MALLOC;
2321 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002322 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002323 }
2324
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002325 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002326 if (unlikely(ret <= 0)) {
2327 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002328 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2329 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002330 h2c->flags |= H2_CF_MUX_MFULL;
2331 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002332 }
2333 else {
2334 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002335 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002336 }
2337 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002338 out:
2339 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002340 return ret;
2341}
2342
2343/* try to send pending window update for the connection. It's safe to call it
2344 * with no pending updates. Returns > 0 on success or zero on missing room or
2345 * failure. It may return an error in h2c.
2346 */
2347static int h2c_send_conn_wu(struct h2c *h2c)
2348{
2349 int ret = 1;
2350
Willy Tarreau7838a792019-08-12 18:42:03 +02002351 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2352
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002353 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002354 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002355
Willy Tarreau97aaa672018-12-23 09:49:04 +01002356 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2357 /* increase the advertised connection window to 2G on
2358 * first update.
2359 */
2360 h2c->flags |= H2_CF_WINDOW_OPENED;
2361 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2362 }
2363
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002364 /* send WU for the connection */
2365 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2366 if (ret > 0)
2367 h2c->rcvd_c = 0;
2368
Willy Tarreau7838a792019-08-12 18:42:03 +02002369 out:
2370 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002371 return ret;
2372}
2373
2374/* try to send pending window update for the current dmux stream. It's safe to
2375 * call it with no pending updates. Returns > 0 on success or zero on missing
2376 * room or failure. It may return an error in h2c.
2377 */
2378static int h2c_send_strm_wu(struct h2c *h2c)
2379{
2380 int ret = 1;
2381
Willy Tarreau7838a792019-08-12 18:42:03 +02002382 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2383
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002384 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002385 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002386
2387 /* send WU for the stream */
2388 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2389 if (ret > 0)
2390 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002391 out:
2392 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002393 return ret;
2394}
2395
Willy Tarreaucf68c782017-10-10 17:11:41 +02002396/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2397 * success, 0 on missing data or one of the h2_status values.
2398 */
2399static int h2c_ack_ping(struct h2c *h2c)
2400{
2401 struct buffer *res;
2402 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002403 int ret = 0;
2404
2405 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002406
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002407 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002408 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002409
2410 if (h2c_mux_busy(h2c, NULL)) {
2411 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002412 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002413 }
2414
Willy Tarreaucf68c782017-10-10 17:11:41 +02002415 memcpy(str,
2416 "\x00\x00\x08" /* length : 8 (same payload) */
2417 "\x06" "\x01" /* type : 6, flags : ACK */
2418 "\x00\x00\x00\x00" /* stream ID */, 9);
2419
2420 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002421 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002422
Willy Tarreau9c218e72019-05-26 10:08:28 +02002423 res = br_tail(h2c->mbuf);
2424 retry:
2425 if (!h2_get_buf(h2c, res)) {
2426 h2c->flags |= H2_CF_MUX_MALLOC;
2427 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002428 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002429 }
2430
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002431 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002432 if (unlikely(ret <= 0)) {
2433 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002434 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2435 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002436 h2c->flags |= H2_CF_MUX_MFULL;
2437 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002438 }
2439 else {
2440 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002441 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002442 }
2443 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002444 out:
2445 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002446 return ret;
2447}
2448
Willy Tarreau26f95952017-07-27 17:18:30 +02002449/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2450 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002451 * h2c or h2s. The caller must have already verified frame length and stream ID
2452 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002453 */
2454static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2455{
2456 int32_t inc;
2457 int error;
2458
Willy Tarreau7838a792019-08-12 18:42:03 +02002459 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2460
Willy Tarreau26f95952017-07-27 17:18:30 +02002461 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002462 if (b_data(&h2c->dbuf) < h2c->dfl) {
2463 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002464 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002465 }
Willy Tarreau26f95952017-07-27 17:18:30 +02002466
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002467 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002468
2469 if (h2c->dsi != 0) {
2470 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002471
2472 /* it's not an error to receive WU on a closed stream */
2473 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002474 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002475
2476 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002477 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 +02002478 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002479 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002480 goto strm_err;
2481 }
2482
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002483 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002484 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 +02002485 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002486 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002487 goto strm_err;
2488 }
2489
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002490 h2s->sws += inc;
2491 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002492 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002493 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002494 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2495 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002496 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002497 }
2498 }
2499 else {
2500 /* connection window update */
2501 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002502 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002503 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002504 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002505 goto conn_err;
2506 }
2507
2508 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2509 error = H2_ERR_FLOW_CONTROL_ERROR;
2510 goto conn_err;
2511 }
2512
2513 h2c->mws += inc;
2514 }
2515
Willy Tarreau7838a792019-08-12 18:42:03 +02002516 done:
2517 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002518 return 1;
2519
2520 conn_err:
2521 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002522 out0:
2523 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 +02002524 return 0;
2525
2526 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002527 h2s_error(h2s, error);
2528 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002529 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002530 return 0;
2531}
2532
Willy Tarreaue96b0922017-10-30 00:28:29 +01002533/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002534 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2535 * have already verified frame length and stream ID validity. Described in
2536 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002537 */
2538static int h2c_handle_goaway(struct h2c *h2c)
2539{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002540 int last;
2541
Willy Tarreau7838a792019-08-12 18:42:03 +02002542 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002543 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002544 if (b_data(&h2c->dbuf) < h2c->dfl) {
2545 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002546 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002547 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002548 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002549
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002550 last = h2_get_n32(&h2c->dbuf, 0);
2551 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002552 if (h2c->last_sid < 0)
2553 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002554 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002555 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002556 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002557}
2558
Willy Tarreau92153fc2017-12-03 19:46:19 +01002559/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002560 * invalid. Returns > 0 on success or zero on missing data. It may return an
2561 * error in h2c. The caller must have already verified frame length and stream
2562 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002563 */
2564static int h2c_handle_priority(struct h2c *h2c)
2565{
Willy Tarreau7838a792019-08-12 18:42:03 +02002566 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2567
Willy Tarreau92153fc2017-12-03 19:46:19 +01002568 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002569 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002570 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002571 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002572 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002573 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002574
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002575 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002576 /* 7540#5.3 : can't depend on itself */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002577 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002578 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02002579 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002580 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002581 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002582 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002583 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002584 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002585}
2586
Willy Tarreaucd234e92017-08-18 10:59:39 +02002587/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002588 * Returns > 0 on success or zero on missing data. The caller must have already
2589 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002590 */
2591static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2592{
Willy Tarreau7838a792019-08-12 18:42:03 +02002593 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2594
Willy Tarreaucd234e92017-08-18 10:59:39 +02002595 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002596 if (b_data(&h2c->dbuf) < h2c->dfl) {
2597 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 +02002598 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002599 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002600 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002601
2602 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002603 if (h2s->st == H2_SS_CLOSED) {
2604 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 +02002605 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002606 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002607
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002608 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002609 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002610
Willy Tarreau7be4ee02022-05-18 07:31:41 +02002611 if (h2s_sc(h2s)) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02002612 se_fl_set_error(h2s->sd);
Willy Tarreauf830f012018-12-19 17:44:55 +01002613 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002614 }
2615
2616 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002617 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002618 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002619}
2620
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002621/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2622 * It may return an error in h2c or h2s. The caller must consider that the
2623 * return value is the new h2s in case one was allocated (most common case).
2624 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002625 * errors here are reported as connection errors since it's impossible to
2626 * recover from such errors after the compression context has been altered.
2627 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002628static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002629{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002630 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002631 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002632 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002633 int error;
2634
Willy Tarreau7838a792019-08-12 18:42:03 +02002635 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2636
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002637 if (!b_size(&h2c->dbuf)) {
2638 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002639 goto out; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002640 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002641
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002642 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2643 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002644 goto out; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002645 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002646
2647 /* now either the frame is complete or the buffer is complete */
2648 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002649 /* The stream exists/existed, this must be a trailers frame */
2650 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002651 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len, NULL);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002652 /* unrecoverable error ? */
2653 if (h2c->st0 >= H2_CS_ERROR)
2654 goto out;
2655
Christopher Faulet485da0b2021-10-08 08:56:00 +02002656 if (error == 0) {
2657 /* Demux not blocked because of the stream, it is an incomplete frame */
2658 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2659 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002660 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002661 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002662
2663 if (error < 0) {
2664 /* Failed to decode this frame (e.g. too large request)
2665 * but the HPACK decompressor is still synchronized.
2666 */
2667 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2668 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002669 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002670 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002671 goto done;
2672 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002673 /* the connection was already killed by an RST, let's consume
2674 * the data and send another RST.
2675 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002676 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau1f035502019-01-30 11:44:07 +01002677 h2s = (struct h2s*)h2_error_stream;
2678 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002679 }
2680 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2681 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2682 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002683 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau4781b152021-04-06 13:53:36 +02002684 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002685 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002686 goto conn_err;
2687 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002688 else if (h2c->flags & H2_CF_DEM_TOOMANY)
Willy Tarreau36c22322022-05-27 10:41:24 +02002689 goto out; // IDLE but too many sc still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002690
Amaury Denoyelle74162742020-12-11 17:53:05 +01002691 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002692
Willy Tarreau25919232019-01-03 14:48:18 +01002693 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002694 if (h2c->st0 >= H2_CS_ERROR)
2695 goto out;
2696
Willy Tarreau25919232019-01-03 14:48:18 +01002697 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002698 if (error == 0) {
2699 /* Demux not blocked because of the stream, it is an incomplete frame */
2700 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2701 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau25919232019-01-03 14:48:18 +01002702 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002703 }
Willy Tarreau25919232019-01-03 14:48:18 +01002704
2705 /* Failed to decode this stream (e.g. too large request)
2706 * but the HPACK decompressor is still synchronized.
2707 */
2708 h2s = (struct h2s*)h2_error_stream;
2709 goto send_rst;
2710 }
2711
Willy Tarreau29268e92021-06-17 08:29:14 +02002712 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn, 0, &rxbuf);
2713
Willy Tarreau198b5072022-05-12 09:08:51 +02002714 /* Now we cannot roll back and we won't come back here anymore for this
2715 * stream, this stream ID is open.
2716 */
2717 if (h2c->dsi > h2c->max_id)
2718 h2c->max_id = h2c->dsi;
2719
Willy Tarreau22de8d32018-09-05 19:55:58 +02002720 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002721 * positively from h2c_frt_stream_new(), the stream will report the error,
2722 * and if we return in error, h2c_frt_stream_new() will emit the error.
Christopher Faulet7d013e72020-12-15 16:56:50 +01002723 *
2724 * Xfer the rxbuf to the stream. On success, the new stream owns the
2725 * rxbuf. On error, it is released here.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002726 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02002727 h2s = h2c_frt_stream_new(h2c, h2c->dsi, &rxbuf, flags);
Willy Tarreau13278b42017-10-13 19:23:14 +02002728 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002729 h2s = (struct h2s*)h2_refused_stream;
2730 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002731 }
2732
2733 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002734 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002735 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002736
Willy Tarreau88d138e2019-01-02 19:38:14 +01002737 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002738 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002739 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002740
2741 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002742 if (h2s->st == H2_SS_OPEN)
2743 h2s->st = H2_SS_HREM;
2744 else
2745 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002746 }
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002747 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002748
2749 conn_err:
2750 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002751 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002752
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002753 out:
2754 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002755 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 +01002756 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002757
2758 send_rst:
2759 /* make the demux send an RST for the current stream. We may only
2760 * do this if we're certain that the HEADERS frame was properly
2761 * decompressed so that the HPACK decoder is still kept up to date.
2762 */
2763 h2_release_buf(h2c, &rxbuf);
2764 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002765
Willy Tarreau022e5e52020-09-10 09:33:15 +02002766 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 +02002767 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002768 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002769}
2770
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002771/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2772 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2773 * errors here are reported as connection errors since it's impossible to
2774 * recover from such errors after the compression context has been altered.
2775 */
2776static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2777{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002778 struct buffer rxbuf = BUF_NULL;
2779 unsigned long long body_len = 0;
2780 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002781 int error;
2782
Willy Tarreau7838a792019-08-12 18:42:03 +02002783 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2784
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002785 if (!b_size(&h2c->dbuf)) {
2786 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002787 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002788 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002789
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002790 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2791 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002792 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002793 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002794
Christopher Faulet6884aa32019-09-23 15:28:20 +02002795 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002796 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len, h2s->upgrade_protocol);
Christopher Faulet6884aa32019-09-23 15:28:20 +02002797 }
2798 else {
2799 /* the connection was already killed by an RST, let's consume
2800 * the data and send another RST.
2801 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002802 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002803 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002804 h2c->st0 = H2_CS_FRAME_E;
2805 goto send_rst;
2806 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002807
Willy Tarreau25919232019-01-03 14:48:18 +01002808 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002809 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002810 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002811
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002812 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2813 /* RFC7540#5.1 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002814 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 +01002815 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2816 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002817 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002818 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002819 }
2820
Willy Tarreau25919232019-01-03 14:48:18 +01002821 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002822 if (error == 0) {
2823 /* Demux not blocked because of the stream, it is an incomplete frame */
2824 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2825 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002826 goto fail; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002827 }
Willy Tarreau25919232019-01-03 14:48:18 +01002828
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002829 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002830 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 +01002831 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002832 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002833 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002834 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002835 }
2836
Christopher Fauletfa922f02019-05-07 10:55:17 +02002837 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002838 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002839
Willy Tarreau95acc8b2022-05-27 16:14:10 +02002840 if (se_fl_test(h2s->sd, SE_FL_ERROR) && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002841 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002842 else if (h2s->flags & H2_SF_ES_RCVD) {
2843 if (h2s->st == H2_SS_OPEN)
2844 h2s->st = H2_SS_HREM;
2845 else if (h2s->st == H2_SS_HLOC)
2846 h2s_close(h2s);
2847 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002848
Christopher Fauletf95f8762021-01-22 11:59:07 +01002849 /* Unblock busy server h2s waiting for the response headers to validate
2850 * the tunnel establishment or the end of the response of an oborted
2851 * tunnel
2852 */
2853 if ((h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY)) == (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY) ||
2854 (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)) {
2855 TRACE_STATE("Unblock h2s blocked on tunnel establishment/abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2856 h2s->flags &= ~H2_SF_BLK_MBUSY;
2857 }
2858
Willy Tarreau9abb3172021-06-16 18:32:42 +02002859 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 +02002860 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002861 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002862 fail:
2863 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2864 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002865
2866 send_rst:
2867 /* make the demux send an RST for the current stream. We may only
2868 * do this if we're certain that the HEADERS frame was properly
2869 * decompressed so that the HPACK decoder is still kept up to date.
2870 */
2871 h2_release_buf(h2c, &rxbuf);
2872 h2c->st0 = H2_CS_FRAME_E;
2873
Willy Tarreau022e5e52020-09-10 09:33:15 +02002874 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 +02002875 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2876 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002877}
2878
Willy Tarreau454f9052017-10-26 19:40:35 +02002879/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2880 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2881 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01002882static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02002883{
2884 int error;
2885
Willy Tarreau7838a792019-08-12 18:42:03 +02002886 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2887
Willy Tarreau454f9052017-10-26 19:40:35 +02002888 /* note that empty DATA frames are perfectly valid and sometimes used
2889 * to signal an end of stream (with the ES flag).
2890 */
2891
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002892 if (!b_size(&h2c->dbuf) && h2c->dfl) {
2893 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002894 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002895 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002896
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002897 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2898 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002899 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002900 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002901
2902 /* now either the frame is complete or the buffer is complete */
2903
Willy Tarreau454f9052017-10-26 19:40:35 +02002904 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2905 /* RFC7540#6.1 */
2906 error = H2_ERR_STREAM_CLOSED;
2907 goto strm_err;
2908 }
2909
Christopher Faulet4f09ec82019-06-19 09:25:58 +02002910 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002911 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002912 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 +01002913 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002914 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002915 goto strm_err;
2916 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002917 if (!(h2c->flags & H2_CF_IS_BACK) &&
2918 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT) &&
2919 ((h2c->dfl - h2c->dpl) || !(h2c->dff & H2_F_DATA_END_STREAM))) {
2920 /* a tunnel attempt was aborted but the client still try to send some raw data.
2921 * Thus the stream is closed with the CANCEL error. Here we take care it is not
2922 * an empty DATA Frame with the ES flag. The error is only handled if ES was
2923 * already sent to the client because depending on the scheduling, these data may
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002924 * have been sent before the server response but not handle here.
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002925 */
2926 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2927 error = H2_ERR_CANCEL;
2928 goto strm_err;
2929 }
Willy Tarreau1915ca22019-01-24 11:49:37 +01002930
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002931 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02002932 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002933
Willy Tarreau454f9052017-10-26 19:40:35 +02002934 /* call the upper layers to process the frame, then let the upper layer
2935 * notify the stream about any change.
2936 */
Willy Tarreau7be4ee02022-05-18 07:31:41 +02002937 if (!h2s_sc(h2s)) {
Willy Tarreau082c4572019-08-06 10:11:02 +02002938 /* The upper layer has already closed, this may happen on
2939 * 4xx/redirects during POST, or when receiving a response
2940 * from an H2 server after the client has aborted.
2941 */
2942 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002943 goto strm_err;
2944 }
2945
Willy Tarreau8f650c32017-11-21 19:36:21 +01002946 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002947 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01002948
Willy Tarreau721c9742017-11-07 11:05:42 +01002949 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002950 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002951 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002952 }
2953
2954 /* check for completion : the callee will change this to FRAME_A or
2955 * FRAME_H once done.
2956 */
2957 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02002958 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02002959
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002960 /* last frame */
2961 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002962 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002963 if (h2s->st == H2_SS_OPEN)
2964 h2s->st = H2_SS_HREM;
2965 else
2966 h2s_close(h2s);
2967
Willy Tarreau1915ca22019-01-24 11:49:37 +01002968 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
2969 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002970 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 +01002971 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002972 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002973 goto strm_err;
2974 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002975 }
2976
Christopher Fauletf95f8762021-01-22 11:59:07 +01002977 /* Unblock busy server h2s waiting for the end of the response for an
2978 * aborted tunnel
2979 */
2980 if ((h2c->flags & H2_CF_IS_BACK) &&
2981 (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)) {
2982 TRACE_STATE("Unblock h2s blocked on tunnel abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2983 h2s->flags &= ~H2_SF_BLK_MBUSY;
2984 }
2985
Willy Tarreau7838a792019-08-12 18:42:03 +02002986 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02002987 return 1;
2988
Willy Tarreau454f9052017-10-26 19:40:35 +02002989 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002990 h2s_error(h2s, error);
2991 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002992 fail:
2993 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 +02002994 return 0;
2995}
2996
Willy Tarreau63864812019-08-07 14:25:20 +02002997/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
2998 * valid for the current stream state. This is needed only after parsing the
2999 * frame header but in practice it can be performed at any time during
3000 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
3001 * or 0 in case of error, in which case either h2s or h2c will carry an error.
3002 */
3003static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
3004{
Willy Tarreau7838a792019-08-12 18:42:03 +02003005 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
3006
Willy Tarreau63864812019-08-07 14:25:20 +02003007 if (h2s->st == H2_SS_IDLE &&
3008 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
3009 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
3010 * this state MUST be treated as a connection error
3011 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003012 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 +02003013 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003014 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02003015 /* only log if no other stream can report the error */
3016 sess_log(h2c->conn->owner);
3017 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003018 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02003019 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 +02003020 return 0;
3021 }
3022
Willy Tarreau57a18162019-11-24 14:57:53 +01003023 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
3024 /* only PUSH_PROMISE would be permitted here */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003025 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 +01003026 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003027 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau57a18162019-11-24 14:57:53 +01003028 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
3029 return 0;
3030 }
3031
Willy Tarreau63864812019-08-07 14:25:20 +02003032 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
3033 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
3034 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
3035 * this state MUST be treated as a stream error.
3036 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
3037 * PUSH_PROMISE/CONTINUATION cause connection errors.
3038 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01003039 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003040 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 +02003041 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003042 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003043 }
3044 else {
Willy Tarreau63864812019-08-07 14:25:20 +02003045 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003046 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003047 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 +02003048 return 0;
3049 }
3050
3051 /* Below the management of frames received in closed state is a
3052 * bit hackish because the spec makes strong differences between
3053 * streams closed by receiving RST, sending RST, and seeing ES
3054 * in both directions. In addition to this, the creation of a
3055 * new stream reusing the identifier of a closed one will be
3056 * detected here. Given that we cannot keep track of all closed
3057 * streams forever, we consider that unknown closed streams were
3058 * closed on RST received, which allows us to respond with an
3059 * RST without breaking the connection (eg: to abort a transfer).
3060 * Some frames have to be silently ignored as well.
3061 */
3062 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
3063 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
3064 /* #5.1.1: The identifier of a newly
3065 * established stream MUST be numerically
3066 * greater than all streams that the initiating
3067 * endpoint has opened or reserved. This
3068 * governs streams that are opened using a
3069 * HEADERS frame and streams that are reserved
3070 * using PUSH_PROMISE. An endpoint that
3071 * receives an unexpected stream identifier
3072 * MUST respond with a connection error.
3073 */
3074 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003075 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 +02003076 return 0;
3077 }
3078
Willy Tarreau4c08f122019-09-26 08:47:15 +02003079 if (h2s->flags & H2_SF_RST_RCVD &&
3080 !(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 +02003081 /* RFC7540#5.1:closed: an endpoint that
3082 * receives any frame other than PRIORITY after
3083 * receiving a RST_STREAM MUST treat that as a
3084 * stream error of type STREAM_CLOSED.
3085 *
3086 * Note that old streams fall into this category
3087 * and will lead to an RST being sent.
3088 *
3089 * However, we cannot generalize this to all frame types. Those
3090 * carrying compression state must still be processed before
3091 * being dropped or we'll desynchronize the decoder. This can
3092 * happen with request trailers received after sending an
3093 * RST_STREAM, or with header/trailers responses received after
3094 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02003095 *
3096 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003097 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003098 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003099 */
3100 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3101 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003102 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 +02003103 return 0;
3104 }
3105
3106 /* RFC7540#5.1:closed: if this state is reached as a
3107 * result of sending a RST_STREAM frame, the peer that
3108 * receives the RST_STREAM might have already sent
3109 * frames on the stream that cannot be withdrawn. An
3110 * endpoint MUST ignore frames that it receives on
3111 * closed streams after it has sent a RST_STREAM
3112 * frame. An endpoint MAY choose to limit the period
3113 * over which it ignores frames and treat frames that
3114 * arrive after this time as being in error.
3115 */
3116 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3117 /* RFC7540#5.1:closed: any frame other than
3118 * PRIO/WU/RST in this state MUST be treated as
3119 * a connection error
3120 */
3121 if (h2c->dft != H2_FT_RST_STREAM &&
3122 h2c->dft != H2_FT_PRIORITY &&
3123 h2c->dft != H2_FT_WINDOW_UPDATE) {
3124 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003125 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 +02003126 return 0;
3127 }
3128 }
3129 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003130 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003131 return 1;
3132}
3133
Willy Tarreaubc933932017-10-09 16:21:43 +02003134/* process Rx frames to be demultiplexed */
3135static void h2_process_demux(struct h2c *h2c)
3136{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003137 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003138 struct h2_fh hdr;
3139 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003140 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003141
Willy Tarreau7838a792019-08-12 18:42:03 +02003142 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3143
Willy Tarreau081d4722017-05-16 21:51:05 +02003144 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003145 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003146
3147 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3148 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003149 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003150 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003151 goto out;
3152
Willy Tarreau52eed752017-09-22 15:05:09 +02003153 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3154 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003155 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003156 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003157 h2c->st0 = H2_CS_ERROR2;
Willy Tarreauee4684f2021-06-17 08:08:48 +02003158 if (b_data(&h2c->dbuf) ||
Christopher Faulet3f35da22021-07-26 10:18:35 +02003159 !(((const struct session *)h2c->conn->owner)->fe->options & (PR_O_NULLNOLOG|PR_O_IGNORE_PRB)))
Willy Tarreauee4684f2021-06-17 08:08:48 +02003160 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003161 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003162 goto done;
Willy Tarreau52eed752017-09-22 15:05:09 +02003163 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003164 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003165
3166 h2c->max_id = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02003167 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaued2b9d92022-08-18 15:30:41 +02003168 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau52eed752017-09-22 15:05:09 +02003169 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003170
3171 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003172 /* ensure that what is pending is a valid SETTINGS frame
3173 * without an ACK.
3174 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003175 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 +02003176 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003177 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003178 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003179 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003180 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 +02003181 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003182 if (!(h2c->flags & H2_CF_IS_BACK))
3183 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003184 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003185 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003186 }
3187
3188 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3189 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003190 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 +02003191 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3192 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003193 if (!(h2c->flags & H2_CF_IS_BACK))
3194 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003195 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003196 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003197 }
3198
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003199 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003200 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003201 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 +02003202 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3203 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003204 if (!(h2c->flags & H2_CF_IS_BACK))
3205 sess_log(h2c->conn->owner);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003206 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003207 }
3208
Willy Tarreau3bf69182018-12-21 15:34:50 +01003209 /* that's OK, switch to FRAME_P to process it. This is
3210 * a SETTINGS frame whose header has already been
3211 * deleted above.
3212 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003213 padlen = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +02003214 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003215 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003216 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003217 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003218
3219 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003220 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003221 int ret = 0;
3222
Willy Tarreau7838a792019-08-12 18:42:03 +02003223 if (!b_data(&h2c->dbuf)) {
3224 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003225 h2c->flags |= H2_CF_DEM_SHORT_READ;
3226 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003227 }
3228
3229 if (h2c->st0 >= H2_CS_ERROR) {
3230 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003231 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003232 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003233
3234 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003235 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003236 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr)) {
3237 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003238 break;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003239 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003240
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003241 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003242 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 +02003243 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003244 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003245 /* only log if no other stream can report the error */
3246 sess_log(h2c->conn->owner);
3247 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003248 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003249 break;
3250 }
3251
Willy Tarreau617592c2022-06-08 16:32:22 +02003252 if (h2c->rcvd_s && h2c->dsi != hdr.sid) {
3253 /* changed stream with a pending WU, need to
3254 * send it now.
3255 */
3256 TRACE_PROTO("sending stream WINDOW_UPDATE frame on stream switch", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
3257 ret = h2c_send_strm_wu(h2c);
3258 if (ret <= 0)
3259 break;
3260 }
3261
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003262 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003263 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3264 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3265 * we read the pad length and drop it from the remaining
3266 * payload (one byte + the 9 remaining ones = 10 total
3267 * removed), so we have a frame payload starting after the
3268 * pad len. Flow controlled frames (DATA) also count the
3269 * padlen in the flow control, so it must be adjusted.
3270 */
3271 if (hdr.len < 1) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003272 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 +01003273 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003274 if (!(h2c->flags & H2_CF_IS_BACK))
3275 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003276 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003277 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003278 }
3279 hdr.len--;
3280
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003281 if (b_data(&h2c->dbuf) < 10) {
3282 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003283 break; // missing padlen
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003284 }
Willy Tarreau3bf69182018-12-21 15:34:50 +01003285
3286 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3287
3288 if (padlen > hdr.len) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003289 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 +01003290 /* RFC7540#6.1 : pad length = length of
3291 * frame payload or greater => error.
3292 */
3293 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003294 if (!(h2c->flags & H2_CF_IS_BACK))
3295 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003296 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003297 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003298 }
3299
3300 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3301 h2c->rcvd_c++;
3302 h2c->rcvd_s++;
3303 }
3304 b_del(&h2c->dbuf, 1);
3305 }
3306 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003307
3308 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003309 h2c->dfl = hdr.len;
3310 h2c->dsi = hdr.sid;
3311 h2c->dft = hdr.ft;
3312 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003313 h2c->dpl = padlen;
Willy Tarreau0f458712022-08-18 11:19:57 +02003314 h2c->flags |= H2_CF_DEM_IN_PROGRESS;
Willy Tarreau73db4342019-09-25 07:28:44 +02003315 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 +02003316 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003317
3318 /* check for minimum basic frame format validity */
3319 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3320 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003321 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 +01003322 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003323 if (!(h2c->flags & H2_CF_IS_BACK))
3324 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003325 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003326 goto done;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003327 }
Willy Tarreau15a47332022-03-18 15:57:34 +01003328
3329 /* transition to HEADERS frame ends the keep-alive idle
3330 * timer and starts the http-request idle delay.
3331 */
3332 if (hdr.ft == H2_FT_HEADERS)
3333 h2c->idle_start = now_ms;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003334 }
3335
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003336 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3337 * H2_CS_FRAME_P indicates an incomplete previous operation
3338 * (most often the first attempt) and requires some validity
3339 * checks for the frame and the current state. The two other
3340 * ones are set after completion (or abortion) and must skip
3341 * validity checks.
3342 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003343 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3344
Willy Tarreau7be4ee02022-05-18 07:31:41 +02003345 if (tmp_h2s != h2s && h2s && h2s_sc(h2s) &&
Willy Tarreau567beb82018-12-18 16:52:44 +01003346 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003347 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003348 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003349 (h2s->flags & H2_SF_ES_RCVD) ||
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003350 se_fl_test(h2s->sd, SE_FL_ERROR | SE_FL_ERR_PENDING | SE_FL_EOS))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003351 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003352 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 +02003353 se_fl_set(h2s->sd, SE_FL_RCV_MORE);
Willy Tarreau7e094452018-12-19 18:08:52 +01003354 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003355 }
3356 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003357
Willy Tarreau63864812019-08-07 14:25:20 +02003358 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003359 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3360 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003361 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003362 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003363
Willy Tarreau7e98c052017-10-10 15:56:59 +02003364 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003365 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003366 if (h2c->st0 == H2_CS_FRAME_P) {
3367 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003368 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003369 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003370 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003371
Willy Tarreau7838a792019-08-12 18:42:03 +02003372 if (h2c->st0 == H2_CS_FRAME_A) {
3373 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 +02003374 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003375 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003376 break;
3377
Willy Tarreaucf68c782017-10-10 17:11:41 +02003378 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003379 if (h2c->st0 == H2_CS_FRAME_P) {
3380 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003381 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003382 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003383
Willy Tarreau7838a792019-08-12 18:42:03 +02003384 if (h2c->st0 == H2_CS_FRAME_A) {
3385 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 +02003386 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003387 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003388 break;
3389
Willy Tarreau26f95952017-07-27 17:18:30 +02003390 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003391 if (h2c->st0 == H2_CS_FRAME_P) {
3392 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 +02003393 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003394 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003395 break;
3396
Willy Tarreau61290ec2017-10-17 08:19:21 +02003397 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003398 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003399 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3400 * frames' parsers consume all following CONTINUATION
3401 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003402 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003403 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 +01003404 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003405 if (!(h2c->flags & H2_CF_IS_BACK))
3406 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003407 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003408 goto done;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003409
Willy Tarreau13278b42017-10-13 19:23:14 +02003410 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003411 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003412 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003413 if (h2c->flags & H2_CF_IS_BACK)
3414 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3415 else
3416 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003417 if (tmp_h2s) {
3418 h2s = tmp_h2s;
3419 ret = 1;
3420 }
3421 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003422 HA_ATOMIC_INC(&h2c->px_counters->headers_rcvd);
Willy Tarreau13278b42017-10-13 19:23:14 +02003423 break;
3424
Willy Tarreau454f9052017-10-26 19:40:35 +02003425 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003426 if (h2c->st0 == H2_CS_FRAME_P) {
3427 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003428 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003429 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003430 HA_ATOMIC_INC(&h2c->px_counters->data_rcvd);
Willy Tarreau454f9052017-10-26 19:40:35 +02003431
Willy Tarreau7838a792019-08-12 18:42:03 +02003432 if (h2c->st0 == H2_CS_FRAME_A) {
Willy Tarreau617592c2022-06-08 16:32:22 +02003433 /* rcvd_s will suffice to trigger the sending of a WU */
3434 h2c->st0 = H2_CS_FRAME_H;
Willy Tarreau7838a792019-08-12 18:42:03 +02003435 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003436 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003437
Willy Tarreau92153fc2017-12-03 19:46:19 +01003438 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003439 if (h2c->st0 == H2_CS_FRAME_P) {
3440 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003441 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003442 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003443 break;
3444
Willy Tarreaucd234e92017-08-18 10:59:39 +02003445 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003446 if (h2c->st0 == H2_CS_FRAME_P) {
3447 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 +02003448 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003449 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003450 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_rcvd);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003451 break;
3452
Willy Tarreaue96b0922017-10-30 00:28:29 +01003453 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003454 if (h2c->st0 == H2_CS_FRAME_P) {
3455 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003456 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003457 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003458 HA_ATOMIC_INC(&h2c->px_counters->goaway_rcvd);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003459 break;
3460
Willy Tarreau1c661982017-10-30 13:52:01 +01003461 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003462 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003463 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003464 /* drop frames that we ignore. They may be larger than
3465 * the buffer so we drain all of their contents until
3466 * we reach the end.
3467 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003468 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3469 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003470 h2c->dfl -= ret;
3471 ret = h2c->dfl == 0;
3472 }
3473
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003474 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003475 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003476 if (h2s->st == H2_SS_ERROR) {
3477 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 +01003478 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003479 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003480
Willy Tarreau7838a792019-08-12 18:42:03 +02003481 if (h2c->st0 == H2_CS_FRAME_E) {
3482 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 +01003483 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003484 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003485
Willy Tarreau7e98c052017-10-10 15:56:59 +02003486 /* error or missing data condition met above ? */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003487 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02003488 break;
3489
3490 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003491 if (h2c->dfl)
3492 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003493 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3494 b_del(&h2c->dbuf, ret);
3495 h2c->dfl -= ret;
3496 if (!h2c->dfl) {
Willy Tarreau0f458712022-08-18 11:19:57 +02003497 h2c->flags &= ~H2_CF_DEM_IN_PROGRESS;
Christopher Faulet5112a602019-09-26 16:38:28 +02003498 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3499 h2c->st0 = H2_CS_FRAME_H;
Christopher Faulet5112a602019-09-26 16:38:28 +02003500 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003501 }
3502 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003503
Willy Tarreau617592c2022-06-08 16:32:22 +02003504 if (h2c->rcvd_s > 0 &&
3505 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3506 TRACE_PROTO("sending stream WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn, h2s);
3507 h2c_send_strm_wu(h2c);
3508 }
3509
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003510 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003511 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3512 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003513 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003514 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003515
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003516 done:
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003517 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_DEM_SHORT_READ)) {
3518 if (h2c->flags & H2_CF_RCVD_SHUT)
3519 h2c->flags |= H2_CF_END_REACHED;
3520 }
3521
Willy Tarreau7be4ee02022-05-18 07:31:41 +02003522 if (h2s && h2s_sc(h2s) &&
Willy Tarreau567beb82018-12-18 16:52:44 +01003523 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003524 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003525 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003526 (h2s->flags & H2_SF_ES_RCVD) ||
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003527 se_fl_test(h2s->sd, SE_FL_ERROR | SE_FL_ERR_PENDING | SE_FL_EOS))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003528 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003529 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 +02003530 se_fl_set(h2s->sd, SE_FL_RCV_MORE);
Willy Tarreau7e094452018-12-19 18:08:52 +01003531 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003532 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003533
Willy Tarreau7838a792019-08-12 18:42:03 +02003534 if (old_iw != h2c->miw) {
3535 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003536 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003537 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003538
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003539 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003540 out:
3541 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003542 return;
Willy Tarreaubc933932017-10-09 16:21:43 +02003543}
3544
Willy Tarreau989539b2020-01-10 17:01:29 +01003545/* resume each h2s eligible for sending in list head <head> */
3546static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3547{
3548 struct h2s *h2s, *h2s_back;
3549
3550 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3551
3552 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3553 if (h2c->mws <= 0 ||
3554 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3555 h2c->st0 >= H2_CS_ERROR)
3556 break;
3557
3558 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003559
Willy Tarreaud9464162020-01-10 18:25:07 +01003560 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003561 continue;
3562
Willy Tarreau5723f292020-01-10 15:16:57 +01003563 /* If the sender changed his mind and unsubscribed, let's just
3564 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003565 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003566 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3567 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003568 LIST_DEL_INIT(&h2s->list);
3569 continue;
3570 }
3571
Willy Tarreauf96508a2020-01-10 11:12:48 +01003572 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003573 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003574 tasklet_wakeup(h2s->subs->tasklet);
3575 h2s->subs->events &= ~SUB_RETRY_SEND;
3576 if (!h2s->subs->events)
3577 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003578 }
3579 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3580 tasklet_wakeup(h2s->shut_tl);
3581 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003582 }
3583
3584 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3585}
3586
Willy Tarreaubc933932017-10-09 16:21:43 +02003587/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3588 * the end.
3589 */
3590static int h2_process_mux(struct h2c *h2c)
3591{
Willy Tarreau7838a792019-08-12 18:42:03 +02003592 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3593
Willy Tarreau01b44822018-10-03 14:26:37 +02003594 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3595 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3596 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3597 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003598 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003599 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003600 goto fail;
3601 }
3602 h2c->st0 = H2_CS_SETTINGS1;
3603 }
3604 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003605 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003606 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003607 }
3608
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003609 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003610 if (h2c->rcvd_s > 0 &&
3611 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3612 h2c_send_strm_wu(h2c) < 0)
3613 goto fail;
3614
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003615 if (h2c->rcvd_c > 0 &&
3616 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3617 h2c_send_conn_wu(h2c) < 0)
3618 goto fail;
3619
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003620 /* First we always process the flow control list because the streams
3621 * waiting there were already elected for immediate emission but were
3622 * blocked just on this.
3623 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003624 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3625 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003626
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003627 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003628 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003629 if (h2c->st0 == H2_CS_ERROR) {
3630 if (h2c->max_id >= 0) {
3631 h2c_send_goaway_error(h2c, NULL);
3632 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003633 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003634 }
3635
3636 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3637 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003638 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003639 done:
3640 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3641 return 1;
3642 out0:
3643 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3644 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003645}
3646
Willy Tarreau62f52692017-10-08 23:01:42 +02003647
Willy Tarreau479998a2018-11-18 06:30:59 +01003648/* Attempt to read data, and subscribe if none available.
3649 * The function returns 1 if data has been received, otherwise zero.
3650 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003651static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003652{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003653 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003654 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003655 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003656 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003657
Willy Tarreau7838a792019-08-12 18:42:03 +02003658 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3659
3660 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3661 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003662 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003663 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003664
Willy Tarreau7838a792019-08-12 18:42:03 +02003665 if (!h2_recv_allowed(h2c)) {
3666 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003667 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003668 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003669
Willy Tarreau44e973f2018-03-01 17:49:30 +01003670 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003671 if (!buf) {
3672 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003673 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003674 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003675 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003676
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003677 if (!b_data(buf)) {
3678 /* try to pre-align the buffer like the
3679 * rxbufs will be to optimize memory copies. We'll make
3680 * sure that the frame header lands at the end of the
3681 * HTX block to alias it upon recv. We cannot use the
3682 * head because rcv_buf() will realign the buffer if
3683 * it's empty. Thus we cheat and pretend we already
3684 * have a few bytes there.
3685 */
3686 max = buf_room_for_htx_data(buf) + 9;
3687 buf->head = sizeof(struct htx) - 9;
3688 }
3689 else
3690 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003691
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003692 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003693
Christopher Fauletde9d6052021-04-23 12:25:18 +02003694 if (max && !ret && h2_recv_allowed(h2c)) {
3695 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
3696 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003697 } else if (ret) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02003698 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003699 h2c->flags &= ~H2_CF_DEM_SHORT_READ;
3700 }
Olivier Houchard81a15af2018-10-19 17:26:49 +02003701
Christopher Fauletde9d6052021-04-23 12:25:18 +02003702 if (conn_xprt_read0_pending(h2c->conn)) {
3703 TRACE_DATA("received read0", H2_EV_H2C_RECV, h2c->conn);
3704 h2c->flags |= H2_CF_RCVD_SHUT;
3705 }
Christopher Fauletff7925d2022-10-11 19:12:40 +02003706 if (h2c->conn->flags & CO_FL_ERROR) {
3707 TRACE_DATA("connection error", H2_EV_H2C_RECV, h2c->conn);
3708 h2c->flags |= H2_CF_ERROR;
3709 }
Christopher Fauletde9d6052021-04-23 12:25:18 +02003710
Olivier Houcharda1411e62018-08-17 18:42:48 +02003711 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003712 h2_release_buf(h2c, &h2c->dbuf);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003713 goto end;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003714 }
3715
Willy Tarreau7838a792019-08-12 18:42:03 +02003716 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003717 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003718 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003719 }
3720
Christopher Fauletff7925d2022-10-11 19:12:40 +02003721 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02003722 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003723 return !!ret || (h2c->flags & (H2_CF_RCVD_SHUT|H2_CF_ERROR));
Willy Tarreau62f52692017-10-08 23:01:42 +02003724}
3725
Willy Tarreau479998a2018-11-18 06:30:59 +01003726/* Try to send data if possible.
3727 * The function returns 1 if data have been sent, otherwise zero.
3728 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003729static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003730{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003731 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003732 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003733 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003734
Willy Tarreau7838a792019-08-12 18:42:03 +02003735 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003736
Christopher Fauletff7925d2022-10-11 19:12:40 +02003737 if (h2c->flags & (H2_CF_ERROR|H2_CF_ERR_PENDING)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003738 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003739 if (h2c->flags & H2_CF_RCVD_SHUT)
3740 h2c->flags |= H2_CF_ERROR;
3741 b_reset(br_tail(h2c->mbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003742 return 1;
3743 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003744
Willy Tarreau911db9b2020-01-23 16:27:54 +01003745 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003746 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003747 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003748 }
3749
Willy Tarreaubc933932017-10-09 16:21:43 +02003750 /* This loop is quite simple : it tries to fill as much as it can from
3751 * pending streams into the existing buffer until it's reportedly full
3752 * or the end of send requests is reached. Then it tries to send this
3753 * buffer's contents out, marks it not full if at least one byte could
3754 * be sent, and tries again.
3755 *
3756 * The snd_buf() function normally takes a "flags" argument which may
3757 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3758 * data immediately comes and CO_SFL_STREAMER to indicate that the
3759 * connection is streaming lots of data (used to increase TLS record
3760 * size at the expense of latency). The former can be sent any time
3761 * there's a buffer full flag, as it indicates at least one stream
3762 * attempted to send and failed so there are pending data. An
3763 * alternative would be to set it as long as there's an active stream
3764 * but that would be problematic for ACKs until we have an absolute
3765 * guarantee that all waiters have at least one byte to send. The
3766 * latter should possibly not be set for now.
3767 */
3768
3769 done = 0;
3770 while (!done) {
3771 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003772 unsigned int released = 0;
3773 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003774
3775 /* fill as much as we can into the current buffer */
3776 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3777 done = h2_process_mux(h2c);
3778
Olivier Houchard2b094432019-01-29 18:28:36 +01003779 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003780 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003781
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003782 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
Willy Tarreaue6dc7a02021-10-21 17:30:06 +02003783 (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003784 break;
3785
3786 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3787 flags |= CO_SFL_MSG_MORE;
3788
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003789 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3790 if (b_data(buf)) {
3791 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003792 if (!ret) {
3793 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003794 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003795 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003796 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003797 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003798 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003799 if (b_data(buf)) {
3800 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003801 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003802 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003803 }
3804 b_free(buf);
3805 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003806 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003807
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003808 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01003809 offer_buffers(NULL, released);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003810
Willy Tarreaubc933932017-10-09 16:21:43 +02003811 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003812 if (sent)
3813 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003814 }
3815
Christopher Fauletff7925d2022-10-11 19:12:40 +02003816 if (conn->flags & CO_FL_ERROR) {
3817 h2c->flags |= H2_CF_ERR_PENDING;
3818 if (h2c->flags & H2_CF_RCVD_SHUT)
3819 h2c->flags |= H2_CF_ERROR;
Willy Tarreau51330962019-05-26 09:38:07 +02003820 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003821 }
Christopher Fauletff7925d2022-10-11 19:12:40 +02003822
Olivier Houchard6ff20392018-07-17 18:46:31 +02003823 /* We're not full anymore, so we can wake any task that are waiting
3824 * for us.
3825 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003826 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3827 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003828
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003829 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003830 if (!br_data(h2c->mbuf)) {
3831 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003832 goto end;
Willy Tarreau7838a792019-08-12 18:42:03 +02003833 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003834schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003835 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3836 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003837 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003838 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003839 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003840end:
3841 return sent || (h2c->flags & (H2_CF_ERR_PENDING|H2_CF_ERROR));
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003842}
3843
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003844/* this is the tasklet referenced in h2c->wait_event.tasklet */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003845struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state)
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003846{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003847 struct connection *conn;
3848 struct tasklet *tl = (struct tasklet *)t;
3849 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003850 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003851 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003852
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003853 if (state & TASK_F_USR1) {
3854 /* the tasklet was idling on an idle connection, it might have
3855 * been stolen, let's be careful!
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003856 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003857 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3858 if (t->context == NULL) {
3859 /* The connection has been taken over by another thread,
3860 * we're no longer responsible for it, so just free the
3861 * tasklet, and do nothing.
3862 */
3863 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3864 tasklet_free(tl);
Willy Tarreau74163142021-03-13 11:30:19 +01003865 t = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003866 goto leave;
3867 }
3868 conn = h2c->conn;
3869 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003870
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003871 conn_in_list = conn->flags & CO_FL_LIST_MASK;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003872
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003873 /* Remove the connection from the list, to be sure nobody attempts
3874 * to use it while we handle the I/O events
3875 */
3876 if (conn_in_list)
3877 conn_delete_from_tree(&conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003878
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003879 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3880 } else {
3881 /* we're certain the connection was not in an idle list */
3882 conn = h2c->conn;
3883 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3884 conn_in_list = 0;
3885 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003886
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003887 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003888 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003889 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003890 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003891 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003892 ret = h2_process(h2c);
3893
3894 /* If we were in an idle list, we want to add it back into it,
3895 * unless h2_process() returned -1, which mean it has destroyed
3896 * the connection (testing !ret is enough, if h2_process() wasn't
3897 * called then ret will be 0 anyway.
3898 */
Willy Tarreau74163142021-03-13 11:30:19 +01003899 if (ret < 0)
3900 t = NULL;
3901
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003902 if (!ret && conn_in_list) {
3903 struct server *srv = objt_server(conn->target);
3904
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003905 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003906 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau85223482022-09-29 20:32:43 +02003907 eb64_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003908 else
Willy Tarreau85223482022-09-29 20:32:43 +02003909 eb64_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003910 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003911 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003912
Willy Tarreau38468772020-06-28 00:31:13 +02003913leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02003914 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreau74163142021-03-13 11:30:19 +01003915 return t;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003916}
Willy Tarreaua2af5122017-10-09 11:56:46 +02003917
Willy Tarreau62f52692017-10-08 23:01:42 +02003918/* callback called on any event by the connection handler.
3919 * It applies changes and returns zero, or < 0 if it wants immediate
3920 * destruction of the connection (which normally doesn not happen in h2).
3921 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003922static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003923{
Olivier Houchard7505f942018-08-21 18:10:44 +02003924 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003925
Willy Tarreau7838a792019-08-12 18:42:03 +02003926 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3927
Willy Tarreauf0961222021-02-05 11:41:46 +01003928 if (!(h2c->flags & H2_CF_DEM_BLOCK_ANY) &&
3929 (b_data(&h2c->dbuf) || (h2c->flags & H2_CF_RCVD_SHUT))) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003930 h2_process_demux(h2c);
3931
Christopher Fauletff7925d2022-10-11 19:12:40 +02003932 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_ERROR))
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003933 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003934
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003935 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003936 h2c->flags &= ~H2_CF_DEM_DFULL;
3937 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003938 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003939
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003940 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 +02003941 int send_goaway = 1;
3942 /* If a close-spread-time option is set, we want to avoid
3943 * closing all the active HTTP2 connections at once so we add a
3944 * random factor that will spread the closing.
3945 */
3946 if (tick_isset(global.close_spread_end)) {
3947 int remaining_window = tick_remain(now_ms, global.close_spread_end);
3948 if (remaining_window) {
3949 /* This should increase the closing rate the
3950 * further along the window we are. */
3951 send_goaway = (remaining_window <= statistical_prng_range(global.close_spread_time));
3952 }
3953 }
Remi Tricot-Le Breton4d7fdc62022-04-26 15:17:18 +02003954 else if (global.tune.options & GTUNE_DISABLE_ACTIVE_CLOSE)
3955 send_goaway = 0; /* let the client close his connection himself */
Willy Tarreau8ec14062017-12-30 18:08:13 +01003956 /* frontend is stopping, reload likely in progress, let's try
3957 * to announce a graceful shutdown if not yet done. We don't
3958 * care if it fails, it will be tried again later.
3959 */
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02003960 if (send_goaway) {
3961 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
3962 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3963 if (h2c->last_sid < 0)
3964 h2c->last_sid = (1U << 31) - 1;
3965 h2c_send_goaway_error(h2c, NULL);
3966 }
Willy Tarreau8ec14062017-12-30 18:08:13 +01003967 }
3968 }
3969
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003970 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003971 * If we received early data, and the handshake is done, wake
3972 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003973 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003974 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01003975 (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 +01003976 struct eb32_node *node;
3977 struct h2s *h2s;
3978
3979 h2c->flags |= H2_CF_WAIT_FOR_HS;
3980 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
3981
3982 while (node) {
3983 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003984 if (se_fl_test(h2s->sd, SE_FL_WAIT_FOR_HS))
Willy Tarreau7e094452018-12-19 18:08:52 +01003985 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003986 node = eb32_next(node);
3987 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003988 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003989
Christopher Fauletff7925d2022-10-11 19:12:40 +02003990 if ((h2c->flags & H2_CF_ERROR) || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01003991 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
3992 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
3993 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02003994 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003995
3996 if (eb_is_empty(&h2c->streams_by_id)) {
3997 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003998 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003999 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004000 return -1;
4001 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004002
4003 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004004 if (conn->flags & CO_FL_LIST_MASK) {
4005 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004006 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004007 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4008 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004009 }
4010 else if (h2c->st0 == H2_CS_ERROR) {
4011 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004012 if (conn->flags & CO_FL_LIST_MASK) {
4013 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004014 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004015 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4016 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004017 }
4018
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004019 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01004020 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004021
Christopher Fauletff7925d2022-10-11 19:12:40 +02004022 if (h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
Olivier Houchard53216e72018-10-10 15:46:36 +02004023 (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 Fauletff7925d2022-10-11 19:12:40 +02004281 if (!(h2c->flags & (H2_CF_ERR_PENDING|H2_CF_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) {
Christopher Fauletff7925d2022-10-11 19:12:40 +02004307 if (!(h2c->flags & (H2_CF_RCVD_SHUT|H2_CF_ERR_PENDING|H2_CF_ERROR))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004308 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004309 /* Add the connection in the session server list, if not already done */
4310 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4311 h2c->conn->owner = NULL;
4312 if (eb_is_empty(&h2c->streams_by_id)) {
4313 h2c->conn->mux->destroy(h2c);
4314 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4315 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004316 }
4317 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004318 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004319 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4320 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4321 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004322 return;
4323 }
4324 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004325 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004326 else {
4327 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004328 /* If the connection is owned by the session, first remove it
4329 * from its list
4330 */
4331 if (h2c->conn->owner) {
4332 session_unown_conn(h2c->conn->owner, h2c->conn);
4333 h2c->conn->owner = NULL;
4334 }
4335
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004336 /* mark that the tasklet may lose its context to another thread and
4337 * that the handler needs to check it under the idle conns lock.
4338 */
4339 HA_ATOMIC_OR(&h2c->wait_event.tasklet->state, TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004340 xprt_set_idle(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
4341
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004342 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004343 /* The server doesn't want it, let's kill the connection right away */
4344 h2c->conn->mux->destroy(h2c);
4345 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4346 return;
4347 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004348 /* At this point, the connection has been added to the
4349 * server idle list, so another thread may already have
4350 * hijacked it, so we can't do anything with it.
4351 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004352 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4353 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004354
Olivier Houchard8a786902018-12-15 16:05:40 +01004355 }
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004356 else if (!h2c->conn->hash_node->node.node.leaf_p &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004357 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02004358 !LIST_INLIST(&h2c->conn->session_list)) {
Willy Tarreau85223482022-09-29 20:32:43 +02004359 eb64_insert(&__objt_server(h2c->conn->target)->per_thr[tid].avail_conns,
4360 &h2c->conn->hash_node->node);
Christopher Fauletc5579d12020-07-01 15:45:41 +02004361 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004362 }
4363 }
4364 }
4365
Willy Tarreaue323f342018-03-28 13:51:45 +02004366 /* We don't want to close right now unless we're removing the
4367 * last stream, and either the connection is in error, or it
4368 * reached the ID already specified in a GOAWAY frame received
4369 * or sent (as seen by last_sid >= 0).
4370 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004371 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004372 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004373 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004374 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004375 }
4376 else if (h2c->task) {
Willy Tarreau15a47332022-03-18 15:57:34 +01004377 h2c_update_timeout(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004378 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004379 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004380 else
4381 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004382}
4383
Willy Tarreau88bdba32019-05-13 18:17:53 +02004384/* Performs a synchronous or asynchronous shutr(). */
4385static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004386{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004387 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004388
Willy Tarreauf983d002019-05-14 10:40:21 +02004389 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004390 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004391
Willy Tarreau7838a792019-08-12 18:42:03 +02004392 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4393
Willy Tarreau18059042019-01-31 19:12:48 +01004394 /* a connstream may require us to immediately kill the whole connection
4395 * for example because of a "tcp-request content reject" rule that is
4396 * normally used to limit abuse. In this case we schedule a goaway to
4397 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004398 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004399 if (se_fl_test(h2s->sd, SE_FL_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004400 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004401 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004402 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4403 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4404 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004405 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4406 /* Nothing was never sent for this stream, so reset with
4407 * REFUSED_STREAM error to let the client retry the
4408 * request.
4409 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004410 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004411 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4412 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004413 else {
4414 /* a final response was already provided, we don't want this
4415 * stream anymore. This may happen when the server responds
4416 * before the end of an upload and closes quickly (redirect,
4417 * deny, ...)
4418 */
4419 h2s_error(h2s, H2_ERR_CANCEL);
4420 }
Willy Tarreau18059042019-01-31 19:12:48 +01004421
Willy Tarreau90c32322017-11-24 08:00:30 +01004422 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004423 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004424 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004425
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004426 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004427 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004428 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004429 done:
4430 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004431 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004432 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004433add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004434 /* Let the handler know we want to shutr, and add ourselves to the
4435 * most relevant list if not yet done. h2_deferred_shut() will be
4436 * automatically called via the shut_tl tasklet when there's room
4437 * again.
4438 */
4439 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau2b718102021-04-21 07:32:39 +02004440 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004441 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004442 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004443 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004444 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004445 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004446 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004447 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004448}
4449
Willy Tarreau88bdba32019-05-13 18:17:53 +02004450/* Performs a synchronous or asynchronous shutw(). */
4451static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004452{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004453 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004454
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004455 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004456 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004457
Willy Tarreau7838a792019-08-12 18:42:03 +02004458 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4459
Willy Tarreau473e0e52022-08-18 16:12:15 +02004460 if (h2s->st != H2_SS_ERROR &&
4461 (h2s->flags & (H2_SF_HEADERS_SENT | H2_SF_MORE_HTX_DATA)) == H2_SF_HEADERS_SENT) {
4462 /* we can cleanly close using an empty data frame only after headers
4463 * and if no more data is expected to be sent.
4464 */
Willy Tarreau58e32082017-11-07 14:41:09 +01004465 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4466 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004467 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004468
4469 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004470 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004471 else
4472 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004473 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004474 /* a connstream may require us to immediately kill the whole connection
4475 * for example because of a "tcp-request content reject" rule that is
4476 * normally used to limit abuse. In this case we schedule a goaway to
4477 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004478 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004479 if (se_fl_test(h2s->sd, SE_FL_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004480 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004481 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004482 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4483 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4484 }
Willy Tarreau473e0e52022-08-18 16:12:15 +02004485 else if (h2s->flags & H2_SF_MORE_HTX_DATA) {
4486 /* some unsent data were pending (e.g. abort during an upload),
4487 * let's send a CANCEL.
4488 */
4489 TRACE_STATE("shutw before end of data, sending CANCEL", H2_EV_STRM_SHUT, h2c->conn, h2s);
4490 h2s_error(h2s, H2_ERR_CANCEL);
4491 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004492 else {
4493 /* Nothing was never sent for this stream, so reset with
4494 * REFUSED_STREAM error to let the client retry the
4495 * request.
4496 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004497 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004498 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4499 }
Willy Tarreau18059042019-01-31 19:12:48 +01004500
Willy Tarreau90c32322017-11-24 08:00:30 +01004501 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004502 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004503 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004504
Willy Tarreau00dd0782018-03-01 16:31:34 +01004505 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004506 }
4507
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004508 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004509 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004510
4511 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4512
Willy Tarreau88bdba32019-05-13 18:17:53 +02004513 done:
4514 h2s->flags &= ~H2_SF_WANT_SHUTW;
4515 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004516
4517 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004518 /* Let the handler know we want to shutw, and add ourselves to the
4519 * most relevant list if not yet done. h2_deferred_shut() will be
4520 * automatically called via the shut_tl tasklet when there's room
4521 * again.
4522 */
4523 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau2b718102021-04-21 07:32:39 +02004524 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004525 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004526 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004527 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004528 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004529 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004530 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004531 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004532}
4533
Willy Tarreau5723f292020-01-10 15:16:57 +01004534/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004535 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4536 * and prevented the last frame from being emitted.
4537 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004538struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004539{
4540 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004541 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004542
Willy Tarreau7838a792019-08-12 18:42:03 +02004543 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4544
Willy Tarreau5723f292020-01-10 15:16:57 +01004545 if (h2s->flags & H2_SF_NOTIFIED) {
4546 /* some data processing remains to be done first */
4547 goto end;
4548 }
4549
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004550 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004551 h2_do_shutw(h2s);
4552
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004553 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004554 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004555
Willy Tarreau88bdba32019-05-13 18:17:53 +02004556 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004557 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004558 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004559
Willy Tarreau7be4ee02022-05-18 07:31:41 +02004560 if (!h2s_sc(h2s)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004561 h2s_destroy(h2s);
Willy Tarreau74163142021-03-13 11:30:19 +01004562 if (h2c_is_dead(h2c)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004563 h2_release(h2c);
Willy Tarreau74163142021-03-13 11:30:19 +01004564 t = NULL;
4565 }
Willy Tarreau88bdba32019-05-13 18:17:53 +02004566 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004567 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004568 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004569 TRACE_LEAVE(H2_EV_STRM_SHUT);
Willy Tarreau74163142021-03-13 11:30:19 +01004570 return t;
Willy Tarreau62f52692017-10-08 23:01:42 +02004571}
4572
Willy Tarreau4596fe22022-05-17 19:07:51 +02004573/* shutr() called by the stream connector (mux_ops.shutr) */
Willy Tarreau36c22322022-05-27 10:41:24 +02004574static void h2_shutr(struct stconn *sc, enum co_shr_mode mode)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004575{
Willy Tarreau36c22322022-05-27 10:41:24 +02004576 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004577
Willy Tarreau7838a792019-08-12 18:42:03 +02004578 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004579 if (mode)
4580 h2_do_shutr(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004581 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004582}
4583
Willy Tarreau4596fe22022-05-17 19:07:51 +02004584/* shutw() called by the stream connector (mux_ops.shutw) */
Willy Tarreau36c22322022-05-27 10:41:24 +02004585static void h2_shutw(struct stconn *sc, enum co_shw_mode mode)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004586{
Willy Tarreau36c22322022-05-27 10:41:24 +02004587 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004588
Willy Tarreau7838a792019-08-12 18:42:03 +02004589 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004590 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004591 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004592}
4593
Christopher Faulet9b79a102019-07-15 11:22:56 +02004594/* Decode the payload of a HEADERS frame and produce the HTX request or response
4595 * depending on the connection's side. Returns a positive value on success, a
4596 * negative value on failure, or 0 if it couldn't proceed. May report connection
4597 * errors in h2c->errcode if the frame is non-decodable and the connection
4598 * unrecoverable. In absence of connection error when a failure is reported, the
4599 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004600 *
4601 * The function may fold CONTINUATION frames into the initial HEADERS frame
4602 * by removing padding and next frame header, then moving the CONTINUATION
4603 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4604 * leaving a hole between the main frame and the beginning of the next one.
4605 * The possibly remaining incomplete or next frame at the end may be moved
4606 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4607 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4608 *
4609 * A buffer at the beginning of processing may look like this :
4610 *
4611 * ,---.---------.-----.--------------.--------------.------.---.
4612 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4613 * `---^---------^-----^--------------^--------------^------^---'
4614 * | | <-----> | |
4615 * area | dpl | wrap
4616 * |<--------------> |
4617 * | dfl |
4618 * |<-------------------------------------------------->|
4619 * head data
4620 *
4621 * Padding is automatically overwritten when folding, participating to the
4622 * hole size after dfl :
4623 *
4624 * ,---.------------------------.-----.--------------.------.---.
4625 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4626 * `---^------------------------^-----^--------------^------^---'
4627 * | | <-----> | |
4628 * area | hole | wrap
4629 * |<-----------------------> |
4630 * | dfl |
4631 * |<-------------------------------------------------->|
4632 * head data
4633 *
4634 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4635 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4636 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004637 *
4638 * The <flags> field must point to either the stream's flags or to a copy of it
4639 * so that the function can update the following flags :
4640 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004641 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004642 *
4643 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4644 * decoding, in order to detect if we're dealing with a headers or a trailers
4645 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004646 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004647static 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 +02004648{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004649 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004650 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004651 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004652 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004653 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004654 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004655 int flen; // header frame len
4656 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004657 int ret = 0;
4658 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004659 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004660
Willy Tarreau7838a792019-08-12 18:42:03 +02004661 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4662
Willy Tarreauea18f862018-12-22 20:19:26 +01004663next_frame:
4664 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4665 goto leave; // incomplete input frame
4666
4667 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4668 * this case, we'll try to paste it immediately after the initial
4669 * HEADERS frame payload and kill any possible padding. The initial
4670 * frame's length will be increased to represent the concatenation
4671 * of the two frames. The next frame is read from position <tlen>
4672 * and written at position <flen> (minus padding if some is present).
4673 */
4674 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4675 struct h2_fh hdr;
4676 int clen; // CONTINUATION frame's payload length
4677
Willy Tarreau7838a792019-08-12 18:42:03 +02004678 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 +01004679 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4680 /* no more data, the buffer may be full, either due to
4681 * too large a frame or because of too large a hole that
4682 * we're going to compact at the end.
4683 */
4684 goto leave;
4685 }
4686
4687 if (hdr.ft != H2_FT_CONTINUATION) {
4688 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004689 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 +01004690 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004691 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004692 goto fail;
4693 }
4694
4695 if (hdr.sid != h2c->dsi) {
4696 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004697 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 +01004698 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004699 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004700 goto fail;
4701 }
4702
4703 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4704 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004705 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 +01004706 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4707 goto fail;
4708 }
4709
4710 /* detect when we must stop aggragating frames */
4711 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4712
4713 /* Take as much as we can of the CONTINUATION frame's payload */
4714 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4715 if (clen > hdr.len)
4716 clen = hdr.len;
4717
4718 /* Move the frame's payload over the padding, hole and frame
4719 * header. At least one of hole or dpl is null (see diagrams
4720 * above). The hole moves after the new aggragated frame.
4721 */
4722 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 +02004723 h2c->dfl += hdr.len - h2c->dpl;
Willy Tarreauea18f862018-12-22 20:19:26 +01004724 hole += h2c->dpl + 9;
4725 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004726 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 +01004727 goto next_frame;
4728 }
4729
4730 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004731
Willy Tarreau13278b42017-10-13 19:23:14 +02004732 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004733 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004734 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004735 copy = alloc_trash_chunk();
4736 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004737 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 +02004738 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4739 goto fail;
4740 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004741 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4742 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4743 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004744 }
4745
Willy Tarreau13278b42017-10-13 19:23:14 +02004746 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4747 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004748 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004749 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004750 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 +01004751 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004752 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004753 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004754 }
4755
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004756 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004757 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 +01004758 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4759 goto fail;
4760 }
4761
Willy Tarreau13278b42017-10-13 19:23:14 +02004762 hdrs += 5; // stream dep = 4, weight = 1
4763 flen -= 5;
4764 }
4765
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004766 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004767 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 +01004768 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004769 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004770 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004771
Willy Tarreau937f7602018-02-26 15:22:17 +01004772 /* we can't retry a failed decompression operation so we must be very
4773 * careful not to take any risks. In practice the output buffer is
4774 * always empty except maybe for trailers, in which case we simply have
4775 * to wait for the upper layer to finish consuming what is available.
4776 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004777 htx = htx_from_buf(rxbuf);
4778 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004779 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 +02004780 h2c->flags |= H2_CF_DEM_SFULL;
4781 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004782 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004783
Willy Tarreau25919232019-01-03 14:48:18 +01004784 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004785 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4786 sizeof(list)/sizeof(list[0]), tmp);
4787 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004788 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 +01004789 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4790 goto fail;
4791 }
4792
Willy Tarreau25919232019-01-03 14:48:18 +01004793 /* The PACK decompressor was updated, let's update the input buffer and
4794 * the parser's state to commit these changes and allow us to later
4795 * fail solely on the stream if needed.
4796 */
4797 b_del(&h2c->dbuf, h2c->dfl + hole);
4798 h2c->dfl = hole = 0;
4799 h2c->st0 = H2_CS_FRAME_H;
4800
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004801 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004802 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Christopher Fauletd0db4232021-01-22 11:46:30 +01004803 msgf |= (*flags & H2_SF_BODY_TUNNEL) ? H2_MSGF_BODY_TUNNEL: 0;
Amaury Denoyelle74162742020-12-11 17:53:05 +01004804 /* If an Extended CONNECT has been sent on this stream, set message flag
Ilya Shipitsinacf84592021-02-06 22:29:08 +05004805 * to convert 200 response to 101 htx response */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004806 msgf |= (*flags & H2_SF_EXT_CONNECT_SENT) ? H2_MSGF_EXT_CONNECT: 0;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004807
Willy Tarreau88d138e2019-01-02 19:38:14 +01004808 if (*flags & H2_SF_HEADERS_RCVD)
4809 goto trailers;
4810
4811 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004812 if (h2c->flags & H2_CF_IS_BACK)
Amaury Denoyelle74162742020-12-11 17:53:05 +01004813 outlen = h2_make_htx_response(list, htx, &msgf, body_len, upgrade_protocol);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004814 else
4815 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004816
Christopher Faulet3d875582021-04-26 17:46:13 +02004817 if (outlen < 0 || htx_free_space(htx) < global.tune.maxrewrite) {
Willy Tarreau25919232019-01-03 14:48:18 +01004818 /* too large headers? this is a stream error only */
Christopher Faulet3d875582021-04-26 17:46:13 +02004819 TRACE_STATE("message headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
4820 htx->flags |= HTX_FL_PARSING_ERROR;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004821 goto fail;
4822 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004823
Willy Tarreau174b06a2018-04-25 18:13:58 +02004824 if (msgf & H2_MSGF_BODY) {
4825 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004826 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004827 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004828 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004829 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004830 }
Christopher Faulet7d247f02020-12-02 14:26:36 +01004831 if (msgf & H2_MSGF_BODYLESS_RSP)
4832 *flags |= H2_SF_BODYLESS_RESP;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004833
Christopher Fauletd0db4232021-01-22 11:46:30 +01004834 if (msgf & H2_MSGF_BODY_TUNNEL)
4835 *flags |= H2_SF_BODY_TUNNEL;
4836 else {
4837 /* Abort the tunnel attempt, if any */
4838 if (*flags & H2_SF_BODY_TUNNEL)
4839 *flags |= H2_SF_TUNNEL_ABRT;
4840 *flags &= ~H2_SF_BODY_TUNNEL;
4841 }
4842
Willy Tarreau88d138e2019-01-02 19:38:14 +01004843 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004844 /* indicate that a HEADERS frame was received for this stream, except
4845 * for 1xx responses. For 1xx responses, another HEADERS frame is
4846 * expected.
4847 */
4848 if (!(msgf & H2_MSGF_RSP_1XX))
4849 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004850
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004851 if (h2c->dff & H2_F_HEADERS_END_STREAM) {
4852 /* no more data are expected for this message */
4853 htx->flags |= HTX_FL_EOM;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004854 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004855
Amaury Denoyelleefe22762020-12-11 17:53:08 +01004856 if (msgf & H2_MSGF_EXT_CONNECT)
4857 *flags |= H2_SF_EXT_CONNECT_RCVD;
4858
Willy Tarreau86277d42019-01-02 15:36:11 +01004859 /* success */
4860 ret = 1;
4861
Willy Tarreau68dd9852017-07-03 14:44:26 +02004862 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004863 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004864 * move the remaining data over it.
4865 */
4866 if (hole) {
4867 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4868 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4869 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4870 b_sub(&h2c->dbuf, hole);
4871 }
4872
Christopher Faulet07f88d72021-04-21 10:39:53 +02004873 if (b_full(&h2c->dbuf) && h2c->dfl) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004874 /* too large frames */
4875 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004876 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004877 }
4878
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004879 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004880 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004881 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004882 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004883 return ret;
4884
Willy Tarreau68dd9852017-07-03 14:44:26 +02004885 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004886 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004887 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004888
4889 trailers:
4890 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004891 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4892 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004893 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 +01004894 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004895 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau88d138e2019-01-02 19:38:14 +01004896 goto fail;
4897 }
4898
Christopher Faulet9b79a102019-07-15 11:22:56 +02004899 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02004900 if (h2_make_htx_trailers(list, htx) <= 0) {
4901 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 +02004902 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004903 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004904 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02004905}
4906
Christopher Faulet9b79a102019-07-15 11:22:56 +02004907/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004908 * parser state is automatically updated. Returns > 0 if it could completely
4909 * send the current frame, 0 if it couldn't complete, in which case
Willy Tarreaub605c422022-05-17 17:04:55 +02004910 * SE_FL_RCV_MORE must be checked to know if some data remain pending (an empty
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004911 * DATA frame can return 0 as a valid result). Stream errors are reported in
4912 * h2s->errcode and connection errors in h2c->errcode. The caller must already
4913 * have checked the frame header and ensured that the frame was complete or the
4914 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02004915 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01004916static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02004917{
4918 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004919 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004920 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004921 struct htx *htx = NULL;
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02004922 struct buffer *scbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004923 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02004924
Willy Tarreau7838a792019-08-12 18:42:03 +02004925 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
4926
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004927 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02004928
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02004929 scbuf = h2_get_buf(h2c, &h2s->rxbuf);
4930 if (!scbuf) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004931 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02004932 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 +01004933 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004934 }
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02004935 htx = htx_from_buf(scbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004936
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004937try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004938 flen = h2c->dfl - h2c->dpl;
4939 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01004940 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004941
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004942 if (flen > b_data(&h2c->dbuf)) {
4943 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004944 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01004945 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004946 }
4947
Christopher Faulet9b79a102019-07-15 11:22:56 +02004948 block = htx_free_data_space(htx);
4949 if (!block) {
4950 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004951 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 +02004952 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004953 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004954 if (flen > block)
4955 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004956
Christopher Faulet9b79a102019-07-15 11:22:56 +02004957 /* here, flen is the max we can copy into the output buffer */
4958 block = b_contig_data(&h2c->dbuf, 0);
4959 if (flen > block)
4960 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004961
Christopher Faulet9b79a102019-07-15 11:22:56 +02004962 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02004963 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 +02004964
Christopher Faulet9b79a102019-07-15 11:22:56 +02004965 b_del(&h2c->dbuf, sent);
4966 h2c->dfl -= sent;
4967 h2c->rcvd_c += sent;
4968 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02004969
Christopher Faulet9b79a102019-07-15 11:22:56 +02004970 if (h2s->flags & H2_SF_DATA_CLEN) {
4971 h2s->body_len -= sent;
4972 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004973 }
4974
Christopher Faulet9b79a102019-07-15 11:22:56 +02004975 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004976 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004977 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 +01004978 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004979 }
4980
Christopher Faulet9b79a102019-07-15 11:22:56 +02004981 goto try_again;
4982
Willy Tarreau4a28da12018-01-04 14:41:00 +01004983 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004984 /* here we're done with the frame, all the payload (except padding) was
4985 * transferred.
4986 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02004987
Christopher Faulet5be651d2021-01-22 15:28:03 +01004988 if (!(h2s->flags & H2_SF_BODY_TUNNEL) && (h2c->dff & H2_F_DATA_END_STREAM)) {
4989 /* no more data are expected for this message. This add the EOM
4990 * flag but only on the response path or if no tunnel attempt
4991 * was aborted. Otherwise (request path + tunnel abrted), the
4992 * EOM was already reported.
4993 */
Christopher Faulet33724322021-02-10 09:04:59 +01004994 if ((h2c->flags & H2_CF_IS_BACK) || !(h2s->flags & H2_SF_TUNNEL_ABRT)) {
4995 /* If we receive an empty DATA frame with ES flag while the HTX
4996 * message is empty, we must be sure to push a block to be sure
4997 * the HTX EOM flag will be handled on the other side. It is a
4998 * workaround because for now it is not possible to push empty
4999 * HTX DATA block. And without this block, there is no way to
5000 * "commit" the end of the message.
5001 */
5002 if (htx_is_empty(htx)) {
5003 if (!htx_add_endof(htx, HTX_BLK_EOT))
5004 goto fail;
5005 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005006 htx->flags |= HTX_FL_EOM;
Christopher Faulet33724322021-02-10 09:04:59 +01005007 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02005008 }
5009
Willy Tarreaud1023bb2018-03-22 16:53:12 +01005010 h2c->rcvd_c += h2c->dpl;
5011 h2c->rcvd_s += h2c->dpl;
5012 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005013 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005014 htx_to_buf(htx, scbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005015 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005016 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01005017 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005018 if (htx)
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005019 htx_to_buf(htx, scbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005020 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01005021 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005022}
5023
Willy Tarreau115e83b2018-12-01 19:17:53 +01005024/* Try to send a HEADERS frame matching HTX response present in HTX message
5025 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5026 * must check the stream's status to detect any error which might have happened
5027 * subsequently to a successful send. The htx blocks are automatically removed
5028 * from the message. The htx message is assumed to be valid since produced from
5029 * the internal code, hence it contains a start line, an optional series of
5030 * header blocks and an end of header, otherwise an invalid frame could be
5031 * emitted and the resulting htx message could be left in an inconsistent state.
5032 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005033static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005034{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005035 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01005036 struct h2c *h2c = h2s->h2c;
5037 struct htx_blk *blk;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005038 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005039 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005040 struct htx_sl *sl;
5041 enum htx_blk_type type;
5042 int es_now = 0;
5043 int ret = 0;
5044 int hdr;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005045
Willy Tarreau7838a792019-08-12 18:42:03 +02005046 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5047
Willy Tarreau115e83b2018-12-01 19:17:53 +01005048 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005049 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005050 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005051 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005052 return 0;
5053 }
5054
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005055 /* get the start line (we do have one) and the rest of the headers,
5056 * that we dump starting at header 0 */
5057 sl = NULL;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005058 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005059 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005060 type = htx_get_blk_type(blk);
5061
5062 if (type == HTX_BLK_UNUSED)
5063 continue;
5064
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005065 if (type == HTX_BLK_EOH)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005066 break;
5067
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005068 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005069 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005070 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5071 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5072 goto fail;
5073 }
5074
5075 list[hdr].n = htx_get_blk_name(htx, blk);
5076 list[hdr].v = htx_get_blk_value(htx, blk);
5077 hdr++;
5078 }
5079 else if (type == HTX_BLK_RES_SL) {
Christopher Faulet56498132021-01-29 11:39:43 +01005080 BUG_ON(sl); /* Only one start-line expected */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005081 sl = htx_get_blk_ptr(htx, blk);
5082 h2s->status = sl->info.res.status;
Christopher Faulet7d247f02020-12-02 14:26:36 +01005083 if (h2s->status == 204 || h2s->status == 304)
5084 h2s->flags |= H2_SF_BODYLESS_RESP;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005085 if (h2s->status < 100 || h2s->status > 999) {
5086 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5087 goto fail;
5088 }
5089 else if (h2s->status == 101) {
Amaury Denoyelleefe22762020-12-11 17:53:08 +01005090 if (unlikely(h2s->flags & H2_SF_EXT_CONNECT_RCVD)) {
5091 /* If an Extended CONNECT has been received, we need to convert 101 to 200 */
5092 h2s->status = 200;
5093 h2s->flags &= ~H2_SF_EXT_CONNECT_RCVD;
5094 }
5095 else {
5096 /* Otherwise, 101 responses are not supported in H2, so return a error (RFC7540#8.1.1) */
5097 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5098 goto fail;
5099 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005100 }
5101 else if ((h2s->flags & H2_SF_BODY_TUNNEL) && h2s->status >= 300) {
5102 /* Abort the tunnel attempt */
5103 h2s->flags &= ~H2_SF_BODY_TUNNEL;
5104 h2s->flags |= H2_SF_TUNNEL_ABRT;
5105 }
5106 }
5107 else {
5108 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 +01005109 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005110 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005111 }
5112
Christopher Faulet56498132021-01-29 11:39:43 +01005113 /* The start-line me be defined */
5114 BUG_ON(!sl);
5115
Willy Tarreau115e83b2018-12-01 19:17:53 +01005116 /* marker for end of headers */
5117 list[hdr].n = ist("");
5118
Willy Tarreau9c218e72019-05-26 10:08:28 +02005119 mbuf = br_tail(h2c->mbuf);
5120 retry:
5121 if (!h2_get_buf(h2c, mbuf)) {
5122 h2c->flags |= H2_CF_MUX_MALLOC;
5123 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005124 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 +02005125 return 0;
5126 }
5127
Willy Tarreau115e83b2018-12-01 19:17:53 +01005128 chunk_reset(&outbuf);
5129
5130 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005131 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5132 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005133 break;
5134 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005135 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01005136 }
5137
5138 if (outbuf.size < 9)
5139 goto full;
5140
5141 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5142 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5143 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5144 outbuf.data = 9;
5145
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005146 if ((h2c->flags & (H2_CF_SHTS_UPDATED|H2_CF_DTSU_EMITTED)) == H2_CF_SHTS_UPDATED) {
5147 /* SETTINGS_HEADER_TABLE_SIZE changed, we must send an HPACK
5148 * dynamic table size update so that some clients are not
5149 * confused. In practice we only need to send the DTSU when the
5150 * advertised size is lower than the current one, and since we
5151 * don't use it and don't care about the default 4096 bytes,
5152 * we only ack it with a zero size thus we at most have to deal
5153 * with this once. See RFC7541#4.2 and #6.3 for the spec, and
5154 * below for the whole context and interoperability risks:
5155 * https://lists.w3.org/Archives/Public/ietf-http-wg/2021OctDec/0235.html
5156 */
5157 if (b_room(&outbuf) < 1)
5158 goto full;
5159 outbuf.area[outbuf.data++] = 0x20; // HPACK DTSU 0 bytes
5160
5161 /* let's not update the flags now but only once the buffer is
5162 * really committed.
5163 */
5164 }
5165
Willy Tarreau115e83b2018-12-01 19:17:53 +01005166 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01005167 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005168 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005169 goto realign_again;
5170 goto full;
5171 }
5172
5173 /* encode all headers, stop at empty name */
5174 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5175 /* these ones do not exist in H2 and must be dropped. */
5176 if (isteq(list[hdr].n, ist("connection")) ||
5177 isteq(list[hdr].n, ist("proxy-connection")) ||
5178 isteq(list[hdr].n, ist("keep-alive")) ||
5179 isteq(list[hdr].n, ist("upgrade")) ||
5180 isteq(list[hdr].n, ist("transfer-encoding")))
5181 continue;
5182
Christopher Faulet86d144c2019-08-14 16:32:25 +02005183 /* Skip all pseudo-headers */
5184 if (*(list[hdr].n.ptr) == ':')
5185 continue;
5186
Willy Tarreau115e83b2018-12-01 19:17:53 +01005187 if (isteq(list[hdr].n, ist("")))
5188 break; // end
5189
5190 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
5191 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005192 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005193 goto realign_again;
5194 goto full;
5195 }
5196 }
5197
Willy Tarreaucb985a42019-10-07 16:56:34 +02005198 /* update the frame's size */
5199 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5200
5201 if (outbuf.data > h2c->mfs + 9) {
5202 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5203 /* output full */
5204 if (b_space_wraps(mbuf))
5205 goto realign_again;
5206 goto full;
5207 }
5208 }
5209
Willy Tarreau3a537072021-06-17 08:40:04 +02005210 TRACE_USER("sent H2 response ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5211
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005212 /* remove all header blocks including the EOH and compute the
5213 * corresponding size.
Willy Tarreau115e83b2018-12-01 19:17:53 +01005214 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005215 ret = 0;
5216 blk = htx_get_head_blk(htx);
5217 while (blk) {
5218 type = htx_get_blk_type(blk);
5219 ret += htx_get_blksz(blk);
5220 blk = htx_remove_blk(htx, blk);
5221 /* The removed block is the EOH */
5222 if (type == HTX_BLK_EOH)
5223 break;
Christopher Faulet5be651d2021-01-22 15:28:03 +01005224 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005225
Willy Tarreau95acc8b2022-05-27 16:14:10 +02005226 if (!h2s_sc(h2s) || se_fl_test(h2s->sd, SE_FL_SHW)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005227 /* Response already closed: add END_STREAM */
5228 es_now = 1;
5229 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005230 else if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && h2s->status >= 200) {
5231 /* EOM+empty: we may need to add END_STREAM except for 1xx
Christopher Faulet991febd2020-12-02 15:17:31 +01005232 * responses and tunneled response.
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005233 */
Christopher Faulet991febd2020-12-02 15:17:31 +01005234 if (!(h2s->flags & H2_SF_BODY_TUNNEL) || h2s->status >= 300)
5235 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005236 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005237
Willy Tarreau115e83b2018-12-01 19:17:53 +01005238 if (es_now)
5239 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5240
5241 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005242 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01005243
5244 /* indicates the HEADERS frame was sent, except for 1xx responses. For
5245 * 1xx responses, another HEADERS frame is expected.
5246 */
Christopher Faulet89899422020-12-07 18:24:43 +01005247 if (h2s->status >= 200)
Christopher Faulet0b465482019-02-19 15:14:23 +01005248 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005249
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005250 if (h2c->flags & H2_CF_SHTS_UPDATED) {
5251 /* was sent above */
5252 h2c->flags |= H2_CF_DTSU_EMITTED;
Willy Tarreauc7d85482022-02-16 14:28:14 +01005253 h2c->flags &= ~H2_CF_SHTS_UPDATED;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005254 }
5255
Willy Tarreau115e83b2018-12-01 19:17:53 +01005256 if (es_now) {
5257 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005258 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 +01005259 if (h2s->st == H2_SS_OPEN)
5260 h2s->st = H2_SS_HLOC;
5261 else
5262 h2s_close(h2s);
5263 }
5264
5265 /* OK we could properly deliver the response */
Willy Tarreau115e83b2018-12-01 19:17:53 +01005266 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005267 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005268 return ret;
5269 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005270 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5271 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005272 h2c->flags |= H2_CF_MUX_MFULL;
5273 h2s->flags |= H2_SF_BLK_MROOM;
5274 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005275 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 +01005276 goto end;
5277 fail:
5278 /* unparsable HTX messages, too large ones to be produced in the local
5279 * list etc go here (unrecoverable errors).
5280 */
5281 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5282 ret = 0;
5283 goto end;
5284}
5285
Willy Tarreau80739692018-10-05 11:35:57 +02005286/* Try to send a HEADERS frame matching HTX request present in HTX message
5287 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5288 * must check the stream's status to detect any error which might have happened
5289 * subsequently to a successful send. The htx blocks are automatically removed
5290 * from the message. The htx message is assumed to be valid since produced from
5291 * the internal code, hence it contains a start line, an optional series of
5292 * header blocks and an end of header, otherwise an invalid frame could be
5293 * emitted and the resulting htx message could be left in an inconsistent state.
5294 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005295static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005296{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005297 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005298 struct h2c *h2c = h2s->h2c;
5299 struct htx_blk *blk;
Willy Tarreau80739692018-10-05 11:35:57 +02005300 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005301 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005302 struct htx_sl *sl;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005303 struct ist meth, uri, auth, host = IST_NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005304 enum htx_blk_type type;
5305 int es_now = 0;
5306 int ret = 0;
5307 int hdr;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005308 int extended_connect = 0;
Willy Tarreau80739692018-10-05 11:35:57 +02005309
Willy Tarreau7838a792019-08-12 18:42:03 +02005310 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5311
Willy Tarreau80739692018-10-05 11:35:57 +02005312 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005313 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005314 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005315 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005316 return 0;
5317 }
5318
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005319 /* get the start line (we do have one) and the rest of the headers,
5320 * that we dump starting at header 0 */
5321 sl = NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005322 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005323 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005324 type = htx_get_blk_type(blk);
5325
5326 if (type == HTX_BLK_UNUSED)
5327 continue;
5328
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005329 if (type == HTX_BLK_EOH)
Willy Tarreau80739692018-10-05 11:35:57 +02005330 break;
5331
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005332 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005333 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005334 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5335 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5336 goto fail;
5337 }
Willy Tarreau80739692018-10-05 11:35:57 +02005338
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005339 list[hdr].n = htx_get_blk_name(htx, blk);
5340 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005341
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005342 /* Skip header if same name is used to add the server name */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005343 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name) &&
5344 isteq(list[hdr].n, h2c->proxy->server_id_hdr_name))
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005345 continue;
Christopher Faulet67d58092019-10-02 10:51:38 +02005346
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005347 /* Convert connection: upgrade to Extended connect from rfc 8441 */
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005348 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteqi(list[hdr].n, ist("connection"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005349 /* rfc 7230 #6.1 Connection = list of tokens */
5350 struct ist connection_ist = list[hdr].v;
5351 do {
5352 if (isteqi(iststop(connection_ist, ','),
5353 ist("upgrade"))) {
Amaury Denoyelle0df04362021-10-18 09:43:29 +02005354 if (!(h2c->flags & H2_CF_RCVD_RFC8441)) {
5355 TRACE_STATE("reject upgrade because of no RFC8441 support", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5356 goto fail;
5357 }
5358
Amaury Denoyellee0c258c2021-10-18 10:05:16 +02005359 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 +01005360 h2s->flags |= (H2_SF_BODY_TUNNEL|H2_SF_EXT_CONNECT_SENT);
5361 sl->info.req.meth = HTTP_METH_CONNECT;
5362 meth = ist("CONNECT");
5363
5364 extended_connect = 1;
5365 break;
5366 }
5367
5368 connection_ist = istadv(istfind(connection_ist, ','), 1);
5369 } while (istlen(connection_ist));
5370 }
5371
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005372 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteq(list[hdr].n, ist("upgrade"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005373 /* rfc 7230 #6.7 Upgrade = list of protocols
5374 * rfc 8441 #4 Extended connect = :protocol is single-valued
5375 *
5376 * only first HTTP/1 protocol is preserved
5377 */
5378 const struct ist protocol = iststop(list[hdr].v, ',');
5379 /* upgrade_protocol field is 16 bytes long in h2s */
5380 istpad(h2s->upgrade_protocol, isttrim(protocol, 15));
5381 }
5382
5383 if (isteq(list[hdr].n, ist("host")))
5384 host = list[hdr].v;
5385
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005386 hdr++;
5387 }
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005388 else if (type == HTX_BLK_REQ_SL) {
5389 BUG_ON(sl); /* Only one start-line expected */
5390 sl = htx_get_blk_ptr(htx, blk);
5391 meth = htx_sl_req_meth(sl);
5392 uri = htx_sl_req_uri(sl);
5393 if (sl->info.req.meth == HTTP_METH_HEAD)
5394 h2s->flags |= H2_SF_BODYLESS_RESP;
5395 if (unlikely(uri.len == 0)) {
5396 TRACE_ERROR("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5397 goto fail;
5398 }
5399 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005400 else {
5401 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5402 goto fail;
5403 }
Willy Tarreau80739692018-10-05 11:35:57 +02005404 }
5405
Christopher Faulet56498132021-01-29 11:39:43 +01005406 /* The start-line me be defined */
5407 BUG_ON(!sl);
5408
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005409 /* Now add the server name to a header (if requested) */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005410 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name)) {
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005411 struct server *srv = objt_server(h2c->conn->target);
5412
5413 if (srv) {
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005414 list[hdr].n = h2c->proxy->server_id_hdr_name;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005415 list[hdr].v = ist(srv->id);
5416 hdr++;
5417 }
5418 }
5419
Willy Tarreau80739692018-10-05 11:35:57 +02005420 /* marker for end of headers */
5421 list[hdr].n = ist("");
5422
Willy Tarreau9c218e72019-05-26 10:08:28 +02005423 mbuf = br_tail(h2c->mbuf);
5424 retry:
5425 if (!h2_get_buf(h2c, mbuf)) {
5426 h2c->flags |= H2_CF_MUX_MALLOC;
5427 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005428 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 +02005429 return 0;
5430 }
5431
Willy Tarreau80739692018-10-05 11:35:57 +02005432 chunk_reset(&outbuf);
5433
5434 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005435 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5436 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005437 break;
5438 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005439 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005440 }
5441
5442 if (outbuf.size < 9)
5443 goto full;
5444
5445 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5446 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5447 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5448 outbuf.data = 9;
5449
5450 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005451 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005452 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005453 goto realign_again;
5454 goto full;
5455 }
5456
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005457 auth = ist(NULL);
5458
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005459 /* RFC7540 #8.3: the CONNECT method must have :
5460 * - :authority set to the URI part (host:port)
5461 * - :method set to CONNECT
5462 * - :scheme and :path omitted
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005463 *
5464 * Note that this is not applicable in case of the Extended CONNECT
5465 * protocol from rfc 8441.
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005466 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005467 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT) && !extended_connect) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005468 auth = uri;
5469
5470 if (!hpack_encode_header(&outbuf, ist(":authority"), auth)) {
5471 /* output full */
5472 if (b_space_wraps(mbuf))
5473 goto realign_again;
5474 goto full;
5475 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005476 h2s->flags |= H2_SF_BODY_TUNNEL;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005477 } else {
5478 /* other methods need a :scheme. If an authority is known from
5479 * the request line, it must be sent, otherwise only host is
5480 * sent. Host is never sent as the authority.
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005481 *
5482 * This code is also applicable for Extended CONNECT protocol
5483 * from rfc 8441.
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005484 */
5485 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005486
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005487 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5488 /* the URI seems to start with a scheme */
5489 int len = 1;
5490
5491 while (len < uri.len && uri.ptr[len] != ':')
5492 len++;
5493
5494 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5495 /* make the uri start at the authority now */
Tim Duesterhus9f75ed12021-03-02 18:57:26 +01005496 scheme = ist2(uri.ptr, len);
Tim Duesterhus154374c2021-03-02 18:57:27 +01005497 uri = istadv(uri, len + 3);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005498
5499 /* find the auth part of the URI */
Tim Duesterhus92c696e2021-02-28 16:11:36 +01005500 auth = ist2(uri.ptr, 0);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005501 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5502 auth.len++;
5503
Tim Duesterhus154374c2021-03-02 18:57:27 +01005504 uri = istadv(uri, auth.len);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005505 }
5506 }
5507
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005508 /* For Extended CONNECT, the :authority must be present.
5509 * Use host value for it.
5510 */
5511 if (unlikely(extended_connect) && isttest(host))
5512 auth = host;
5513
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005514 if (!scheme.len) {
5515 /* no explicit scheme, we're using an origin-form URI,
5516 * probably from an H1 request transcoded to H2 via an
5517 * external layer, then received as H2 without authority.
5518 * So we have to look up the scheme from the HTX flags.
5519 * In such a case only http and https are possible, and
5520 * https is the default (sent by browsers).
5521 */
5522 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5523 scheme = ist("http");
5524 else
5525 scheme = ist("https");
5526 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005527
5528 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005529 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005530 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005531 goto realign_again;
5532 goto full;
5533 }
Willy Tarreau80739692018-10-05 11:35:57 +02005534
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005535 if (auth.len && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005536 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005537 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005538 goto realign_again;
5539 goto full;
5540 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005541
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005542 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5543 * be sent as '/' or '*'.
5544 */
5545 if (unlikely(!uri.len)) {
5546 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5547 uri = ist("*");
5548 else
5549 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005550 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005551
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005552 if (!hpack_encode_path(&outbuf, uri)) {
5553 /* output full */
5554 if (b_space_wraps(mbuf))
5555 goto realign_again;
5556 goto full;
5557 }
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005558
5559 /* encode the pseudo-header protocol from rfc8441 if using
5560 * Extended CONNECT method.
5561 */
5562 if (unlikely(extended_connect)) {
5563 const struct ist protocol = ist(h2s->upgrade_protocol);
5564 if (isttest(protocol)) {
5565 if (!hpack_encode_header(&outbuf,
5566 ist(":protocol"),
5567 protocol)) {
5568 /* output full */
5569 if (b_space_wraps(mbuf))
5570 goto realign_again;
5571 goto full;
5572 }
5573 }
5574 }
Willy Tarreau80739692018-10-05 11:35:57 +02005575 }
5576
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005577 /* encode all headers, stop at empty name. Host is only sent if we
5578 * do not provide an authority.
5579 */
Willy Tarreau80739692018-10-05 11:35:57 +02005580 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005581 struct ist n = list[hdr].n;
5582 struct ist v = list[hdr].v;
5583
Willy Tarreau80739692018-10-05 11:35:57 +02005584 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005585 if (isteq(n, ist("connection")) ||
5586 (auth.len && isteq(n, ist("host"))) ||
5587 isteq(n, ist("proxy-connection")) ||
5588 isteq(n, ist("keep-alive")) ||
5589 isteq(n, ist("upgrade")) ||
5590 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005591 continue;
5592
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005593 if (isteq(n, ist("te"))) {
5594 /* "te" may only be sent with "trailers" if this value
5595 * is present, otherwise it must be deleted.
5596 */
5597 v = istist(v, ist("trailers"));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01005598 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005599 continue;
5600 v = ist("trailers");
5601 }
5602
Christopher Faulet86d144c2019-08-14 16:32:25 +02005603 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005604 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005605 continue;
5606
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005607 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005608 break; // end
5609
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005610 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005611 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005612 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005613 goto realign_again;
5614 goto full;
5615 }
5616 }
5617
Willy Tarreaucb985a42019-10-07 16:56:34 +02005618 /* update the frame's size */
5619 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5620
5621 if (outbuf.data > h2c->mfs + 9) {
5622 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5623 /* output full */
5624 if (b_space_wraps(mbuf))
5625 goto realign_again;
5626 goto full;
5627 }
5628 }
5629
Willy Tarreau3a537072021-06-17 08:40:04 +02005630 TRACE_USER("sent H2 request ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5631
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005632 /* remove all header blocks including the EOH and compute the
5633 * corresponding size.
Willy Tarreau80739692018-10-05 11:35:57 +02005634 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005635 ret = 0;
5636 blk = htx_get_head_blk(htx);
5637 while (blk) {
5638 type = htx_get_blk_type(blk);
5639 ret += htx_get_blksz(blk);
5640 blk = htx_remove_blk(htx, blk);
5641 /* The removed block is the EOH */
5642 if (type == HTX_BLK_EOH)
5643 break;
Christopher Fauletd0db4232021-01-22 11:46:30 +01005644 }
Willy Tarreau80739692018-10-05 11:35:57 +02005645
Willy Tarreau95acc8b2022-05-27 16:14:10 +02005646 if (!h2s_sc(h2s) || se_fl_test(h2s->sd, SE_FL_SHW)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005647 /* Request already closed: add END_STREAM */
Willy Tarreau80739692018-10-05 11:35:57 +02005648 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005649 }
5650 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5651 /* EOM+empty: we may need to add END_STREAM (except for CONNECT
5652 * request)
5653 */
5654 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5655 es_now = 1;
5656 }
Willy Tarreau80739692018-10-05 11:35:57 +02005657
Willy Tarreau80739692018-10-05 11:35:57 +02005658 if (es_now)
5659 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5660
5661 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005662 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005663 h2s->flags |= H2_SF_HEADERS_SENT;
5664 h2s->st = H2_SS_OPEN;
5665
Willy Tarreau80739692018-10-05 11:35:57 +02005666 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005667 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 +02005668 // trim any possibly pending data (eg: inconsistent content-length)
5669 h2s->flags |= H2_SF_ES_SENT;
5670 h2s->st = H2_SS_HLOC;
5671 }
5672
Willy Tarreau80739692018-10-05 11:35:57 +02005673 end:
5674 return ret;
5675 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005676 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5677 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005678 h2c->flags |= H2_CF_MUX_MFULL;
5679 h2s->flags |= H2_SF_BLK_MROOM;
5680 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005681 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 +02005682 goto end;
5683 fail:
5684 /* unparsable HTX messages, too large ones to be produced in the local
5685 * list etc go here (unrecoverable errors).
5686 */
5687 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5688 ret = 0;
5689 goto end;
5690}
5691
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005692/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005693 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5694 * caller must check the stream's status to detect any error which might have
5695 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005696 * consumed, or zero if nothing done.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005697 */
Christopher Faulet142854b2020-12-02 15:12:40 +01005698static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005699{
5700 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005701 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005702 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005703 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005704 size_t total = 0;
5705 int es_now = 0;
5706 int bsize; /* htx block size */
5707 int fsize; /* h2 frame size */
5708 struct htx_blk *blk;
5709 enum htx_blk_type type;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005710 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005711
Willy Tarreau7838a792019-08-12 18:42:03 +02005712 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5713
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005714 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005715 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005716 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005717 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005718 goto end;
5719 }
5720
Willy Tarreau98de12a2018-12-12 07:03:00 +01005721 htx = htx_from_buf(buf);
5722
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005723 /* We only come here with HTX_BLK_DATA blocks */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005724
5725 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005726 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005727 goto end;
5728
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005729 if ((h2c->flags & H2_CF_IS_BACK) &&
Christopher Fauletf95f8762021-01-22 11:59:07 +01005730 (h2s->flags & (H2_SF_HEADERS_RCVD|H2_SF_BODY_TUNNEL)) == H2_SF_BODY_TUNNEL) {
5731 /* The response HEADERS frame not received yet. Thus the tunnel
5732 * is not fully established yet. In this situation, we block
5733 * data sending.
5734 */
5735 h2s->flags |= H2_SF_BLK_MBUSY;
5736 TRACE_STATE("Request DATA frame blocked waiting for tunnel establishment", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5737 goto end;
5738 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01005739 else if ((h2c->flags & H2_CF_IS_BACK) && (h2s->flags & H2_SF_TUNNEL_ABRT)) {
5740 /* a tunnel attempt was aborted but the is pending raw data to xfer to the server.
5741 * Thus the stream is closed with the CANCEL error. The error will be reported to
5742 * the upper layer as aserver abort. But at this stage there is nothing more we can
5743 * do. We just wait for the end of the response to be sure to not truncate it.
5744 */
5745 if (!(h2s->flags & H2_SF_ES_RCVD)) {
5746 TRACE_STATE("Request DATA frame blocked waiting end of aborted tunnel", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5747 h2s->flags |= H2_SF_BLK_MBUSY;
5748 }
5749 else {
5750 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5751 h2s_error(h2s, H2_ERR_CANCEL);
5752 }
5753 goto end;
5754 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005755
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005756 blk = htx_get_head_blk(htx);
5757 type = htx_get_blk_type(blk);
5758 bsize = htx_get_blksz(blk);
5759 fsize = bsize;
5760 trunc_out = 0;
5761 if (type != HTX_BLK_DATA)
5762 goto end;
5763
Willy Tarreau9c218e72019-05-26 10:08:28 +02005764 mbuf = br_tail(h2c->mbuf);
5765 retry:
5766 if (!h2_get_buf(h2c, mbuf)) {
5767 h2c->flags |= H2_CF_MUX_MALLOC;
5768 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005769 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 +02005770 goto end;
5771 }
5772
Willy Tarreau98de12a2018-12-12 07:03:00 +01005773 /* Perform some optimizations to reduce the number of buffer copies.
5774 * First, if the mux's buffer is empty and the htx area contains
5775 * exactly one data block of the same size as the requested count, and
5776 * this count fits within the frame size, the stream's window size, and
5777 * the connection's window size, then it's possible to simply swap the
5778 * caller's buffer with the mux's output buffer and adjust offsets and
5779 * length to match the entire DATA HTX block in the middle. In this
5780 * case we perform a true zero-copy operation from end-to-end. This is
5781 * the situation that happens all the time with large files. Second, if
5782 * this is not possible, but the mux's output buffer is empty, we still
5783 * have an opportunity to avoid the copy to the intermediary buffer, by
5784 * making the intermediary buffer's area point to the output buffer's
5785 * area. In this case we want to skip the HTX header to make sure that
5786 * copies remain aligned and that this operation remains possible all
5787 * the time. This goes for headers, data blocks and any data extracted
5788 * from the HTX blocks.
5789 */
5790 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005791 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005792 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005793 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005794
Willy Tarreaubcc45952019-05-26 10:05:50 +02005795 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005796 /* Too bad there are data left there. We're willing to memcpy/memmove
5797 * up to 1/4 of the buffer, which means that it's OK to copy a large
5798 * frame into a buffer containing few data if it needs to be realigned,
5799 * and that it's also OK to copy few data without realigning. Otherwise
5800 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005801 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005802 if (fsize + 9 <= b_room(mbuf) &&
5803 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005804 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5805 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 +01005806 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005807 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005808
Willy Tarreau9c218e72019-05-26 10:08:28 +02005809 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5810 goto retry;
5811
Willy Tarreau98de12a2018-12-12 07:03:00 +01005812 h2c->flags |= H2_CF_MUX_MFULL;
5813 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005814 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 +01005815 goto end;
5816 }
5817
Christopher Faulet925abdf2021-04-27 22:51:07 +02005818 if (htx->flags & HTX_FL_EOM) {
5819 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5820 * message)
5821 */
5822 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5823 es_now = 1;
5824 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005825 /* map an H2 frame to the HTX block so that we can put the
5826 * frame header there.
5827 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005828 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5829 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005830
5831 /* prepend an H2 DATA frame header just before the DATA block */
5832 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5833 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
Christopher Faulet925abdf2021-04-27 22:51:07 +02005834 if (es_now)
5835 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005836 h2_set_frame_size(outbuf.area, fsize);
5837
5838 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005839 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005840 h2c->mws -= fsize;
5841
5842 /* and exchange with our old area */
5843 buf->area = old_area;
5844 buf->data = buf->head = 0;
5845 total += fsize;
Christopher Faulet925abdf2021-04-27 22:51:07 +02005846 fsize = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005847
5848 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 +02005849 goto out;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005850 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005851
Willy Tarreau98de12a2018-12-12 07:03:00 +01005852 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005853 /* for DATA and EOM we'll have to emit a frame, even if empty */
5854
5855 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005856 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5857 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005858 break;
5859 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005860 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005861 }
5862
5863 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005864 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5865 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005866 h2c->flags |= H2_CF_MUX_MFULL;
5867 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005868 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005869 goto end;
5870 }
5871
5872 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5873 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5874 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5875 outbuf.data = 9;
5876
5877 /* we have in <fsize> the exact number of bytes we need to copy from
5878 * the HTX buffer. We need to check this against the connection's and
5879 * the stream's send windows, and to ensure that this fits in the max
5880 * frame size and in the buffer's available space minus 9 bytes (for
5881 * the frame header). The connection's flow control is applied last so
5882 * that we can use a separate list of streams which are immediately
5883 * unblocked on window opening. Note: we don't implement padding.
5884 */
5885
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005886 if (!fsize)
5887 goto send_empty;
5888
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005889 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005890 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreau2b718102021-04-21 07:32:39 +02005891 if (LIST_INLIST(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005892 LIST_DEL_INIT(&h2s->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02005893 LIST_APPEND(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005894 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 +01005895 goto end;
5896 }
5897
Willy Tarreauee573762018-12-04 15:25:57 +01005898 if (fsize > count)
5899 fsize = count;
5900
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005901 if (fsize > h2s_mws(h2s))
5902 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005903
5904 if (h2c->mfs && fsize > h2c->mfs)
5905 fsize = h2c->mfs; // >0
5906
5907 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005908 /* It doesn't fit at once. If it at least fits once split and
5909 * the amount of data to move is low, let's defragment the
5910 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005911 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005912 if (b_space_wraps(mbuf) &&
5913 (fsize + 9 <= b_room(mbuf)) &&
5914 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005915 goto realign_again;
5916 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005917 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005918
5919 if (fsize <= 0) {
5920 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005921 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5922 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005923 h2c->flags |= H2_CF_MUX_MFULL;
5924 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005925 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005926 goto end;
5927 }
5928 }
5929
5930 if (h2c->mws <= 0) {
5931 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005932 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 +01005933 goto end;
5934 }
5935
5936 if (fsize > h2c->mws)
5937 fsize = h2c->mws;
5938
5939 /* now let's copy this this into the output buffer */
5940 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005941 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005942 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005943 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005944
5945 send_empty:
5946 /* update the frame's size */
5947 h2_set_frame_size(outbuf.area, fsize);
5948
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005949 /* consume incoming HTX block */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005950 total += fsize;
5951 if (fsize == bsize) {
5952 htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005953 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5954 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5955 * message)
5956 */
5957 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5958 es_now = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02005959 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005960 }
5961 else {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005962 /* we've truncated this block */
5963 htx_cut_data_blk(htx, blk, fsize);
5964 }
5965
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005966 if (es_now)
5967 outbuf.area[4] |= H2_F_DATA_END_STREAM;
5968
5969 /* commit the H2 response */
5970 b_add(mbuf, fsize + 9);
5971
Christopher Faulet925abdf2021-04-27 22:51:07 +02005972 out:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005973 if (es_now) {
5974 if (h2s->st == H2_SS_OPEN)
5975 h2s->st = H2_SS_HLOC;
5976 else
5977 h2s_close(h2s);
5978
5979 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005980 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 +01005981 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005982 else if (fsize) {
5983 if (fsize == bsize) {
5984 TRACE_DEVEL("more data may be available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5985 goto new_frame;
5986 }
5987 else if (trunc_out) {
5988 /* we've truncated this block */
5989 goto new_frame;
5990 }
5991 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005992
5993 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005994 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005995 return total;
5996}
5997
Christopher Faulet991febd2020-12-02 15:17:31 +01005998/* Skip the message payload (DATA blocks) and emit an empty DATA frame with the
5999 * ES flag set for stream <h2s>. This function is called for response known to
6000 * have no payload. Only DATA blocks are skipped. This means the trailers are
Ilya Shipitsinacf84592021-02-06 22:29:08 +05006001 * still emitted. The caller must check the stream's status to detect any error
Christopher Faulet991febd2020-12-02 15:17:31 +01006002 * which might have happened subsequently to a successful send. Returns the
6003 * number of data bytes consumed, or zero if nothing done.
6004 */
6005static size_t h2s_skip_data(struct h2s *h2s, struct buffer *buf, size_t count)
6006{
6007 struct h2c *h2c = h2s->h2c;
6008 struct htx *htx;
6009 int bsize; /* htx block size */
6010 int fsize; /* h2 frame size */
6011 struct htx_blk *blk;
6012 enum htx_blk_type type;
6013 size_t total = 0;
6014
6015 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6016
6017 if (h2c_mux_busy(h2c, h2s)) {
6018 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6019 h2s->flags |= H2_SF_BLK_MBUSY;
6020 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6021 goto end;
6022 }
6023
6024 htx = htx_from_buf(buf);
6025
6026 next_data:
6027 if (!count || htx_is_empty(htx))
6028 goto end;
6029 blk = htx_get_head_blk(htx);
6030 type = htx_get_blk_type(blk);
6031 bsize = htx_get_blksz(blk);
6032 fsize = bsize;
6033 if (type != HTX_BLK_DATA)
6034 goto end;
6035
6036 if (fsize > count)
6037 fsize = count;
6038
6039 if (fsize != bsize)
6040 goto skip_data;
6041
6042 if (!(htx->flags & HTX_FL_EOM) || !htx_is_unique_blk(htx, blk))
6043 goto skip_data;
6044
6045 /* Here, it is the last block and it is also the end of the message. So
6046 * we can emit an empty DATA frame with the ES flag set
6047 */
6048 if (h2_send_empty_data_es(h2s) <= 0)
6049 goto end;
6050
6051 if (h2s->st == H2_SS_OPEN)
6052 h2s->st = H2_SS_HLOC;
6053 else
6054 h2s_close(h2s);
6055
6056 skip_data:
6057 /* consume incoming HTX block */
6058 total += fsize;
6059 if (fsize == bsize) {
6060 TRACE_DEVEL("more data may be available, trying to skip another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6061 htx_remove_blk(htx, blk);
6062 goto next_data;
6063 }
6064 else {
6065 /* we've truncated this block */
6066 htx_cut_data_blk(htx, blk, fsize);
6067 }
6068
6069 end:
6070 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6071 return total;
6072}
6073
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006074/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
6075 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
6076 * processed. The caller must check the stream's status to detect any error
6077 * which might have happened subsequently to a successful send. The htx blocks
6078 * are automatically removed from the message. The htx message is assumed to be
6079 * valid since produced from the internal code. Processing stops when meeting
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006080 * the EOT, which *is* removed. All trailers are processed at once and sent as a
6081 * single frame. The ES flag is always set.
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006082 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006083static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006084{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02006085 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006086 struct h2c *h2c = h2s->h2c;
6087 struct htx_blk *blk;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006088 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02006089 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006090 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006091 int ret = 0;
6092 int hdr;
6093 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006094
Willy Tarreau7838a792019-08-12 18:42:03 +02006095 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
6096
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006097 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006098 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006099 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02006100 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006101 goto end;
6102 }
6103
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006104 /* get trailers. */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006105 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006106 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006107 type = htx_get_blk_type(blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006108
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006109 if (type == HTX_BLK_UNUSED)
6110 continue;
6111
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006112 if (type == HTX_BLK_EOT)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006113 break;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006114 if (type == HTX_BLK_TLR) {
6115 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
6116 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
6117 goto fail;
6118 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006119
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006120 list[hdr].n = htx_get_blk_name(htx, blk);
6121 list[hdr].v = htx_get_blk_value(htx, blk);
6122 hdr++;
6123 }
6124 else {
6125 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 +01006126 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02006127 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006128 }
6129
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006130 /* marker for end of trailers */
6131 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006132
Willy Tarreau9c218e72019-05-26 10:08:28 +02006133 mbuf = br_tail(h2c->mbuf);
6134 retry:
6135 if (!h2_get_buf(h2c, mbuf)) {
6136 h2c->flags |= H2_CF_MUX_MALLOC;
6137 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006138 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 +02006139 goto end;
6140 }
6141
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006142 chunk_reset(&outbuf);
6143
6144 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006145 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6146 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006147 break;
6148 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006149 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006150 }
6151
6152 if (outbuf.size < 9)
6153 goto full;
6154
6155 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
6156 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
6157 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6158 outbuf.data = 9;
6159
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006160 /* encode all headers */
6161 for (idx = 0; idx < hdr; idx++) {
6162 /* these ones do not exist in H2 or must not appear in
6163 * trailers and must be dropped.
6164 */
6165 if (isteq(list[idx].n, ist("host")) ||
6166 isteq(list[idx].n, ist("content-length")) ||
6167 isteq(list[idx].n, ist("connection")) ||
6168 isteq(list[idx].n, ist("proxy-connection")) ||
6169 isteq(list[idx].n, ist("keep-alive")) ||
6170 isteq(list[idx].n, ist("upgrade")) ||
6171 isteq(list[idx].n, ist("te")) ||
6172 isteq(list[idx].n, ist("transfer-encoding")))
6173 continue;
6174
Christopher Faulet86d144c2019-08-14 16:32:25 +02006175 /* Skip all pseudo-headers */
6176 if (*(list[idx].n.ptr) == ':')
6177 continue;
6178
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006179 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
6180 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006181 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006182 goto realign_again;
6183 goto full;
6184 }
6185 }
6186
Willy Tarreau5121e5d2019-05-06 15:13:41 +02006187 if (outbuf.data == 9) {
6188 /* here we have a problem, we have nothing to emit (either we
6189 * received an empty trailers block followed or we removed its
6190 * contents above). Because of this we can't send a HEADERS
6191 * frame, so we have to cheat and instead send an empty DATA
6192 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01006193 */
6194 outbuf.area[3] = H2_FT_DATA;
6195 outbuf.area[4] = H2_F_DATA_END_STREAM;
6196 }
6197
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006198 /* update the frame's size */
6199 h2_set_frame_size(outbuf.area, outbuf.data - 9);
6200
Willy Tarreau572d9f52019-10-11 16:58:37 +02006201 if (outbuf.data > h2c->mfs + 9) {
6202 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
6203 /* output full */
6204 if (b_space_wraps(mbuf))
6205 goto realign_again;
6206 goto full;
6207 }
6208 }
6209
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006210 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02006211 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 +02006212 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006213 h2s->flags |= H2_SF_ES_SENT;
6214
6215 if (h2s->st == H2_SS_OPEN)
6216 h2s->st = H2_SS_HLOC;
6217 else
6218 h2s_close(h2s);
6219
6220 /* OK we could properly deliver the response */
6221 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02006222 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006223 ret = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006224 blk = htx_get_head_blk(htx);
6225 while (blk) {
6226 type = htx_get_blk_type(blk);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006227 ret += htx_get_blksz(blk);
6228 blk = htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006229 /* The removed block is the EOT */
6230 if (type == HTX_BLK_EOT)
6231 break;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006232 }
6233
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006234 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006235 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006236 return ret;
6237 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02006238 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6239 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006240 h2c->flags |= H2_CF_MUX_MFULL;
6241 h2s->flags |= H2_SF_BLK_MROOM;
6242 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006243 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 +01006244 goto end;
6245 fail:
6246 /* unparsable HTX messages, too large ones to be produced in the local
6247 * list etc go here (unrecoverable errors).
6248 */
6249 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
6250 ret = 0;
6251 goto end;
6252}
6253
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006254/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6255 * event subscriber <es> is not allowed to change from a previous call as long
6256 * as at least one event is still subscribed. The <event_type> must only be a
6257 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006258 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006259static int h2_subscribe(struct stconn *sc, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02006260{
Willy Tarreau36c22322022-05-27 10:41:24 +02006261 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02006262 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006263
Willy Tarreau7838a792019-08-12 18:42:03 +02006264 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006265
6266 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006267 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006268
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006269 es->events |= event_type;
6270 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006271
6272 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006273 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006274
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006275 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006276 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02006277 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02006278 !LIST_INLIST(&h2s->list)) {
Olivier Houchardf8338152019-05-14 17:50:32 +02006279 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02006280 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Olivier Houchardf8338152019-05-14 17:50:32 +02006281 else
Willy Tarreau2b718102021-04-21 07:32:39 +02006282 LIST_APPEND(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02006283 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02006284 }
Willy Tarreau7838a792019-08-12 18:42:03 +02006285 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006286 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006287}
6288
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006289/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6290 * The <es> pointer is not allowed to differ from the one passed to the
6291 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006292 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006293static int h2_unsubscribe(struct stconn *sc, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006294{
Willy Tarreau36c22322022-05-27 10:41:24 +02006295 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006296
Willy Tarreau7838a792019-08-12 18:42:03 +02006297 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006298
6299 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006300 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006301
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006302 es->events &= ~event_type;
6303 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01006304 h2s->subs = NULL;
6305
6306 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006307 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006308
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006309 if (event_type & SUB_RETRY_SEND) {
Frédéric Lécaille67fda162022-06-30 12:01:54 +02006310 TRACE_DEVEL("unsubscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006311 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006312 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
6313 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02006314 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01006315
Willy Tarreau7838a792019-08-12 18:42:03 +02006316 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006317 return 0;
6318}
6319
6320
Christopher Faulet564e39c2021-09-21 15:50:55 +02006321/* Called from the upper layer, to receive data
6322 *
6323 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
6324 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
6325 * means the caller wants to flush input data (from the mux buffer and the
6326 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
6327 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
6328 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
6329 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
6330 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
6331 * copy as much data as possible.
6332 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006333static size_t h2_rcv_buf(struct stconn *sc, struct buffer *buf, size_t count, int flags)
Olivier Houchard511efea2018-08-16 15:30:32 +02006334{
Willy Tarreau36c22322022-05-27 10:41:24 +02006335 struct h2s *h2s = __sc_mux_strm(sc);
Willy Tarreau082f5592018-11-25 08:03:32 +01006336 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01006337 struct htx *h2s_htx = NULL;
6338 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02006339 size_t ret = 0;
6340
Willy Tarreau7838a792019-08-12 18:42:03 +02006341 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
6342
Olivier Houchard511efea2018-08-16 15:30:32 +02006343 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006344 h2s_htx = htx_from_buf(&h2s->rxbuf);
Christopher Fauletec361bb2022-02-21 15:12:54 +01006345 if (htx_is_empty(h2s_htx) && !(h2s_htx->flags & HTX_FL_PARSING_ERROR)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02006346 /* Here htx_to_buf() will set buffer data to 0 because
6347 * the HTX is empty.
6348 */
6349 htx_to_buf(h2s_htx, &h2s->rxbuf);
6350 goto end;
6351 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01006352
Christopher Faulet9b79a102019-07-15 11:22:56 +02006353 ret = h2s_htx->data;
6354 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01006355
Christopher Faulet9b79a102019-07-15 11:22:56 +02006356 /* <buf> is empty and the message is small enough, swap the
6357 * buffers. */
6358 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01006359 htx_to_buf(buf_htx, buf);
6360 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006361 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
6362 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01006363 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02006364
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006365 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_UNUSED);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006366
6367 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
6368 buf_htx->flags |= HTX_FL_PARSING_ERROR;
6369 if (htx_is_empty(buf_htx))
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006370 se_fl_set(h2s->sd, SE_FL_EOI);
Willy Tarreau86724e22018-12-01 23:19:43 +01006371 }
Christopher Faulet810df062020-07-22 16:20:34 +02006372 else if (htx_is_empty(h2s_htx))
Christopher Faulet42432f32020-11-20 17:43:16 +01006373 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006374
Christopher Faulet9b79a102019-07-15 11:22:56 +02006375 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
6376 htx_to_buf(buf_htx, buf);
6377 htx_to_buf(h2s_htx, &h2s->rxbuf);
6378 ret -= h2s_htx->data;
6379
Christopher Faulet37070b22019-02-14 15:12:14 +01006380 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02006381 if (b_data(&h2s->rxbuf))
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006382 se_fl_set(h2s->sd, SE_FL_RCV_MORE | SE_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006383 else {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006384 se_fl_clr(h2s->sd, SE_FL_RCV_MORE | SE_FL_WANT_ROOM);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006385 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006386 se_fl_set(h2s->sd, SE_FL_EOI);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006387 /* Add EOS flag for tunnel */
6388 if (h2s->flags & H2_SF_BODY_TUNNEL)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006389 se_fl_set(h2s->sd, SE_FL_EOS);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006390 }
Christopher Fauletaade4ed2020-10-08 15:38:41 +02006391 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006392 se_fl_set(h2s->sd, SE_FL_EOS);
6393 if (se_fl_test(h2s->sd, SE_FL_ERR_PENDING))
6394 se_fl_set(h2s->sd, SE_FL_ERROR);
Olivier Houchard638b7992018-08-16 15:41:52 +02006395 if (b_size(&h2s->rxbuf)) {
6396 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01006397 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02006398 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006399 }
6400
Willy Tarreau082f5592018-11-25 08:03:32 +01006401 if (ret && h2c->dsi == h2s->id) {
6402 /* demux is blocking on this stream's buffer */
6403 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006404 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006405 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006406
Willy Tarreau7838a792019-08-12 18:42:03 +02006407 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006408 return ret;
6409}
6410
Olivier Houchardd846c262018-10-19 17:24:29 +02006411
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006412/* Called from the upper layer, to send data from buffer <buf> for no more than
6413 * <count> bytes. Returns the number of bytes effectively sent. Some status
Willy Tarreau4596fe22022-05-17 19:07:51 +02006414 * flags may be updated on the stream connector.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006415 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006416static size_t h2_snd_buf(struct stconn *sc, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006417{
Willy Tarreau36c22322022-05-27 10:41:24 +02006418 struct h2s *h2s = __sc_mux_strm(sc);
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006419 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006420 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006421 struct htx *htx;
6422 struct htx_blk *blk;
6423 enum htx_blk_type btype;
6424 uint32_t bsize;
6425 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006426
Willy Tarreau7838a792019-08-12 18:42:03 +02006427 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6428
Olivier Houchardd360ac62019-03-22 17:37:16 +01006429 /* If we were not just woken because we wanted to send but couldn't,
6430 * and there's somebody else that is waiting to send, do nothing,
6431 * we will subscribe later and be put at the end of the list
6432 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006433 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006434 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6435 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 +01006436 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006437 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006438 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006439
Willy Tarreau7838a792019-08-12 18:42:03 +02006440 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6441 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 +02006442 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006443 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006444
Willy Tarreaucab22952019-10-31 15:48:18 +01006445 if (h2s->h2c->st0 >= H2_CS_ERROR) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006446 se_fl_set(h2s->sd, SE_FL_ERROR);
Willy Tarreaucab22952019-10-31 15:48:18 +01006447 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);
6448 return 0;
6449 }
6450
Christopher Faulet9b79a102019-07-15 11:22:56 +02006451 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006452
Willy Tarreau0bad0432018-06-14 16:54:01 +02006453 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006454 h2s->flags |= H2_SF_OUTGOING_DATA;
6455
Willy Tarreau48770452022-08-18 16:03:51 +02006456 if (htx->extra)
6457 h2s->flags |= H2_SF_MORE_HTX_DATA;
6458 else
6459 h2s->flags &= ~H2_SF_MORE_HTX_DATA;
6460
Willy Tarreau751f2d02018-10-05 09:35:00 +02006461 if (h2s->id == 0) {
6462 int32_t id = h2c_get_next_sid(h2s->h2c);
6463
6464 if (id < 0) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006465 se_fl_set(h2s->sd, SE_FL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02006466 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 +02006467 return 0;
6468 }
6469
6470 eb32_delete(&h2s->by_id);
6471 h2s->by_id.key = h2s->id = id;
6472 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006473 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006474 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6475 }
6476
Christopher Faulet9b79a102019-07-15 11:22:56 +02006477 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6478 count && !htx_is_empty(htx)) {
6479 idx = htx_get_head(htx);
6480 blk = htx_get_blk(htx, idx);
6481 btype = htx_get_blk_type(blk);
6482 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006483
Christopher Faulet9b79a102019-07-15 11:22:56 +02006484 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006485 case HTX_BLK_REQ_SL:
6486 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006487 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006488 if (ret > 0) {
6489 total += ret;
6490 count -= ret;
6491 if (ret < bsize)
6492 goto done;
6493 }
6494 break;
6495
Willy Tarreau115e83b2018-12-01 19:17:53 +01006496 case HTX_BLK_RES_SL:
6497 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006498 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006499 if (ret > 0) {
6500 total += ret;
6501 count -= ret;
6502 if (ret < bsize)
6503 goto done;
6504 }
6505 break;
6506
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006507 case HTX_BLK_DATA:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006508 /* all these cause the emission of a DATA frame (possibly empty) */
Christopher Faulet991febd2020-12-02 15:17:31 +01006509 if (!(h2s->h2c->flags & H2_CF_IS_BACK) &&
6510 (h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BODYLESS_RESP)) == H2_SF_BODYLESS_RESP)
6511 ret = h2s_skip_data(h2s, buf, count);
6512 else
6513 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006514 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006515 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006516 total += ret;
6517 count -= ret;
6518 if (ret < bsize)
6519 goto done;
6520 }
6521 break;
6522
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006523 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006524 case HTX_BLK_EOT:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006525 /* This is the first trailers block, all the subsequent ones */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006526 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006527 if (ret > 0) {
6528 total += ret;
6529 count -= ret;
6530 if (ret < bsize)
6531 goto done;
6532 }
6533 break;
6534
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006535 default:
6536 htx_remove_blk(htx, blk);
6537 total += bsize;
6538 count -= bsize;
6539 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006540 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006541 }
6542
Christopher Faulet9b79a102019-07-15 11:22:56 +02006543 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006544 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006545 /* trim any possibly pending data after we close (extra CR-LF,
6546 * unprocessed trailers, abnormal extra data, ...)
6547 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006548 total += count;
6549 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006550 }
6551
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006552 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006553 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006554 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 +02006555 se_fl_set_error(h2s->sd);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006556 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006557 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006558 }
6559
Christopher Faulet9b79a102019-07-15 11:22:56 +02006560 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006561
Olivier Houchard7505f942018-08-21 18:10:44 +02006562 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006563 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006564 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 +02006565 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006566 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006567
Olivier Houchard7505f942018-08-21 18:10:44 +02006568 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006569 /* If we're waiting for flow control, and we got a shutr on the
6570 * connection, we will never be unlocked, so add an error on
Willy Tarreau4596fe22022-05-17 19:07:51 +02006571 * the stream connector.
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006572 */
Christopher Fauletff7925d2022-10-11 19:12:40 +02006573 if ((h2s->h2c->flags & H2_CF_RCVD_SHUT) &&
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006574 !b_data(&h2s->h2c->dbuf) &&
6575 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006576 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 +02006577 if (se_fl_test(h2s->sd, SE_FL_EOS))
6578 se_fl_set(h2s->sd, SE_FL_ERROR);
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006579 else
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006580 se_fl_set(h2s->sd, SE_FL_ERR_PENDING);
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006581 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006582
Willy Tarreau5723f292020-01-10 15:16:57 +01006583 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6584 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006585 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006586 LIST_DEL_INIT(&h2s->list);
6587 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006588
Willy Tarreau7838a792019-08-12 18:42:03 +02006589 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006590 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006591}
6592
Willy Tarreau90bffa22022-09-01 19:06:44 +02006593/* appends some info about stream <h2s> to buffer <msg>, or does nothing if
Willy Tarreau7051f732022-09-02 15:22:12 +02006594 * <h2s> is NULL. Returns non-zero if the stream is considered suspicious. May
6595 * emit multiple lines, each new one being prefixed with <pfx>, if <pfx> is not
6596 * NULL, otherwise a single line is used.
Willy Tarreau90bffa22022-09-01 19:06:44 +02006597 */
Willy Tarreau7051f732022-09-02 15:22:12 +02006598static int h2_dump_h2s_info(struct buffer *msg, const struct h2s *h2s, const char *pfx)
Willy Tarreau90bffa22022-09-01 19:06:44 +02006599{
6600 int ret = 0;
6601
6602 if (!h2s)
6603 return ret;
6604
Willy Tarreau7051f732022-09-02 15:22:12 +02006605 chunk_appendf(msg, " h2s.id=%d .st=%s .flg=0x%04x .rxbuf=%u@%p+%u/%u",
Willy Tarreau90bffa22022-09-01 19:06:44 +02006606 h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
6607 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
Willy Tarreau7051f732022-09-02 15:22:12 +02006608 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf));
6609
6610 if (pfx)
6611 chunk_appendf(msg, "\n%s", pfx);
6612
6613 chunk_appendf(msg, " .sc=%p", h2s_sc(h2s));
Willy Tarreau90bffa22022-09-01 19:06:44 +02006614 if (h2s_sc(h2s))
6615 chunk_appendf(msg, "(.flg=0x%08x .app=%p)",
6616 h2s_sc(h2s)->flags, h2s_sc(h2s)->app);
6617
Willy Tarreau7051f732022-09-02 15:22:12 +02006618 chunk_appendf(msg, " .sd=%p", h2s->sd);
Willy Tarreau90bffa22022-09-01 19:06:44 +02006619 chunk_appendf(msg, "(.flg=0x%08x)", se_fl_get(h2s->sd));
6620
Willy Tarreau7051f732022-09-02 15:22:12 +02006621 if (pfx)
6622 chunk_appendf(msg, "\n%s", pfx);
6623
Willy Tarreau90bffa22022-09-01 19:06:44 +02006624 chunk_appendf(msg, " .subs=%p", h2s->subs);
6625 if (h2s->subs) {
6626 chunk_appendf(msg, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
6627 chunk_appendf(msg, " tl.calls=%d tl.ctx=%p tl.fct=",
6628 h2s->subs->tasklet->calls,
6629 h2s->subs->tasklet->context);
6630 if (h2s->subs->tasklet->calls >= 1000000)
6631 ret = 1;
6632 resolve_sym_name(msg, NULL, h2s->subs->tasklet->process);
6633 chunk_appendf(msg, ")");
6634 }
6635 return ret;
6636}
6637
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006638/* appends some info about connection <h2c> to buffer <msg>, or does nothing if
6639 * <h2c> is NULL. Returns non-zero if the connection is considered suspicious.
Willy Tarreau7051f732022-09-02 15:22:12 +02006640 * May emit multiple lines, each new one being prefixed with <pfx>, if <pfx> is
6641 * not NULL, otherwise a single line is used.
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006642 */
Willy Tarreau7051f732022-09-02 15:22:12 +02006643static int h2_dump_h2c_info(struct buffer *msg, struct h2c *h2c, const char *pfx)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006644{
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006645 const struct buffer *hmbuf, *tmbuf;
6646 const struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006647 struct eb32_node *node;
6648 int fctl_cnt = 0;
6649 int send_cnt = 0;
6650 int tree_cnt = 0;
6651 int orph_cnt = 0;
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006652 int ret = 0;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006653
6654 if (!h2c)
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006655 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006656
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006657 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006658 fctl_cnt++;
6659
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006660 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006661 send_cnt++;
6662
6663 node = eb32_first(&h2c->streams_by_id);
6664 while (node) {
6665 h2s = container_of(node, struct h2s, by_id);
6666 tree_cnt++;
Willy Tarreau7be4ee02022-05-18 07:31:41 +02006667 if (!h2s_sc(h2s))
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006668 orph_cnt++;
6669 node = eb32_next(node);
6670 }
6671
Willy Tarreau60f62682019-05-26 11:32:27 +02006672 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006673 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006674 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau7051f732022-09-02 15:22:12 +02006675 " .nbst=%u .nbsc=%u",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006676 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau7051f732022-09-02 15:22:12 +02006677 h2c->nb_streams, h2c->nb_sc);
6678
6679 if (pfx)
6680 chunk_appendf(msg, "\n%s", pfx);
6681
6682 chunk_appendf(msg, " .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
6683 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u",
6684 fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006685 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006686 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
Willy Tarreau7051f732022-09-02 15:22:12 +02006687 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf));
6688
6689 if (pfx)
6690 chunk_appendf(msg, "\n%s", pfx);
6691
6692 chunk_appendf(msg, " .msi=%d"
6693 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreau987c0632018-12-18 10:32:05 +01006694 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02006695 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6696 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6697 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006698 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6699 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006700
Willy Tarreau7051f732022-09-02 15:22:12 +02006701
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006702 return ret;
6703}
6704
6705/* for debugging with CLI's "show fd" command */
6706static int h2_show_fd(struct buffer *msg, struct connection *conn)
6707{
6708 struct h2c *h2c = conn->ctx;
6709 const struct h2s *h2s;
6710 struct eb32_node *node;
6711 int ret = 0;
6712
6713 if (!h2c)
6714 return ret;
6715
Willy Tarreau7051f732022-09-02 15:22:12 +02006716 ret |= h2_dump_h2c_info(msg, h2c, NULL);
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006717
6718 node = eb32_last(&h2c->streams_by_id);
6719 if (node) {
6720 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau90bffa22022-09-01 19:06:44 +02006721 chunk_appendf(msg, " last_h2s=%p", h2s);
Willy Tarreau7051f732022-09-02 15:22:12 +02006722 ret |= h2_dump_h2s_info(msg, h2s, NULL);
Willy Tarreau987c0632018-12-18 10:32:05 +01006723 }
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006724
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006725 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006726}
Willy Tarreau62f52692017-10-08 23:01:42 +02006727
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02006728/* for debugging with CLI's "show sess" command. May emit multiple lines, each
6729 * new one being prefixed with <pfx>, if <pfx> is not NULL, otherwise a single
6730 * line is used. Each field starts with a space so it's safe to print it after
6731 * existing fields.
6732 */
6733static int h2_show_sd(struct buffer *msg, struct sedesc *sd, const char *pfx)
6734{
6735 struct h2s *h2s = sd->se;
6736 int ret = 0;
6737
6738 if (!h2s)
6739 return ret;
6740
6741 chunk_appendf(msg, " h2s=%p", h2s);
Willy Tarreau7051f732022-09-02 15:22:12 +02006742 ret |= h2_dump_h2s_info(msg, h2s, pfx);
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02006743 if (pfx)
6744 chunk_appendf(msg, "\n%s", pfx);
6745 chunk_appendf(msg, " h2c=%p", h2s->h2c);
Willy Tarreau7051f732022-09-02 15:22:12 +02006746 ret |= h2_dump_h2c_info(msg, h2s->h2c, pfx);
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02006747 return ret;
6748}
6749
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006750/* Migrate the the connection to the current thread.
6751 * Return 0 if successful, non-zero otherwise.
6752 * Expected to be called with the old thread lock held.
6753 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006754static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006755{
6756 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006757 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006758
6759 if (fd_takeover(conn->handle.fd, conn) != 0)
6760 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006761
6762 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6763 /* We failed to takeover the xprt, even if the connection may
6764 * still be valid, flag it as error'd, as we have already
6765 * taken over the fd, and wake the tasklet, so that it will
6766 * destroy it.
6767 */
6768 conn->flags |= CO_FL_ERROR;
6769 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6770 return -1;
6771 }
6772
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006773 if (h2c->wait_event.events)
6774 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6775 h2c->wait_event.events, &h2c->wait_event);
6776 /* To let the tasklet know it should free itself, and do nothing else,
6777 * set its context to NULL.
6778 */
6779 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006780 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006781
6782 task = h2c->task;
6783 if (task) {
6784 task->context = NULL;
6785 h2c->task = NULL;
6786 __ha_barrier_store();
6787 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006788
Willy Tarreaubeeabf52021-10-01 18:23:30 +02006789 h2c->task = task_new_here();
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006790 if (!h2c->task) {
6791 h2_release(h2c);
6792 return -1;
6793 }
6794 h2c->task->process = h2_timeout_task;
6795 h2c->task->context = h2c;
6796 }
6797 h2c->wait_event.tasklet = tasklet_new();
6798 if (!h2c->wait_event.tasklet) {
6799 h2_release(h2c);
6800 return -1;
6801 }
6802 h2c->wait_event.tasklet->process = h2_io_cb;
6803 h2c->wait_event.tasklet->context = h2c;
6804 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6805 SUB_RETRY_RECV, &h2c->wait_event);
6806
6807 return 0;
6808}
6809
Willy Tarreau62f52692017-10-08 23:01:42 +02006810/*******************************************************/
6811/* functions below are dedicated to the config parsers */
6812/*******************************************************/
6813
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006814/* config parser for global "tune.h2.header-table-size" */
6815static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006816 const struct proxy *defpx, const char *file, int line,
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006817 char **err)
6818{
6819 if (too_many_args(1, args, err, NULL))
6820 return -1;
6821
6822 h2_settings_header_table_size = atoi(args[1]);
6823 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6824 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6825 return -1;
6826 }
6827 return 0;
6828}
Willy Tarreau62f52692017-10-08 23:01:42 +02006829
Willy Tarreaue6baec02017-07-27 11:45:11 +02006830/* config parser for global "tune.h2.initial-window-size" */
6831static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006832 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue6baec02017-07-27 11:45:11 +02006833 char **err)
6834{
6835 if (too_many_args(1, args, err, NULL))
6836 return -1;
6837
6838 h2_settings_initial_window_size = atoi(args[1]);
6839 if (h2_settings_initial_window_size < 0) {
6840 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6841 return -1;
6842 }
6843 return 0;
6844}
6845
Willy Tarreau5242ef82017-07-27 11:47:28 +02006846/* config parser for global "tune.h2.max-concurrent-streams" */
6847static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006848 const struct proxy *defpx, const char *file, int line,
Willy Tarreau5242ef82017-07-27 11:47:28 +02006849 char **err)
6850{
6851 if (too_many_args(1, args, err, NULL))
6852 return -1;
6853
6854 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006855 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006856 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6857 return -1;
6858 }
6859 return 0;
6860}
6861
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006862/* config parser for global "tune.h2.max-frame-size" */
6863static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006864 const struct proxy *defpx, const char *file, int line,
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006865 char **err)
6866{
6867 if (too_many_args(1, args, err, NULL))
6868 return -1;
6869
6870 h2_settings_max_frame_size = atoi(args[1]);
6871 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6872 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6873 return -1;
6874 }
6875 return 0;
6876}
6877
Willy Tarreau62f52692017-10-08 23:01:42 +02006878
6879/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006880/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006881/***************************************/
6882
6883/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006884static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006885 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006886 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006887 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006888 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006889 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006890 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006891 .attach = h2_attach,
Willy Tarreaud1373532022-05-27 11:00:59 +02006892 .get_first_sc = h2_get_first_sc,
Willy Tarreau62f52692017-10-08 23:01:42 +02006893 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006894 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006895 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006896 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006897 .shutr = h2_shutr,
6898 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006899 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006900 .show_fd = h2_show_fd,
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02006901 .show_sd = h2_show_sd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006902 .takeover = h2_takeover,
Christopher Fauleta97cced2022-04-12 18:04:10 +02006903 .flags = MX_FL_HTX|MX_FL_HOL_RISK|MX_FL_NO_UPG,
Willy Tarreau62f52692017-10-08 23:01:42 +02006904 .name = "H2",
6905};
6906
Christopher Faulet32f61c02018-04-10 14:33:41 +02006907static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006908 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006909
Willy Tarreau0108d902018-11-25 19:14:37 +01006910INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6911
Willy Tarreau62f52692017-10-08 23:01:42 +02006912/* config keyword parsers */
6913static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006914 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006915 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006916 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006917 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006918 { 0, NULL, NULL }
6919}};
6920
Willy Tarreau0108d902018-11-25 19:14:37 +01006921INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006922
6923/* initialize internal structs after the config is parsed.
6924 * Returns zero on success, non-zero on error.
6925 */
6926static int init_h2()
6927{
6928 pool_head_hpack_tbl = create_pool("hpack_tbl",
6929 h2_settings_header_table_size,
6930 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01006931 if (!pool_head_hpack_tbl) {
6932 ha_alert("failed to allocate hpack_tbl memory pool\n");
6933 return (ERR_ALERT | ERR_FATAL);
6934 }
6935 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006936}
6937
6938REGISTER_POST_CHECK(init_h2);