blob: 3bbaabe3d7bc58474a0f9e92d6af4fd5e5d54068 [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 Tarreau4c7e4b72020-05-27 12:58:42 +020014#include <haproxy/api.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020015#include <haproxy/cfgparse.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020016#include <haproxy/connection.h>
Willy Tarreaubf073142020-06-03 12:04:01 +020017#include <haproxy/h2.h>
Willy Tarreaube327fa2020-06-03 09:09:57 +020018#include <haproxy/hpack-dec.h>
19#include <haproxy/hpack-enc.h>
20#include <haproxy/hpack-tbl.h>
Willy Tarreau87735332020-06-04 09:08:41 +020021#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020022#include <haproxy/htx.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020023#include <haproxy/istbuf.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020024#include <haproxy/log.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +020025#include <haproxy/net_helper.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020026#include <haproxy/session-t.h>
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +010027#include <haproxy/stats.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020028#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020029#include <haproxy/stream_interface.h>
Willy Tarreauc6d61d72020-06-04 19:02:42 +020030#include <haproxy/trace.h>
Willy Tarreau62f52692017-10-08 23:01:42 +020031
32
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010033/* dummy streams returned for closed, error, refused, idle and states */
Willy Tarreau2a856182017-05-16 15:20:39 +020034static const struct h2s *h2_closed_stream;
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010035static const struct h2s *h2_error_stream;
Willy Tarreau8d0d58b2018-12-23 18:29:12 +010036static const struct h2s *h2_refused_stream;
Willy Tarreau2a856182017-05-16 15:20:39 +020037static const struct h2s *h2_idle_stream;
38
Willy Tarreau5ab6b572017-09-22 08:05:00 +020039/* Connection flags (32 bit), in h2c->flags */
40#define H2_CF_NONE 0x00000000
41
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020042/* Flags indicating why writing to the mux is blocked. */
43#define H2_CF_MUX_MALLOC 0x00000001 // mux blocked on lack of connection's mux buffer
44#define H2_CF_MUX_MFULL 0x00000002 // mux blocked on connection's mux buffer full
45#define H2_CF_MUX_BLOCK_ANY 0x00000003 // aggregate of the mux flags above
46
Willy Tarreau315d8072017-12-10 22:17:57 +010047/* Flags indicating why writing to the demux is blocked.
48 * The first two ones directly affect the ability for the mux to receive data
49 * from the connection. The other ones affect the mux's ability to demux
50 * received data.
51 */
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020052#define H2_CF_DEM_DALLOC 0x00000004 // demux blocked on lack of connection's demux buffer
53#define H2_CF_DEM_DFULL 0x00000008 // demux blocked on connection's demux buffer full
Willy Tarreau315d8072017-12-10 22:17:57 +010054
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020055#define H2_CF_DEM_MBUSY 0x00000010 // demux blocked on connection's mux side busy
56#define H2_CF_DEM_MROOM 0x00000020 // demux blocked on lack of room in mux buffer
57#define H2_CF_DEM_SALLOC 0x00000040 // demux blocked on lack of stream's request buffer
58#define H2_CF_DEM_SFULL 0x00000080 // demux blocked on stream request buffer full
Willy Tarreauf2101912018-07-19 10:11:38 +020059#define H2_CF_DEM_TOOMANY 0x00000100 // demux blocked waiting for some conn_streams to leave
60#define H2_CF_DEM_BLOCK_ANY 0x000001F0 // aggregate of the demux flags above except DALLOC/DFULL
Christopher Fauleta9cc1e82021-07-26 12:06:53 +020061 // (SHORT_READ is also excluded)
62
Christopher Faulet484f10a2021-11-10 17:50:10 +010063#define H2_CF_DEM_SHORT_READ 0x00000200 // demux blocked on incomplete frame
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020064
Willy Tarreau081d4722017-05-16 21:51:05 +020065/* other flags */
Willy Tarreauf2101912018-07-19 10:11:38 +020066#define H2_CF_GOAWAY_SENT 0x00001000 // a GOAWAY frame was successfully sent
67#define H2_CF_GOAWAY_FAILED 0x00002000 // a GOAWAY frame failed to be sent
68#define H2_CF_WAIT_FOR_HS 0x00004000 // We did check that at least a stream was waiting for handshake
Willy Tarreaub3fb56d2018-10-03 13:56:38 +020069#define H2_CF_IS_BACK 0x00008000 // this is an outgoing connection
Willy Tarreau3d4631f2021-01-20 10:53:13 +010070#define H2_CF_WINDOW_OPENED 0x00010000 // demux increased window already advertised
71#define H2_CF_RCVD_SHUT 0x00020000 // a recv() attempt already failed on a shutdown
72#define H2_CF_END_REACHED 0x00040000 // pending data too short with RCVD_SHUT present
Willy Tarreau081d4722017-05-16 21:51:05 +020073
Amaury Denoyelle68993a12021-10-18 09:43:29 +020074#define H2_CF_RCVD_RFC8441 0x00100000 // settings from RFC8441 has been received indicating support for Extended CONNECT
75
Willy Tarreau5ab6b572017-09-22 08:05:00 +020076/* H2 connection state, in h2c->st0 */
77enum h2_cs {
78 H2_CS_PREFACE, // init done, waiting for connection preface
79 H2_CS_SETTINGS1, // preface OK, waiting for first settings frame
80 H2_CS_FRAME_H, // first settings frame ok, waiting for frame header
81 H2_CS_FRAME_P, // frame header OK, waiting for frame payload
Willy Tarreaua20a5192017-12-27 11:02:06 +010082 H2_CS_FRAME_A, // frame payload OK, trying to send ACK frame
83 H2_CS_FRAME_E, // frame payload OK, trying to send RST frame
Willy Tarreau5ab6b572017-09-22 08:05:00 +020084 H2_CS_ERROR, // send GOAWAY(errcode) and close the connection ASAP
85 H2_CS_ERROR2, // GOAWAY(errcode) sent, close the connection ASAP
86 H2_CS_ENTRIES // must be last
87} __attribute__((packed));
88
Willy Tarreau51330962019-05-26 09:38:07 +020089
Willy Tarreau9c218e72019-05-26 10:08:28 +020090/* 32 buffers: one for the ring's root, rest for the mbuf itself */
91#define H2C_MBUF_CNT 32
Willy Tarreau51330962019-05-26 09:38:07 +020092
Willy Tarreau5ab6b572017-09-22 08:05:00 +020093/* H2 connection descriptor */
94struct h2c {
95 struct connection *conn;
96
97 enum h2_cs st0; /* mux state */
98 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
99
100 /* 16 bit hole here */
101 uint32_t flags; /* connection flags: H2_CF_* */
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100102 uint32_t streams_limit; /* maximum number of concurrent streams the peer supports */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200103 int32_t max_id; /* highest ID known on this connection, <0 before preface */
104 uint32_t rcvd_c; /* newly received data to ACK for the connection */
105 uint32_t rcvd_s; /* newly received data to ACK for the current stream (dsi) */
106
107 /* states for the demux direction */
108 struct hpack_dht *ddht; /* demux dynamic header table */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200109 struct buffer dbuf; /* demux buffer */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200110
111 int32_t dsi; /* demux stream ID (<0 = idle) */
112 int32_t dfl; /* demux frame length (if dsi >= 0) */
113 int8_t dft; /* demux frame type (if dsi >= 0) */
114 int8_t dff; /* demux frame flags (if dsi >= 0) */
Willy Tarreau05e5daf2017-12-11 15:17:36 +0100115 uint8_t dpl; /* demux pad length (part of dfl), init to 0 */
116 /* 8 bit hole here */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200117 int32_t last_sid; /* last processed stream ID for GOAWAY, <0 before preface */
118
119 /* states for the mux direction */
Willy Tarreau51330962019-05-26 09:38:07 +0200120 struct buffer mbuf[H2C_MBUF_CNT]; /* mux buffers (ring) */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200121 int32_t msi; /* mux stream ID (<0 = idle) */
122 int32_t mfl; /* mux frame length (if dsi >= 0) */
123 int8_t mft; /* mux frame type (if dsi >= 0) */
124 int8_t mff; /* mux frame flags (if dsi >= 0) */
125 /* 16 bit hole here */
126 int32_t miw; /* mux initial window size for all new streams */
127 int32_t mws; /* mux window size. Can be negative. */
128 int32_t mfs; /* mux's max frame size */
129
Willy Tarreauea392822017-10-31 10:02:25 +0100130 int timeout; /* idle timeout duration in ticks */
Willy Tarreau599391a2017-11-24 10:16:00 +0100131 int shut_timeout; /* idle timeout duration in ticks after GOAWAY was sent */
Willy Tarreau49745612017-12-03 18:56:02 +0100132 unsigned int nb_streams; /* number of streams in the tree */
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200133 unsigned int nb_cs; /* number of attached conn_streams */
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100134 unsigned int nb_reserved; /* number of reserved streams */
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100135 unsigned int stream_cnt; /* total number of streams seen */
Willy Tarreau0b37d652018-10-03 10:33:02 +0200136 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +0100137 struct task *task; /* timeout management task */
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100138 struct h2_counters *px_counters; /* h2 counters attached to proxy */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200139 struct eb_root streams_by_id; /* all active streams by their ID */
140 struct list send_list; /* list of blocked streams requesting to send */
141 struct list fctl_list; /* list of streams blocked by connection's fctl */
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200142 struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100143 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200144 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200145};
146
Willy Tarreau18312642017-10-11 07:57:07 +0200147/* H2 stream state, in h2s->st */
148enum h2_ss {
149 H2_SS_IDLE = 0, // idle
150 H2_SS_RLOC, // reserved(local)
151 H2_SS_RREM, // reserved(remote)
152 H2_SS_OPEN, // open
153 H2_SS_HREM, // half-closed(remote)
154 H2_SS_HLOC, // half-closed(local)
Willy Tarreau96060ba2017-10-16 18:34:34 +0200155 H2_SS_ERROR, // an error needs to be sent using RST_STREAM
Willy Tarreau18312642017-10-11 07:57:07 +0200156 H2_SS_CLOSED, // closed
157 H2_SS_ENTRIES // must be last
158} __attribute__((packed));
159
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200160#define H2_SS_MASK(state) (1UL << (state))
161#define H2_SS_IDLE_BIT (1UL << H2_SS_IDLE)
162#define H2_SS_RLOC_BIT (1UL << H2_SS_RLOC)
163#define H2_SS_RREM_BIT (1UL << H2_SS_RREM)
164#define H2_SS_OPEN_BIT (1UL << H2_SS_OPEN)
165#define H2_SS_HREM_BIT (1UL << H2_SS_HREM)
166#define H2_SS_HLOC_BIT (1UL << H2_SS_HLOC)
167#define H2_SS_ERROR_BIT (1UL << H2_SS_ERROR)
168#define H2_SS_CLOSED_BIT (1UL << H2_SS_CLOSED)
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200169
Willy Tarreau18312642017-10-11 07:57:07 +0200170/* HTTP/2 stream flags (32 bit), in h2s->flags */
171#define H2_SF_NONE 0x00000000
172#define H2_SF_ES_RCVD 0x00000001
173#define H2_SF_ES_SENT 0x00000002
174
175#define H2_SF_RST_RCVD 0x00000004 // received RST_STREAM
176#define H2_SF_RST_SENT 0x00000008 // sent RST_STREAM
177
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200178/* stream flags indicating the reason the stream is blocked */
179#define H2_SF_BLK_MBUSY 0x00000010 // blocked waiting for mux access (transient)
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200180#define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux (must be in send list)
181#define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl (must be in fctl list)
182#define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl (must be in blocked list)
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200183#define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above
184
Willy Tarreau454f9052017-10-26 19:40:35 +0200185/* stream flags indicating how data is supposed to be sent */
186#define H2_SF_DATA_CLEN 0x00000100 // data sent using content-length
Christopher Faulet7d247f02020-12-02 14:26:36 +0100187#define H2_SF_BODYLESS_RESP 0x00000200 /* Bodyless response message */
Christopher Fauletd0db4232021-01-22 11:46:30 +0100188#define H2_SF_BODY_TUNNEL 0x00000400 // Attempt to establish a Tunnelled stream (the result depends on the status code)
189
Willy Tarreau454f9052017-10-26 19:40:35 +0200190
Willy Tarreaud9464162020-01-10 18:25:07 +0100191#define H2_SF_NOTIFIED 0x00000800 // a paused stream was notified to try to send again
Willy Tarreau67434202017-11-06 20:20:51 +0100192#define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream
Willy Tarreauc4312d32017-11-07 12:01:53 +0100193#define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data
Willy Tarreau67434202017-11-06 20:20:51 +0100194
Willy Tarreau6cc85a52019-01-02 15:49:20 +0100195#define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream
196
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200197#define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy)
198#define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy)
Willy Tarreau3cf69fe2019-05-14 10:44:40 +0200199#define H2_SF_KILL_CONN 0x00020000 // kill the whole connection with this stream
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200200
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100201#define H2_SF_EXT_CONNECT_SENT 0x00040000 // rfc 8441 an Extended CONNECT has been sent
Amaury Denoyelleefe22762020-12-11 17:53:08 +0100202#define H2_SF_EXT_CONNECT_RCVD 0x00080000 // rfc 8441 an Extended CONNECT has been received and parsed
Christopher Fauletd0db4232021-01-22 11:46:30 +0100203
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100204#define H2_SF_TUNNEL_ABRT 0x00100000 // A tunnel attempt was aborted
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200205
Willy Tarreau18312642017-10-11 07:57:07 +0200206/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
Christopher Fauletfafd1b02020-11-03 18:25:52 +0100207 * it is being processed in the internal HTTP representation (HTX).
Willy Tarreau18312642017-10-11 07:57:07 +0200208 */
209struct h2s {
210 struct conn_stream *cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100211 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200212 struct h2c *h2c;
Willy Tarreau18312642017-10-11 07:57:07 +0200213 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200214 int32_t id; /* stream ID */
215 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200216 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200217 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
218 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200219 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100220 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200221 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Willy Tarreauf96508a2020-01-10 11:12:48 +0100222 struct wait_event *subs; /* recv wait_event the conn_stream associated is waiting on (via h2_subscribe) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200223 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Willy Tarreau5723f292020-01-10 15:16:57 +0100224 struct tasklet *shut_tl; /* deferred shutdown tasklet, to retry to send an RST after we failed to,
225 * in case there's no other subscription to do it */
Amaury Denoyelle74162742020-12-11 17:53:05 +0100226
227 char upgrade_protocol[16]; /* rfc 8441: requested protocol on Extended CONNECT */
Willy Tarreau18312642017-10-11 07:57:07 +0200228};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200229
Willy Tarreauc6405142017-09-21 20:23:50 +0200230/* descriptor for an h2 frame header */
231struct h2_fh {
232 uint32_t len; /* length, host order, 24 bits */
233 uint32_t sid; /* stream id, host order, 31 bits */
234 uint8_t ft; /* frame type */
235 uint8_t ff; /* frame flags */
236};
237
Willy Tarreau12ae2122019-08-08 18:23:12 +0200238/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200239static void h2_trace(enum trace_level level, uint64_t mask, \
240 const struct trace_source *src,
241 const struct ist where, const struct ist func,
242 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200243
244/* The event representation is split like this :
245 * strm - application layer
246 * h2s - internal H2 stream
247 * h2c - internal H2 connection
248 * conn - external connection
249 *
250 */
251static const struct trace_event h2_trace_events[] = {
252#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200253 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200254#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200255 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200256#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200257 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200258#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200259 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200260#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200261 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200262#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200263 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200264#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200265 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200266#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200267 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200268#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200269 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200270#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200271 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200272#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200273 { .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 +0200274#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200275 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200276#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200277 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200278#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200279 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200280#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200281 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200282#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200283 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200284#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200285 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200286#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200287 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200288#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200289 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200290#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200291 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200292#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200293 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200294#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200295 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200296#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200297 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200298#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200299 { .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 +0200300#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200301 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200302#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200303 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200304#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200305 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200306#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200307 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200308#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200309 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200310#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200311 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200312#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200313 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200314#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200315 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200316#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200317 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200318#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200319 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200320#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200321 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200322#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200323 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200324#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200325 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200326#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200327 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200328#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200329 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200330#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200331 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200332#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200333 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200334#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200335 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200336#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200337 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200338#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200339 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200340#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200341 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200342#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200343 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200344#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200345 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200346#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200347 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200348#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200349 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200350#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200351 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200352#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200353 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200354#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200355 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200356 { }
357};
358
359static const struct name_desc h2_trace_lockon_args[4] = {
360 /* arg1 */ { /* already used by the connection */ },
361 /* arg2 */ { .name="h2s", .desc="H2 stream" },
362 /* arg3 */ { },
363 /* arg4 */ { }
364};
365
366static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200367#define H2_VERB_CLEAN 1
368 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
369#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200370 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200371#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200372 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200373#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200374 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200375#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200376 { .name="complete", .desc="add full data dump when available" },
377 { /* end */ }
378};
379
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200380static struct trace_source trace_h2 __read_mostly = {
Willy Tarreau12ae2122019-08-08 18:23:12 +0200381 .name = IST("h2"),
382 .desc = "HTTP/2 multiplexer",
383 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200384 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200385 .known_events = h2_trace_events,
386 .lockon_args = h2_trace_lockon_args,
387 .decoding = h2_trace_decoding,
388 .report_events = ~0, // report everything by default
389};
390
391#define TRACE_SOURCE &trace_h2
392INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
393
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100394/* h2 stats module */
395enum {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100396 H2_ST_HEADERS_RCVD,
397 H2_ST_DATA_RCVD,
398 H2_ST_SETTINGS_RCVD,
399 H2_ST_RST_STREAM_RCVD,
400 H2_ST_GOAWAY_RCVD,
401
Amaury Denoyellea8879232020-10-27 17:16:03 +0100402 H2_ST_CONN_PROTO_ERR,
403 H2_ST_STRM_PROTO_ERR,
404 H2_ST_RST_STREAM_RESP,
405 H2_ST_GOAWAY_RESP,
406
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100407 H2_ST_OPEN_CONN,
408 H2_ST_OPEN_STREAM,
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100409 H2_ST_TOTAL_CONN,
410 H2_ST_TOTAL_STREAM,
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100411
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100412 H2_STATS_COUNT /* must be the last member of the enum */
413};
414
415static struct name_desc h2_stats[] = {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100416 [H2_ST_HEADERS_RCVD] = { .name = "h2_headers_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100417 .desc = "Total number of received HEADERS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100418 [H2_ST_DATA_RCVD] = { .name = "h2_data_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100419 .desc = "Total number of received DATA frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100420 [H2_ST_SETTINGS_RCVD] = { .name = "h2_settings_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100421 .desc = "Total number of received SETTINGS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100422 [H2_ST_RST_STREAM_RCVD] = { .name = "h2_rst_stream_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100423 .desc = "Total number of received RST_STREAM frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100424 [H2_ST_GOAWAY_RCVD] = { .name = "h2_goaway_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100425 .desc = "Total number of received GOAWAY frames" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100426
427 [H2_ST_CONN_PROTO_ERR] = { .name = "h2_detected_conn_protocol_errors",
428 .desc = "Total number of connection protocol errors" },
429 [H2_ST_STRM_PROTO_ERR] = { .name = "h2_detected_strm_protocol_errors",
430 .desc = "Total number of stream protocol errors" },
431 [H2_ST_RST_STREAM_RESP] = { .name = "h2_rst_stream_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100432 .desc = "Total number of RST_STREAM sent on detected error" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100433 [H2_ST_GOAWAY_RESP] = { .name = "h2_goaway_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100434 .desc = "Total number of GOAWAY sent on detected error" },
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100435
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100436 [H2_ST_OPEN_CONN] = { .name = "h2_open_connections",
437 .desc = "Count of currently open connections" },
438 [H2_ST_OPEN_STREAM] = { .name = "h2_backend_open_streams",
439 .desc = "Count of currently open streams" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100440 [H2_ST_TOTAL_CONN] = { .name = "h2_total_connections",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100441 .desc = "Total number of connections" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100442 [H2_ST_TOTAL_STREAM] = { .name = "h2_backend_total_streams",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100443 .desc = "Total number of streams" },
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100444};
445
446static struct h2_counters {
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100447 long long headers_rcvd; /* total number of HEADERS frame received */
448 long long data_rcvd; /* total number of DATA frame received */
449 long long settings_rcvd; /* total number of SETTINGS frame received */
450 long long rst_stream_rcvd; /* total number of RST_STREAM frame received */
451 long long goaway_rcvd; /* total number of GOAWAY frame received */
Amaury Denoyellea8879232020-10-27 17:16:03 +0100452
453 long long conn_proto_err; /* total number of protocol errors detected */
454 long long strm_proto_err; /* total number of protocol errors detected */
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100455 long long rst_stream_resp; /* total number of RST_STREAM frame sent on error */
456 long long goaway_resp; /* total number of GOAWAY frame sent on error */
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100457
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100458 long long open_conns; /* count of currently open connections */
459 long long open_streams; /* count of currently open streams */
460 long long total_conns; /* total number of connections */
461 long long total_streams; /* total number of streams */
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100462} h2_counters;
463
464static void h2_fill_stats(void *data, struct field *stats)
465{
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100466 struct h2_counters *counters = data;
467
468 stats[H2_ST_HEADERS_RCVD] = mkf_u64(FN_COUNTER, counters->headers_rcvd);
469 stats[H2_ST_DATA_RCVD] = mkf_u64(FN_COUNTER, counters->data_rcvd);
470 stats[H2_ST_SETTINGS_RCVD] = mkf_u64(FN_COUNTER, counters->settings_rcvd);
471 stats[H2_ST_RST_STREAM_RCVD] = mkf_u64(FN_COUNTER, counters->rst_stream_rcvd);
472 stats[H2_ST_GOAWAY_RCVD] = mkf_u64(FN_COUNTER, counters->goaway_rcvd);
Amaury Denoyellea8879232020-10-27 17:16:03 +0100473
474 stats[H2_ST_CONN_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->conn_proto_err);
475 stats[H2_ST_STRM_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->strm_proto_err);
476 stats[H2_ST_RST_STREAM_RESP] = mkf_u64(FN_COUNTER, counters->rst_stream_resp);
477 stats[H2_ST_GOAWAY_RESP] = mkf_u64(FN_COUNTER, counters->goaway_resp);
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100478
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100479 stats[H2_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
480 stats[H2_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
481 stats[H2_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
482 stats[H2_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100483}
484
485static struct stats_module h2_stats_module = {
486 .name = "h2",
487 .fill_stats = h2_fill_stats,
488 .stats = h2_stats,
489 .stats_count = H2_STATS_COUNT,
490 .counters = &h2_counters,
491 .counters_size = sizeof(h2_counters),
492 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
493 .clearable = 1,
494};
495
496INITCALL1(STG_REGISTER, stats_register_module, &h2_stats_module);
497
Willy Tarreau8ceae722018-11-26 11:58:30 +0100498/* the h2c connection pool */
499DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
500
501/* the h2s stream pool */
502DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
503
Willy Tarreaudc572362018-12-12 08:08:05 +0100504/* The default connection window size is 65535, it may only be enlarged using
505 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
506 * we'll pretend we already received the difference between the two to send
507 * an equivalent window update to enlarge it to 2G-1.
508 */
509#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
510
Willy Tarreau455d5682019-05-24 19:42:18 +0200511/* maximum amount of data we're OK with re-aligning for buffer optimizations */
512#define MAX_DATA_REALIGN 1024
513
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200514/* a few settings from the global section */
515static int h2_settings_header_table_size = 4096; /* initial value */
Willy Tarreaue6baec02017-07-27 11:45:11 +0200516static int h2_settings_initial_window_size = 65535; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100517static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100518static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200519
Willy Tarreau2a856182017-05-16 15:20:39 +0200520/* a dmumy closed stream */
521static const struct h2s *h2_closed_stream = &(const struct h2s){
522 .cs = NULL,
523 .h2c = NULL,
524 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100525 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100526 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200527 .id = 0,
528};
529
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100530/* a dmumy closed stream returning a PROTOCOL_ERROR error */
531static const struct h2s *h2_error_stream = &(const struct h2s){
532 .cs = NULL,
533 .h2c = NULL,
534 .st = H2_SS_CLOSED,
535 .errcode = H2_ERR_PROTOCOL_ERROR,
536 .flags = 0,
537 .id = 0,
538};
539
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100540/* a dmumy closed stream returning a REFUSED_STREAM error */
541static const struct h2s *h2_refused_stream = &(const struct h2s){
542 .cs = NULL,
543 .h2c = NULL,
544 .st = H2_SS_CLOSED,
545 .errcode = H2_ERR_REFUSED_STREAM,
546 .flags = 0,
547 .id = 0,
548};
549
Willy Tarreau2a856182017-05-16 15:20:39 +0200550/* and a dummy idle stream for use with any unannounced stream */
551static const struct h2s *h2_idle_stream = &(const struct h2s){
552 .cs = NULL,
553 .h2c = NULL,
554 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100555 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200556 .id = 0,
557};
558
Willy Tarreau144f84a2021-03-02 16:09:26 +0100559struct task *h2_timeout_task(struct task *t, void *context, unsigned int state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200560static int h2_send(struct h2c *h2c);
561static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200562static int h2_process(struct h2c *h2c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100563/* h2_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100564struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100565static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Amaury Denoyelle74162742020-12-11 17:53:05 +0100566static 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 +0100567static int h2_frt_transfer_data(struct h2s *h2s);
Willy Tarreau144f84a2021-03-02 16:09:26 +0100568struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state);
Olivier Houchardf502aca2018-12-14 19:42:40 +0100569static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100570static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200571
Willy Tarreauab2ec452019-08-30 07:07:08 +0200572/* returns a h2c state as an abbreviated 3-letter string, or "???" if unknown */
573static inline const char *h2c_st_to_str(enum h2_cs st)
574{
575 switch (st) {
576 case H2_CS_PREFACE: return "PRF";
577 case H2_CS_SETTINGS1: return "STG";
578 case H2_CS_FRAME_H: return "FRH";
579 case H2_CS_FRAME_P: return "FRP";
580 case H2_CS_FRAME_A: return "FRA";
581 case H2_CS_FRAME_E: return "FRE";
582 case H2_CS_ERROR: return "ERR";
583 case H2_CS_ERROR2: return "ER2";
584 default: return "???";
585 }
586}
587
588/* returns a h2s state as an abbreviated 3-letter string, or "???" if unknown */
589static inline const char *h2s_st_to_str(enum h2_ss st)
590{
591 switch (st) {
592 case H2_SS_IDLE: return "IDL"; // idle
593 case H2_SS_RLOC: return "RSL"; // reserved local
594 case H2_SS_RREM: return "RSR"; // reserved remote
595 case H2_SS_OPEN: return "OPN"; // open
596 case H2_SS_HREM: return "HCR"; // half-closed remote
597 case H2_SS_HLOC: return "HCL"; // half-closed local
598 case H2_SS_ERROR : return "ERR"; // error
599 case H2_SS_CLOSED: return "CLO"; // closed
600 default: return "???";
601 }
602}
603
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200604/* the H2 traces always expect that arg1, if non-null, is of type connection
605 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
606 * that arg3, if non-null, is either of type htx for tx headers, or of type
607 * buffer for everything else.
608 */
609static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
610 const struct ist where, const struct ist func,
611 const void *a1, const void *a2, const void *a3, const void *a4)
612{
613 const struct connection *conn = a1;
614 const struct h2c *h2c = conn ? conn->ctx : NULL;
615 const struct h2s *h2s = a2;
616 const struct buffer *buf = a3;
617 const struct htx *htx;
618 int pos;
619
620 if (!h2c) // nothing to add
621 return;
622
Willy Tarreau17104d42019-08-30 07:12:55 +0200623 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200624 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
625
Willy Tarreaue2f68e92021-06-16 17:47:24 +0200626 if (mask & H2_EV_H2C_NEW) // inside h2_init, otherwise it's hard to match conn & h2c
627 conn_append_debug_info(&trace_buf, conn, " : ");
628
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100629 if (h2c->errcode)
630 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
631
Willy Tarreau73db4342019-09-25 07:28:44 +0200632 if (h2c->dsi >= 0 &&
633 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
Willy Tarreau8520d872020-09-18 07:39:29 +0200634 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 +0200635 }
636
637 if (h2s) {
638 if (h2s->id <= 0)
639 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
640 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100641 if (h2s->id && h2s->errcode)
642 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200643 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200644 }
645
646 /* Let's dump decoded requests and responses right after parsing. They
647 * are traced at level USER with a few recognizable flags.
648 */
649 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
650 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
651 htx = htxbuf(buf); // recv req/res
652 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
653 htx = a3; // send req/res
654 else
655 htx = NULL;
656
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200657 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200658 const struct htx_blk *blk = htx_get_blk(htx, pos);
659 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
660 enum htx_blk_type type = htx_get_blk_type(blk);
661
662 if (type == HTX_BLK_REQ_SL)
663 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200664 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200665 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
666 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
667 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
668 else if (type == HTX_BLK_RES_SL)
669 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200670 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200671 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
672 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
673 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
674 }
675}
676
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200677
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100678/* Detect a pending read0 for a H2 connection. It happens if a read0 was
679 * already reported on a previous xprt->rcvbuf() AND a frame parser failed
680 * to parse pending data, confirming no more progress is possible because
681 * we're facing a truncated frame. The function returns 1 to report a read0
682 * or 0 otherwise.
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200683 */
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100684static inline int h2c_read0_pending(struct h2c *h2c)
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200685{
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100686 return !!(h2c->flags & H2_CF_END_REACHED);
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200687}
688
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200689/* returns true if the connection is allowed to expire, false otherwise. A
690 * connection may expire when:
691 * - it has no stream
692 * - it has data in the mux buffer
693 * - it has streams in the blocked list
694 * - it has streams in the fctl list
695 * - it has streams in the send list
696 * Otherwise it means some streams are waiting in the data layer and it should
697 * not expire.
698 */
699static inline int h2c_may_expire(const struct h2c *h2c)
700{
701 return eb_is_empty(&h2c->streams_by_id) ||
702 br_data(h2c->mbuf) ||
703 !LIST_ISEMPTY(&h2c->blocked_list) ||
704 !LIST_ISEMPTY(&h2c->fctl_list) ||
Willy Tarreaud9464162020-01-10 18:25:07 +0100705 !LIST_ISEMPTY(&h2c->send_list);
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200706}
707
Olivier Houchard7a977432019-03-21 15:47:13 +0100708static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200709h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100710{
711 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
712 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
713 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
714 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200715 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100716 (conn_xprt_read0_pending(h2c->conn) ||
717 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
718 return 1;
719
720 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100721}
722
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200723/*****************************************************/
724/* functions below are for dynamic buffer management */
725/*****************************************************/
726
Willy Tarreau315d8072017-12-10 22:17:57 +0100727/* indicates whether or not the we may call the h2_recv() function to attempt
728 * to receive data into the buffer and/or demux pending data. The condition is
729 * a bit complex due to some API limits for now. The rules are the following :
730 * - if an error or a shutdown was detected on the connection and the buffer
731 * is empty, we must not attempt to receive
732 * - if the demux buf failed to be allocated, we must not try to receive and
733 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100734 * - if no flag indicates a blocking condition, we may attempt to receive,
735 * regardless of whether the demux buffer is full or not, so that only
736 * de demux part decides whether or not to block. This is needed because
737 * the connection API indeed prevents us from re-enabling receipt that is
738 * already enabled in a polled state, so we must always immediately stop
739 * as soon as the demux can't proceed so as never to hit an end of read
740 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100741 * - otherwise must may not attempt
742 */
743static inline int h2_recv_allowed(const struct h2c *h2c)
744{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200745 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100746 (h2c->st0 >= H2_CS_ERROR ||
747 h2c->conn->flags & CO_FL_ERROR ||
748 conn_xprt_read0_pending(h2c->conn)))
749 return 0;
750
751 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100752 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100753 return 1;
754
755 return 0;
756}
757
Willy Tarreau47b515a2018-12-21 16:09:41 +0100758/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200759static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100760{
761 if (!h2_recv_allowed(h2c))
762 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200763 if ((!consider_buffer || !b_data(&h2c->dbuf))
764 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100765 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200766 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100767}
768
769
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100770/* returns true if the front connection has too many conn_streams attached */
771static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200772{
Willy Tarreaua8754662018-12-23 20:43:58 +0100773 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200774}
775
Willy Tarreau44e973f2018-03-01 17:49:30 +0100776/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
777 * flags are used to figure what buffer was requested. It returns 1 if the
778 * allocation succeeds, in which case the connection is woken up, or 0 if it's
779 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200780 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100781static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200782{
783 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100784 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200785
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100786 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc(&h2c->dbuf)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200787 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200788 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200789 return 1;
790 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200791
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100792 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc(br_tail(h2c->mbuf))) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100793 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200794
795 if (h2c->flags & H2_CF_DEM_MROOM) {
796 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200797 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200798 }
Willy Tarreau14398122017-09-22 14:26:04 +0200799 return 1;
800 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100801
802 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
803 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100804 b_alloc(&h2s->rxbuf)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100805 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200806 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100807 return 1;
808 }
809
Willy Tarreau14398122017-09-22 14:26:04 +0200810 return 0;
811}
812
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200813static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200814{
815 struct buffer *buf = NULL;
816
Willy Tarreau2b718102021-04-21 07:32:39 +0200817 if (likely(!LIST_INLIST(&h2c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100818 unlikely((buf = b_alloc(bptr)) == NULL)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100819 h2c->buf_wait.target = h2c;
820 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreau2b718102021-04-21 07:32:39 +0200821 LIST_APPEND(&ti->buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200822 }
823 return buf;
824}
825
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200826static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200827{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200828 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100829 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100830 offer_buffers(NULL, 1);
Willy Tarreau14398122017-09-22 14:26:04 +0200831 }
832}
833
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200834static inline void h2_release_mbuf(struct h2c *h2c)
835{
836 struct buffer *buf;
837 unsigned int count = 0;
838
839 while (b_size(buf = br_head_pick(h2c->mbuf))) {
840 b_free(buf);
841 count++;
842 }
843 if (count)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100844 offer_buffers(NULL, count);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200845}
846
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100847/* returns the number of allocatable outgoing streams for the connection taking
848 * the last_sid and the reserved ones into account.
849 */
850static inline int h2_streams_left(const struct h2c *h2c)
851{
852 int ret;
853
854 /* consider the number of outgoing streams we're allowed to create before
855 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
856 * nb_reserved is the number of streams which don't yet have an ID.
857 */
858 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
859 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
860 if (ret < 0)
861 ret = 0;
862 return ret;
863}
864
Willy Tarreau00f18a32019-01-26 12:19:01 +0100865/* returns the number of streams in use on a connection to figure if it's
866 * idle or not. We check nb_cs and not nb_streams as the caller will want
867 * to know if it was the last one after a detach().
868 */
869static int h2_used_streams(struct connection *conn)
870{
871 struct h2c *h2c = conn->ctx;
872
873 return h2c->nb_cs;
874}
875
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100876/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100877static int h2_avail_streams(struct connection *conn)
878{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100879 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100880 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100881 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100882
Willy Tarreau6afec462019-01-28 06:40:19 +0100883 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
884 * streams on the connection.
885 */
886 if (h2c->last_sid >= 0)
887 return 0;
888
Willy Tarreauc61966f2019-10-31 15:10:03 +0100889 if (h2c->st0 >= H2_CS_ERROR)
890 return 0;
891
Willy Tarreau86949782019-01-31 10:42:05 +0100892 /* note: may be negative if a SETTINGS frame changes the limit */
893 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100894
895 /* we must also consider the limit imposed by stream IDs */
896 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100897 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100898 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100899 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
900 ret1 = MIN(ret1, ret2);
901 }
902 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100903}
904
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200905
Willy Tarreau62f52692017-10-08 23:01:42 +0200906/*****************************************************************/
907/* functions below are dedicated to the mux setup and management */
908/*****************************************************************/
909
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200910/* Initialize the mux once it's attached. For outgoing connections, the context
911 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200912 * connections from the fact that the context is still NULL (even during mux
913 * upgrades). <input> is always used as Input buffer and may contain data. It is
914 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200915 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200916static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
917 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200918{
919 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100920 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200921 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200922
Christopher Fauletf81ef032019-10-04 15:19:43 +0200923 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200924
Willy Tarreaubafbe012017-11-24 17:34:44 +0100925 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200926 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200927 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200928
Christopher Faulete9b70722019-04-08 10:46:02 +0200929 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200930 h2c->flags = H2_CF_IS_BACK;
931 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
932 if (tick_isset(prx->timeout.serverfin))
933 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100934
935 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
936 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200937 } else {
938 h2c->flags = H2_CF_NONE;
939 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
940 if (tick_isset(prx->timeout.clientfin))
941 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100942
943 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
944 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200945 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100946
Willy Tarreau0b37d652018-10-03 10:33:02 +0200947 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100948 h2c->task = NULL;
Willy Tarreau3f133572017-10-31 19:21:06 +0100949 if (tick_isset(h2c->timeout)) {
950 t = task_new(tid_bit);
951 if (!t)
952 goto fail;
953
954 h2c->task = t;
955 t->process = h2_timeout_task;
956 t->context = h2c;
957 t->expire = tick_add(now_ms, h2c->timeout);
958 }
Willy Tarreauea392822017-10-31 10:02:25 +0100959
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200960 h2c->wait_event.tasklet = tasklet_new();
961 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200962 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200963 h2c->wait_event.tasklet->process = h2_io_cb;
964 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100965 h2c->wait_event.events = 0;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200966 if (!conn_is_back(conn)) {
967 /* Connection might already be in the stopping_list if subject
968 * to h1->h2 upgrade.
969 */
970 if (!LIST_INLIST(&conn->stopping_list)) {
971 LIST_APPEND(&mux_stopping_data[tid].list,
972 &conn->stopping_list);
973 }
974 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200975
Willy Tarreau2bdcc702020-05-19 11:31:11 +0200976 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +0200977 if (!h2c->ddht)
978 goto fail;
979
980 /* Initialise the context. */
981 h2c->st0 = H2_CS_PREFACE;
982 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100983 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200984 h2c->max_id = -1;
985 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100986 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200987 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +0100988 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200989 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100990 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100991 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200992
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200993 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200994 h2c->dsi = -1;
995 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100996
Willy Tarreau32218eb2017-09-22 08:07:25 +0200997 h2c->last_sid = -1;
998
Willy Tarreau51330962019-05-26 09:38:07 +0200999 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +02001000 h2c->miw = 65535; /* mux initial window size */
1001 h2c->mws = 65535; /* mux window size */
1002 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +02001003 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001004 LIST_INIT(&h2c->send_list);
1005 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02001006 LIST_INIT(&h2c->blocked_list);
Willy Tarreau90f366b2021-02-20 11:49:49 +01001007 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001008
Christopher Fauletf81ef032019-10-04 15:19:43 +02001009 conn->ctx = h2c;
1010
Willy Tarreaue2f68e92021-06-16 17:47:24 +02001011 TRACE_USER("new H2 connection", H2_EV_H2C_NEW, conn);
1012
Willy Tarreau3f133572017-10-31 19:21:06 +01001013 if (t)
1014 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +01001015
Willy Tarreau01b44822018-10-03 14:26:37 +02001016 if (h2c->flags & H2_CF_IS_BACK) {
1017 /* FIXME: this is temporary, for outgoing connections we need
1018 * to immediately allocate a stream until the code is modified
1019 * so that the caller calls ->attach(). For now the outgoing cs
Christopher Fauletf81ef032019-10-04 15:19:43 +02001020 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +02001021 */
1022 struct h2s *h2s;
1023
Christopher Fauletf81ef032019-10-04 15:19:43 +02001024 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +02001025 if (!h2s)
1026 goto fail_stream;
1027 }
1028
Willy Tarreau4781b152021-04-06 13:53:36 +02001029 HA_ATOMIC_INC(&h2c->px_counters->open_conns);
1030 HA_ATOMIC_INC(&h2c->px_counters->total_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001031
Willy Tarreau0f383582018-10-03 14:22:21 +02001032 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02001033 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001034 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001035 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +02001036 fail_stream:
1037 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +02001038 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001039 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001040 if (h2c->wait_event.tasklet)
1041 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001042 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +02001043 fail_no_h2c:
Willy Tarreau8802bf12022-01-12 17:24:26 +01001044 if (!conn_is_back(conn))
1045 LIST_DEL_INIT(&conn->stopping_list);
Christopher Fauletf81ef032019-10-04 15:19:43 +02001046 conn->ctx = conn_ctx; /* restore saved ctx */
1047 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001048 return -1;
1049}
1050
Willy Tarreau751f2d02018-10-05 09:35:00 +02001051/* returns the next allocatable outgoing stream ID for the H2 connection, or
1052 * -1 if no more is allocatable.
1053 */
1054static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1055{
1056 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001057
1058 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001059 id = -1;
1060 return id;
1061}
1062
Willy Tarreau2373acc2017-10-12 17:35:14 +02001063/* returns the stream associated with id <id> or NULL if not found */
1064static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1065{
1066 struct eb32_node *node;
1067
Willy Tarreau751f2d02018-10-05 09:35:00 +02001068 if (id == 0)
1069 return (struct h2s *)h2_closed_stream;
1070
Willy Tarreau2a856182017-05-16 15:20:39 +02001071 if (id > h2c->max_id)
1072 return (struct h2s *)h2_idle_stream;
1073
Willy Tarreau2373acc2017-10-12 17:35:14 +02001074 node = eb32_lookup(&h2c->streams_by_id, id);
1075 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001076 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001077
1078 return container_of(node, struct h2s, by_id);
1079}
1080
Christopher Faulet73c12072019-04-08 11:23:22 +02001081/* release function. This one should be called to free all resources allocated
1082 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001083 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001084static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001085{
William Dauchy477757c2020-08-07 22:19:23 +02001086 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001087
Willy Tarreau7838a792019-08-12 18:42:03 +02001088 TRACE_ENTER(H2_EV_H2C_END);
1089
Willy Tarreau32218eb2017-09-22 08:07:25 +02001090 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +02001091 /* The connection must be aattached to this mux to be released */
1092 if (h2c->conn && h2c->conn->ctx == h2c)
1093 conn = h2c->conn;
1094
Willy Tarreau7838a792019-08-12 18:42:03 +02001095 TRACE_DEVEL("freeing h2c", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001096 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +02001097
Willy Tarreau2b718102021-04-21 07:32:39 +02001098 if (LIST_INLIST(&h2c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +01001099 LIST_DEL_INIT(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001100
Willy Tarreau44e973f2018-03-01 17:49:30 +01001101 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +02001102 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +01001103
Willy Tarreauea392822017-10-31 10:02:25 +01001104 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +02001105 h2c->task->context = NULL;
1106 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +01001107 h2c->task = NULL;
1108 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001109 if (h2c->wait_event.tasklet)
1110 tasklet_free(h2c->wait_event.tasklet);
Christopher Faulet21d849f2019-09-18 11:07:20 +02001111 if (conn && h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001112 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Christopher Faulet21d849f2019-09-18 11:07:20 +02001113 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001114
Willy Tarreau4781b152021-04-06 13:53:36 +02001115 HA_ATOMIC_DEC(&h2c->px_counters->open_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001116
Willy Tarreaubafbe012017-11-24 17:34:44 +01001117 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001118 }
1119
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001120 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001121 if (!conn_is_back(conn))
1122 LIST_DEL_INIT(&conn->stopping_list);
1123
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001124 conn->mux = NULL;
1125 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001126 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001127
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001128 conn_stop_tracking(conn);
Willy Tarreaudaa0e5f2021-10-21 22:24:31 +02001129
1130 /* there might be a GOAWAY frame still pending in the TCP
1131 * stack, and if the peer continues to send (i.e. window
1132 * updates etc), this can result in losing the GOAWAY. For
1133 * this reason we try to drain anything received in between.
1134 */
1135 conn->flags |= CO_FL_WANT_DRAIN;
1136
1137 conn_xprt_shutw(conn);
1138 conn_xprt_close(conn);
1139 conn_sock_shutw(conn, !conn_is_back(conn));
1140 conn_ctrl_close(conn);
1141
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001142 if (conn->destroy_cb)
1143 conn->destroy_cb(conn);
1144 conn_free(conn);
1145 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001146
1147 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001148}
1149
1150
Willy Tarreau71681172017-10-23 14:39:06 +02001151/******************************************************/
1152/* functions below are for the H2 protocol processing */
1153/******************************************************/
1154
1155/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001156static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001157{
1158 return h2s ? h2s->id : 0;
1159}
1160
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001161/* returns the sum of the stream's own window size and the mux's initial
1162 * window, which together form the stream's effective window size.
1163 */
1164static inline int h2s_mws(const struct h2s *h2s)
1165{
1166 return h2s->sws + h2s->h2c->miw;
1167}
1168
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001169/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001170static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001171{
1172 if (h2c->msi < 0)
1173 return 0;
1174
1175 if (h2c->msi == h2s_id(h2s))
1176 return 0;
1177
1178 return 1;
1179}
1180
Willy Tarreau741d6df2017-10-17 08:00:59 +02001181/* marks an error on the connection */
Willy Tarreau1f094672017-11-20 21:27:45 +01001182static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001183{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001184 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001185 h2c->errcode = err;
1186 h2c->st0 = H2_CS_ERROR;
1187}
1188
Willy Tarreau175cebb2019-01-24 10:02:24 +01001189/* marks an error on the stream. It may also update an already closed stream
1190 * (e.g. to report an error after an RST was received).
1191 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001192static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001193{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001194 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001195 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001196 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001197 if (h2s->st < H2_SS_ERROR)
1198 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +01001199 if (h2s->cs)
1200 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001201 }
1202}
1203
Willy Tarreau7e094452018-12-19 18:08:52 +01001204/* attempt to notify the data layer of recv availability */
1205static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1206{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001207 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001208 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001209 tasklet_wakeup(h2s->subs->tasklet);
1210 h2s->subs->events &= ~SUB_RETRY_RECV;
1211 if (!h2s->subs->events)
1212 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001213 }
1214}
1215
1216/* attempt to notify the data layer of send availability */
1217static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1218{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001219 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001220 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001221 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001222 tasklet_wakeup(h2s->subs->tasklet);
1223 h2s->subs->events &= ~SUB_RETRY_SEND;
1224 if (!h2s->subs->events)
1225 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001226 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001227 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1228 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1229 tasklet_wakeup(h2s->shut_tl);
1230 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001231}
1232
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001233/* alerts the data layer, trying to wake it up by all means, following
1234 * this sequence :
1235 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1236 * - if its subscribed to send, then it's woken up for send
1237 * - if it was subscribed to neither, its ->wake() callback is called
1238 * It is safe to call this function with a closed stream which doesn't have a
1239 * conn_stream anymore.
1240 */
1241static void __maybe_unused h2s_alert(struct h2s *h2s)
1242{
Willy Tarreau7838a792019-08-12 18:42:03 +02001243 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1244
Willy Tarreauf96508a2020-01-10 11:12:48 +01001245 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001246 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001247 h2s_notify_recv(h2s);
1248 h2s_notify_send(h2s);
1249 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001250 else if (h2s->cs && h2s->cs->data_cb->wake != NULL) {
1251 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001252 h2s->cs->data_cb->wake(h2s->cs);
Willy Tarreau7838a792019-08-12 18:42:03 +02001253 }
1254
1255 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001256}
1257
Willy Tarreaue4820742017-07-27 13:37:23 +02001258/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001259static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001260{
1261 uint8_t *out = frame;
1262
1263 *out = len >> 16;
1264 write_n16(out + 1, len);
1265}
1266
Willy Tarreau54c15062017-10-10 17:10:03 +02001267/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1268 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1269 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001270 * available in the buffer's input prior to calling this function. The buffer
1271 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001272 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001273static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001274 const struct buffer *b, int o)
1275{
Willy Tarreau591d4452018-06-15 17:21:00 +02001276 readv_bytes(dst, bytes, b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001277}
1278
Willy Tarreau1f094672017-11-20 21:27:45 +01001279static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001280{
Willy Tarreau591d4452018-06-15 17:21:00 +02001281 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001282}
1283
Willy Tarreau1f094672017-11-20 21:27:45 +01001284static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001285{
Willy Tarreau591d4452018-06-15 17:21:00 +02001286 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001287}
1288
Willy Tarreau1f094672017-11-20 21:27:45 +01001289static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001290{
Willy Tarreau591d4452018-06-15 17:21:00 +02001291 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001292}
1293
1294
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001295/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1296 * The algorithm is not obvious. It turns out that H2 headers are neither
1297 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1298 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001299 *
1300 * b0 b1 b2 b3 b4 b5..b8
1301 * +----------+---------+--------+----+----+----------------------+
1302 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1303 * +----------+---------+--------+----+----+----------------------+
1304 *
1305 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1306 * we get the sid properly aligned and ordered, and 16 bits of len properly
1307 * ordered as well. The type and flags can be extracted using bit shifts from
1308 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001309 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1310 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001311 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001312static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001313{
1314 uint64_t w;
1315
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001316 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001317 return 0;
1318
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001319 w = h2_get_n64(b, o + 1);
1320 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001321 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1322 h->ff = w >> 32;
1323 h->ft = w >> 40;
1324 h->len += w >> 48;
1325 return 1;
1326}
1327
1328/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1329 * h2_peek_frame_hdr() above.
1330 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001331static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001332{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001333 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001334}
1335
1336/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001337static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001338{
1339 int ret;
1340
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001341 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001342 if (ret > 0)
1343 h2_skip_frame_hdr(b);
1344 return ret;
1345}
1346
Willy Tarreaucb985a42019-10-07 16:56:34 +02001347
1348/* try to fragment the headers frame present at the beginning of buffer <b>,
1349 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1350 * success. Typical causes of failure include a buffer not large enough to
1351 * add extra frame headers. The existing frame size is read in the current
1352 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1353 * and its length will be adjusted. The stream ID for continuation frames will
1354 * be copied from the initial frame's.
1355 */
1356static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1357{
1358 size_t remain = b->data - 9;
1359 int extra_frames = (remain - 1) / mfs;
1360 size_t fsize;
1361 char *fptr;
1362 int frame;
1363
1364 if (b->data <= mfs + 9)
1365 return 1;
1366
1367 /* Too large a frame, we need to fragment it using CONTINUATION
1368 * frames. We start from the end and move tails as needed.
1369 */
1370 if (b->data + extra_frames * 9 > b->size)
1371 return 0;
1372
1373 for (frame = extra_frames; frame; frame--) {
1374 fsize = ((remain - 1) % mfs) + 1;
1375 remain -= fsize;
1376
1377 /* move data */
1378 fptr = b->area + 9 + remain + (frame - 1) * 9;
1379 memmove(fptr + 9, b->area + 9 + remain, fsize);
1380 b->data += 9;
1381
1382 /* write new frame header */
1383 h2_set_frame_size(fptr, fsize);
1384 fptr[3] = H2_FT_CONTINUATION;
1385 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1386 write_n32(fptr + 5, read_n32(b->area + 5));
1387 }
1388
1389 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1390 h2_set_frame_size(b->area, remain);
1391 return 1;
1392}
1393
1394
Willy Tarreau00dd0782018-03-01 16:31:34 +01001395/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1396 * its connection if the stream was not yet closed. Please use this exclusively
1397 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001398 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001399static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001400{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001401 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001402 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001403 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001404 if (!h2s->id)
1405 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +01001406 if (h2s->cs) {
Willy Tarreaua27db382019-03-25 18:13:16 +01001407 if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf))
1408 h2s_notify_recv(h2s);
1409 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001410 HA_ATOMIC_DEC(&h2s->h2c->px_counters->open_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001411
Willy Tarreau7838a792019-08-12 18:42:03 +02001412 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001413 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001414 h2s->st = H2_SS_CLOSED;
1415}
1416
Willy Tarreau71049cc2018-03-28 13:56:39 +02001417/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001418/* h2s_destroy should only ever be called by the thread that owns the stream,
1419 * that means that a tasklet should be used if we want to destroy the h2s
1420 * from another thread
1421 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001422static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001423{
Willy Tarreau7838a792019-08-12 18:42:03 +02001424 struct connection *conn = h2s->h2c->conn;
1425
1426 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1427
Willy Tarreau0a10de62018-03-01 16:27:53 +01001428 h2s_close(h2s);
1429 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001430 if (b_size(&h2s->rxbuf)) {
1431 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01001432 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02001433 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001434
1435 if (h2s->subs)
1436 h2s->subs->events = 0;
1437
Joseph Herlantd77575d2018-11-25 10:54:45 -08001438 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001439 * reference left would be in the h2c send_list/fctl_list, and if
1440 * we're in it, we're getting out anyway
1441 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001442 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001443
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001444 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001445 tasklet_free(h2s->shut_tl);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001446 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001447
1448 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001449}
1450
Willy Tarreaua8e49542018-10-03 18:53:55 +02001451/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1452 * stream tree. In case of error, nothing is added and NULL is returned. The
1453 * causes of errors can be any failed memory allocation. The caller is
1454 * responsible for checking if the connection may support an extra stream
1455 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001456 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001457static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001458{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001459 struct h2s *h2s;
1460
Willy Tarreau7838a792019-08-12 18:42:03 +02001461 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1462
Willy Tarreaubafbe012017-11-24 17:34:44 +01001463 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001464 if (!h2s)
1465 goto out;
1466
Willy Tarreau5723f292020-01-10 15:16:57 +01001467 h2s->shut_tl = tasklet_new();
1468 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001469 pool_free(pool_head_h2s, h2s);
1470 goto out;
1471 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001472 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001473 h2s->shut_tl->process = h2_deferred_shut;
1474 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001475 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001476 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001477 h2s->cs = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001478 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001479 h2s->flags = H2_SF_NONE;
1480 h2s->errcode = H2_ERR_NO_ERROR;
1481 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001482 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001483 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001484 h2s->rxbuf = BUF_NULL;
Amaury Denoyelle74162742020-12-11 17:53:05 +01001485 memset(h2s->upgrade_protocol, 0, sizeof(h2s->upgrade_protocol));
Willy Tarreau751f2d02018-10-05 09:35:00 +02001486
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001487 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001488 if (id > 0)
1489 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001490 else
1491 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001492
1493 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001494 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001495 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001496
Willy Tarreau4781b152021-04-06 13:53:36 +02001497 HA_ATOMIC_INC(&h2c->px_counters->open_streams);
1498 HA_ATOMIC_INC(&h2c->px_counters->total_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001499
Willy Tarreau7838a792019-08-12 18:42:03 +02001500 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001501 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001502 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001503 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001504 return NULL;
1505}
1506
1507/* creates a new stream <id> on the h2c connection and returns it, or NULL in
Christopher Faulet7d013e72020-12-15 16:56:50 +01001508 * case of memory allocation error. <input> is used as input buffer for the new
1509 * stream. On success, it is transferred to the stream and the mux is no longer
1510 * responsible of it. On error, <input> is unchanged, thus the mux must still
1511 * take care of it.
Willy Tarreaua8e49542018-10-03 18:53:55 +02001512 */
Amaury Denoyelleee7fcd52021-10-18 14:45:49 +02001513static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id, struct buffer *input, uint32_t flags)
Willy Tarreaua8e49542018-10-03 18:53:55 +02001514{
1515 struct session *sess = h2c->conn->owner;
1516 struct conn_stream *cs;
1517 struct h2s *h2s;
1518
Willy Tarreau7838a792019-08-12 18:42:03 +02001519 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1520
Willy Tarreaua8e49542018-10-03 18:53:55 +02001521 if (h2c->nb_streams >= h2_settings_max_concurrent_streams)
1522 goto out;
1523
1524 h2s = h2s_new(h2c, id);
1525 if (!h2s)
1526 goto out;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001527
Christopher Faulet236c93b2020-07-02 09:19:54 +02001528 cs = cs_new(h2c->conn, h2c->conn->target);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001529 if (!cs)
1530 goto out_close;
1531
Olivier Houchard746fb772018-12-15 19:42:00 +01001532 cs->flags |= CS_FL_NOT_FIRST;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001533 h2s->cs = cs;
1534 cs->ctx = h2s;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001535 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001536
Amaury Denoyelleee7fcd52021-10-18 14:45:49 +02001537 /* FIXME wrong analogy between ext-connect and websocket, this need to
1538 * be refine.
1539 */
1540 if (flags & H2_SF_EXT_CONNECT_RCVD)
1541 cs->flags |= CS_FL_WEBSOCKET;
1542
Christopher Faulet7d013e72020-12-15 16:56:50 +01001543 if (stream_create_from_cs(cs, input) < 0)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001544 goto out_free_cs;
1545
Willy Tarreau590a0512018-09-05 11:56:48 +02001546 /* We want the accept date presented to the next stream to be the one
1547 * we have now, the handshake time to be null (since the next stream
1548 * is not delayed by a handshake), and the idle time to count since
1549 * right now.
1550 */
1551 sess->accept_date = date;
1552 sess->tv_accept = now;
1553 sess->t_handshake = 0;
1554
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001555 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001556 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001557 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001558 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001559 return h2s;
1560
1561 out_free_cs:
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001562 h2c->nb_cs--;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001563 cs_free(cs);
Olivier Houchard58d87f32019-05-29 16:44:17 +02001564 h2s->cs = NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001565 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001566 h2s_destroy(h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001567 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001568 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001569 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001570 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001571}
1572
Willy Tarreau751f2d02018-10-05 09:35:00 +02001573/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1574 * and returns it, or NULL in case of memory allocation error or if the highest
1575 * possible stream ID was reached.
1576 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001577static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001578{
1579 struct h2s *h2s = NULL;
1580
Willy Tarreau7838a792019-08-12 18:42:03 +02001581 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1582
Willy Tarreau86949782019-01-31 10:42:05 +01001583 if (h2c->nb_streams >= h2c->streams_limit)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001584 goto out;
1585
Willy Tarreaua80dca82019-01-24 17:08:28 +01001586 if (h2_streams_left(h2c) < 1)
1587 goto out;
1588
Willy Tarreau751f2d02018-10-05 09:35:00 +02001589 /* Defer choosing the ID until we send the first message to create the stream */
1590 h2s = h2s_new(h2c, 0);
1591 if (!h2s)
1592 goto out;
1593
1594 h2s->cs = cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001595 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001596 cs->ctx = h2s;
1597 h2c->nb_cs++;
1598
Willy Tarreau751f2d02018-10-05 09:35:00 +02001599 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001600 if (likely(h2s))
1601 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1602 else
1603 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001604 return h2s;
1605}
1606
Willy Tarreaube5b7152017-09-25 16:25:39 +02001607/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1608 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1609 * the various settings codes.
1610 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001611static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001612{
1613 struct buffer *res;
1614 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001615 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001616 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001617 int ret = 0;
1618
1619 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001620
1621 if (h2c_mux_busy(h2c, NULL)) {
1622 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001623 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001624 }
1625
Willy Tarreaube5b7152017-09-25 16:25:39 +02001626 chunk_init(&buf, buf_data, sizeof(buf_data));
1627 chunk_memcpy(&buf,
1628 "\x00\x00\x00" /* length : 0 for now */
1629 "\x04\x00" /* type : 4 (settings), flags : 0 */
1630 "\x00\x00\x00\x00", /* stream ID : 0 */
1631 9);
1632
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001633 if (h2c->flags & H2_CF_IS_BACK) {
1634 /* send settings_enable_push=0 */
1635 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1636 }
1637
Amaury Denoyelle0ea2c4f2021-07-09 17:14:30 +02001638 /* rfc 8441 #3 SETTINGS_ENABLE_CONNECT_PROTOCOL=1,
1639 * sent automatically unless disabled in the global config */
1640 if (!(global.tune.options & GTUNE_DISABLE_H2_WEBSOCKET))
1641 chunk_memcat(&buf, "\x00\x08\x00\x00\x00\x01", 6);
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01001642
Willy Tarreaube5b7152017-09-25 16:25:39 +02001643 if (h2_settings_header_table_size != 4096) {
1644 char str[6] = "\x00\x01"; /* header_table_size */
1645
1646 write_n32(str + 2, h2_settings_header_table_size);
1647 chunk_memcat(&buf, str, 6);
1648 }
1649
1650 if (h2_settings_initial_window_size != 65535) {
1651 char str[6] = "\x00\x04"; /* initial_window_size */
1652
1653 write_n32(str + 2, h2_settings_initial_window_size);
1654 chunk_memcat(&buf, str, 6);
1655 }
1656
1657 if (h2_settings_max_concurrent_streams != 0) {
1658 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1659
1660 /* Note: 0 means "unlimited" for haproxy's config but not for
1661 * the protocol, so never send this value!
1662 */
1663 write_n32(str + 2, h2_settings_max_concurrent_streams);
1664 chunk_memcat(&buf, str, 6);
1665 }
1666
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001667 mfs = h2_settings_max_frame_size;
1668 if (mfs > global.tune.bufsize)
1669 mfs = global.tune.bufsize;
1670
1671 if (!mfs)
1672 mfs = global.tune.bufsize;
1673
1674 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001675 char str[6] = "\x00\x05"; /* max_frame_size */
1676
1677 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1678 * match bufsize - rewrite size, but at the moment it seems
1679 * that clients don't take care of it.
1680 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001681 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001682 chunk_memcat(&buf, str, 6);
1683 }
1684
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001685 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001686
1687 res = br_tail(h2c->mbuf);
1688 retry:
1689 if (!h2_get_buf(h2c, res)) {
1690 h2c->flags |= H2_CF_MUX_MALLOC;
1691 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001692 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001693 }
1694
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001695 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001696 if (unlikely(ret <= 0)) {
1697 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001698 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1699 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001700 h2c->flags |= H2_CF_MUX_MFULL;
1701 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001702 }
1703 else {
1704 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001705 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001706 }
1707 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001708 out:
1709 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001710 return ret;
1711}
1712
Willy Tarreau52eed752017-09-22 15:05:09 +02001713/* Try to receive a connection preface, then upon success try to send our
1714 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1715 * missing data. It may return an error in h2c.
1716 */
1717static int h2c_frt_recv_preface(struct h2c *h2c)
1718{
1719 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001720 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001721
Willy Tarreau7838a792019-08-12 18:42:03 +02001722 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1723
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001724 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001725
1726 if (unlikely(ret1 <= 0)) {
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02001727 if (!ret1)
1728 h2c->flags |= H2_CF_DEM_SHORT_READ;
Amaury Denoyellea8879232020-10-27 17:16:03 +01001729 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001730 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 +02001731 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc23d6d12021-06-17 08:08:48 +02001732 if (b_data(&h2c->dbuf) ||
1733 !(((const struct session *)h2c->conn->owner)->fe->options & PR_O_IGNORE_PRB))
1734 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001735 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001736 ret2 = 0;
1737 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001738 }
1739
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001740 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001741 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001742 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001743 out:
1744 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001745 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001746}
1747
Willy Tarreau01b44822018-10-03 14:26:37 +02001748/* Try to send a connection preface, then upon success try to send our
1749 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1750 * missing data. It may return an error in h2c.
1751 */
1752static int h2c_bck_send_preface(struct h2c *h2c)
1753{
1754 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001755 int ret = 0;
1756
1757 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001758
1759 if (h2c_mux_busy(h2c, NULL)) {
1760 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001761 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001762 }
1763
Willy Tarreaubcc45952019-05-26 10:05:50 +02001764 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001765 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001766 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001767 h2c->flags |= H2_CF_MUX_MALLOC;
1768 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001769 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001770 }
1771
1772 if (!b_data(res)) {
1773 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001774 ret = b_istput(res, ist(H2_CONN_PREFACE));
1775 if (unlikely(ret <= 0)) {
1776 if (!ret) {
1777 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1778 goto retry;
1779 h2c->flags |= H2_CF_MUX_MFULL;
1780 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001781 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001782 }
1783 else {
1784 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001785 ret = 0;
1786 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001787 }
1788 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001789 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001790 ret = h2c_send_settings(h2c);
1791 out:
1792 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1793 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001794}
1795
Willy Tarreau081d4722017-05-16 21:51:05 +02001796/* try to send a GOAWAY frame on the connection to report an error or a graceful
1797 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1798 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1799 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1800 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1801 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1802 * on unrecoverable failure. It will not attempt to send one again in this last
1803 * case so that it is safe to use h2c_error() to report such errors.
1804 */
1805static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1806{
1807 struct buffer *res;
1808 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001809 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001810
Willy Tarreau7838a792019-08-12 18:42:03 +02001811 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1812
1813 if (h2c->flags & H2_CF_GOAWAY_FAILED) {
1814 ret = 1; // claim that it worked
1815 goto out;
1816 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001817
1818 if (h2c_mux_busy(h2c, h2s)) {
1819 if (h2s)
1820 h2s->flags |= H2_SF_BLK_MBUSY;
1821 else
1822 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001823 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001824 }
1825
Willy Tarreau9c218e72019-05-26 10:08:28 +02001826 /* len: 8, type: 7, flags: none, sid: 0 */
1827 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1828
1829 if (h2c->last_sid < 0)
1830 h2c->last_sid = h2c->max_id;
1831
1832 write_n32(str + 9, h2c->last_sid);
1833 write_n32(str + 13, h2c->errcode);
1834
Willy Tarreaubcc45952019-05-26 10:05:50 +02001835 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001836 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001837 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001838 h2c->flags |= H2_CF_MUX_MALLOC;
1839 if (h2s)
1840 h2s->flags |= H2_SF_BLK_MROOM;
1841 else
1842 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001843 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001844 }
1845
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001846 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001847 if (unlikely(ret <= 0)) {
1848 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001849 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1850 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001851 h2c->flags |= H2_CF_MUX_MFULL;
1852 if (h2s)
1853 h2s->flags |= H2_SF_BLK_MROOM;
1854 else
1855 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001856 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001857 }
1858 else {
1859 /* we cannot report this error using GOAWAY, so we mark
1860 * it and claim a success.
1861 */
1862 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1863 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001864 ret = 1;
1865 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001866 }
1867 }
1868 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001869
1870 /* some codes are not for real errors, just attempts to close cleanly */
1871 switch (h2c->errcode) {
1872 case H2_ERR_NO_ERROR:
1873 case H2_ERR_ENHANCE_YOUR_CALM:
1874 case H2_ERR_REFUSED_STREAM:
1875 case H2_ERR_CANCEL:
1876 break;
1877 default:
Willy Tarreau4781b152021-04-06 13:53:36 +02001878 HA_ATOMIC_INC(&h2c->px_counters->goaway_resp);
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001879 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001880 out:
1881 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001882 return ret;
1883}
1884
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001885/* Try to send an RST_STREAM frame on the connection for the indicated stream
1886 * during mux operations. This stream must be valid and cannot be closed
1887 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1888 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1889 * not yet.
1890 *
1891 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1892 * to write the message, it subscribes the stream to future notifications.
1893 */
1894static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1895{
1896 struct buffer *res;
1897 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001898 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001899
Willy Tarreau7838a792019-08-12 18:42:03 +02001900 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1901
1902 if (!h2s || h2s->st == H2_SS_CLOSED) {
1903 ret = 1;
1904 goto out;
1905 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001906
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001907 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1908 * RST_STREAM in response to a RST_STREAM frame.
1909 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001910 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001911 ret = 1;
1912 goto ignore;
1913 }
1914
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001915 if (h2c_mux_busy(h2c, h2s)) {
1916 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001917 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001918 }
1919
Willy Tarreau9c218e72019-05-26 10:08:28 +02001920 /* len: 4, type: 3, flags: none */
1921 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1922 write_n32(str + 5, h2s->id);
1923 write_n32(str + 9, h2s->errcode);
1924
Willy Tarreaubcc45952019-05-26 10:05:50 +02001925 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001926 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001927 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001928 h2c->flags |= H2_CF_MUX_MALLOC;
1929 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001930 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001931 }
1932
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001933 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001934 if (unlikely(ret <= 0)) {
1935 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001936 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1937 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001938 h2c->flags |= H2_CF_MUX_MFULL;
1939 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001940 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001941 }
1942 else {
1943 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001944 ret = 0;
1945 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001946 }
1947 }
1948
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001949 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001950 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001951 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001952 out:
1953 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001954 return ret;
1955}
1956
1957/* Try to send an RST_STREAM frame on the connection for the stream being
1958 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001959 * error code, even if the stream is one of the dummy ones, and will update
1960 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001961 *
1962 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1963 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001964 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001965 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001966 */
1967static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1968{
1969 struct buffer *res;
1970 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001971 int ret = 0;
1972
1973 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001974
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001975 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1976 * RST_STREAM in response to a RST_STREAM frame.
1977 */
1978 if (h2c->dft == H2_FT_RST_STREAM) {
1979 ret = 1;
1980 goto ignore;
1981 }
1982
Willy Tarreau27a84c92017-10-17 08:10:17 +02001983 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001984 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001985 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001986 }
1987
Willy Tarreau9c218e72019-05-26 10:08:28 +02001988 /* len: 4, type: 3, flags: none */
1989 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1990
1991 write_n32(str + 5, h2c->dsi);
1992 write_n32(str + 9, h2s->errcode);
1993
Willy Tarreaubcc45952019-05-26 10:05:50 +02001994 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001995 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001996 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001997 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001998 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001999 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002000 }
2001
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002002 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02002003 if (unlikely(ret <= 0)) {
2004 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002005 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2006 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002007 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002008 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002009 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002010 }
2011 else {
2012 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002013 ret = 0;
2014 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002015 }
2016 }
2017
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002018 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02002019 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002020 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002021 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002022 }
2023
Willy Tarreau7838a792019-08-12 18:42:03 +02002024 out:
Willy Tarreau4781b152021-04-06 13:53:36 +02002025 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_resp);
Willy Tarreau7838a792019-08-12 18:42:03 +02002026 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002027 return ret;
2028}
2029
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002030/* try to send an empty DATA frame with the ES flag set to notify about the
2031 * end of stream and match a shutdown(write). If an ES was already sent as
2032 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
2033 * on success or zero if nothing was done. In case of lack of room to write the
2034 * message, it subscribes the requesting stream to future notifications.
2035 */
2036static int h2_send_empty_data_es(struct h2s *h2s)
2037{
2038 struct h2c *h2c = h2s->h2c;
2039 struct buffer *res;
2040 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002041 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002042
Willy Tarreau7838a792019-08-12 18:42:03 +02002043 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
2044
2045 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
2046 ret = 1;
2047 goto out;
2048 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002049
2050 if (h2c_mux_busy(h2c, h2s)) {
2051 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002052 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002053 }
2054
Willy Tarreau9c218e72019-05-26 10:08:28 +02002055 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
2056 memcpy(str, "\x00\x00\x00\x00\x01", 5);
2057 write_n32(str + 5, h2s->id);
2058
Willy Tarreaubcc45952019-05-26 10:05:50 +02002059 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002060 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002061 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002062 h2c->flags |= H2_CF_MUX_MALLOC;
2063 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002064 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002065 }
2066
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002067 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002068 if (likely(ret > 0)) {
2069 h2s->flags |= H2_SF_ES_SENT;
2070 }
2071 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002072 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2073 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002074 h2c->flags |= H2_CF_MUX_MFULL;
2075 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002076 }
2077 else {
2078 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002079 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002080 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002081 out:
2082 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002083 return ret;
2084}
2085
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002086/* wake a specific stream and assign its conn_stream some CS_FL_* flags among
Willy Tarreau99ad1b32019-05-14 11:46:28 +02002087 * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002088 * is automatically updated accordingly. If the stream is orphaned, it is
2089 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002090 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002091static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002092{
Willy Tarreau7838a792019-08-12 18:42:03 +02002093 struct h2c *h2c = h2s->h2c;
2094
2095 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2096
Christopher Fauletf02ca002019-03-07 16:21:34 +01002097 if (!h2s->cs) {
2098 /* this stream was already orphaned */
2099 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002100 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002101 return;
2102 }
2103
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002104 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002105 if (h2s->st == H2_SS_OPEN)
2106 h2s->st = H2_SS_HREM;
2107 else if (h2s->st == H2_SS_HLOC)
2108 h2s_close(h2s);
2109 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002110
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002111 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
2112 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
2113 h2s->cs->flags |= CS_FL_ERR_PENDING;
2114 if (h2s->cs->flags & CS_FL_EOS)
2115 h2s->cs->flags |= CS_FL_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02002116
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002117 if (h2s->st < H2_SS_ERROR)
2118 h2s->st = H2_SS_ERROR;
2119 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002120
2121 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002122 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002123}
2124
2125/* wake the streams attached to the connection, whose id is greater than <last>
2126 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002127 */
Willy Tarreau23482912019-05-07 15:23:14 +02002128static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002129{
2130 struct eb32_node *node;
2131 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002132
Willy Tarreau7838a792019-08-12 18:42:03 +02002133 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2134
Christopher Fauletf02ca002019-03-07 16:21:34 +01002135 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002136 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2137 while (node) {
2138 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002139 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002140 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002141 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002142
Christopher Fauletf02ca002019-03-07 16:21:34 +01002143 /* Wake all streams with unassigned ID (ID == 0) */
2144 node = eb32_lookup(&h2c->streams_by_id, 0);
2145 while (node) {
2146 h2s = container_of(node, struct h2s, by_id);
2147 if (h2s->id > 0)
2148 break;
2149 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002150 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002151 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002152
2153 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002154}
2155
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002156/* Wake up all blocked streams whose window size has become positive after the
2157 * mux's initial window was adjusted. This should be done after having processed
2158 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002159 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002160static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002161{
2162 struct h2s *h2s;
2163 struct eb32_node *node;
2164
Willy Tarreau7838a792019-08-12 18:42:03 +02002165 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2166
Willy Tarreau3421aba2017-07-27 15:41:03 +02002167 node = eb32_first(&h2c->streams_by_id);
2168 while (node) {
2169 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002170 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002171 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002172 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002173 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2174 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002175 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002176 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002177 node = eb32_next(node);
2178 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002179
2180 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002181}
2182
2183/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2184 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002185 * return an error in h2c. The caller must have already verified frame length
2186 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002187 */
2188static int h2c_handle_settings(struct h2c *h2c)
2189{
2190 unsigned int offset;
2191 int error;
2192
Willy Tarreau7838a792019-08-12 18:42:03 +02002193 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2194
Willy Tarreau3421aba2017-07-27 15:41:03 +02002195 if (h2c->dff & H2_F_SETTINGS_ACK) {
2196 if (h2c->dfl) {
2197 error = H2_ERR_FRAME_SIZE_ERROR;
2198 goto fail;
2199 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002200 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002201 }
2202
Willy Tarreau3421aba2017-07-27 15:41:03 +02002203 /* process full frame only */
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002204 if (b_data(&h2c->dbuf) < h2c->dfl) {
2205 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002206 goto out0;
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002207 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002208
2209 /* parse the frame */
2210 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002211 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2212 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002213
2214 switch (type) {
2215 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2216 /* we need to update all existing streams with the
2217 * difference from the previous iws.
2218 */
2219 if (arg < 0) { // RFC7540#6.5.2
2220 error = H2_ERR_FLOW_CONTROL_ERROR;
2221 goto fail;
2222 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002223 h2c->miw = arg;
2224 break;
2225 case H2_SETTINGS_MAX_FRAME_SIZE:
2226 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002227 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 +02002228 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002229 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002230 goto fail;
2231 }
2232 h2c->mfs = arg;
2233 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002234 case H2_SETTINGS_ENABLE_PUSH:
2235 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002236 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002237 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002238 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002239 goto fail;
2240 }
2241 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002242 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2243 if (h2c->flags & H2_CF_IS_BACK) {
2244 /* the limit is only for the backend; for the frontend it is our limit */
2245 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2246 arg = h2_settings_max_concurrent_streams;
2247 h2c->streams_limit = arg;
2248 }
2249 break;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002250 case H2_SETTINGS_ENABLE_CONNECT_PROTOCOL:
Amaury Denoyelle68993a12021-10-18 09:43:29 +02002251 if (arg == 1)
2252 h2c->flags |= H2_CF_RCVD_RFC8441;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002253 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002254 }
2255 }
2256
2257 /* need to ACK this frame now */
2258 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002259 done:
2260 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002261 return 1;
2262 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002263 if (!(h2c->flags & H2_CF_IS_BACK))
2264 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002265 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002266 out0:
2267 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 +02002268 return 0;
2269}
2270
2271/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2272 * success or one of the h2_status values.
2273 */
2274static int h2c_ack_settings(struct h2c *h2c)
2275{
2276 struct buffer *res;
2277 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002278 int ret = 0;
2279
2280 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002281
2282 if (h2c_mux_busy(h2c, NULL)) {
2283 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002284 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002285 }
2286
Willy Tarreau9c218e72019-05-26 10:08:28 +02002287 memcpy(str,
2288 "\x00\x00\x00" /* length : 0 (no data) */
2289 "\x04" "\x01" /* type : 4, flags : ACK */
2290 "\x00\x00\x00\x00" /* stream ID */, 9);
2291
Willy Tarreaubcc45952019-05-26 10:05:50 +02002292 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002293 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002294 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002295 h2c->flags |= H2_CF_MUX_MALLOC;
2296 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002297 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002298 }
2299
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002300 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002301 if (unlikely(ret <= 0)) {
2302 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002303 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2304 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002305 h2c->flags |= H2_CF_MUX_MFULL;
2306 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002307 }
2308 else {
2309 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002310 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002311 }
2312 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002313 out:
2314 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002315 return ret;
2316}
2317
Willy Tarreaucf68c782017-10-10 17:11:41 +02002318/* processes a PING frame and schedules an ACK if needed. The caller must pass
2319 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002320 * missing data. The caller must have already verified frame length
2321 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002322 */
2323static int h2c_handle_ping(struct h2c *h2c)
2324{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002325 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002326 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002327 h2c->st0 = H2_CS_FRAME_A;
2328 return 1;
2329}
2330
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002331/* Try to send a window update for stream id <sid> and value <increment>.
2332 * Returns > 0 on success or zero on missing room or failure. It may return an
2333 * error in h2c.
2334 */
2335static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2336{
2337 struct buffer *res;
2338 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002339 int ret = 0;
2340
2341 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002342
2343 if (h2c_mux_busy(h2c, NULL)) {
2344 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002345 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002346 }
2347
Willy Tarreau9c218e72019-05-26 10:08:28 +02002348 /* length: 4, type: 8, flags: none */
2349 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2350 write_n32(str + 5, sid);
2351 write_n32(str + 9, increment);
2352
Willy Tarreaubcc45952019-05-26 10:05:50 +02002353 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002354 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002355 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002356 h2c->flags |= H2_CF_MUX_MALLOC;
2357 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002358 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002359 }
2360
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002361 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002362 if (unlikely(ret <= 0)) {
2363 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002364 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2365 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002366 h2c->flags |= H2_CF_MUX_MFULL;
2367 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002368 }
2369 else {
2370 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002371 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002372 }
2373 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002374 out:
2375 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002376 return ret;
2377}
2378
2379/* try to send pending window update for the connection. It's safe to call it
2380 * with no pending updates. Returns > 0 on success or zero on missing room or
2381 * failure. It may return an error in h2c.
2382 */
2383static int h2c_send_conn_wu(struct h2c *h2c)
2384{
2385 int ret = 1;
2386
Willy Tarreau7838a792019-08-12 18:42:03 +02002387 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2388
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002389 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002390 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002391
Willy Tarreau97aaa672018-12-23 09:49:04 +01002392 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2393 /* increase the advertised connection window to 2G on
2394 * first update.
2395 */
2396 h2c->flags |= H2_CF_WINDOW_OPENED;
2397 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2398 }
2399
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002400 /* send WU for the connection */
2401 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2402 if (ret > 0)
2403 h2c->rcvd_c = 0;
2404
Willy Tarreau7838a792019-08-12 18:42:03 +02002405 out:
2406 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002407 return ret;
2408}
2409
2410/* try to send pending window update for the current dmux stream. It's safe to
2411 * call it with no pending updates. Returns > 0 on success or zero on missing
2412 * room or failure. It may return an error in h2c.
2413 */
2414static int h2c_send_strm_wu(struct h2c *h2c)
2415{
2416 int ret = 1;
2417
Willy Tarreau7838a792019-08-12 18:42:03 +02002418 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2419
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002420 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002421 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002422
2423 /* send WU for the stream */
2424 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2425 if (ret > 0)
2426 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002427 out:
2428 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002429 return ret;
2430}
2431
Willy Tarreaucf68c782017-10-10 17:11:41 +02002432/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2433 * success, 0 on missing data or one of the h2_status values.
2434 */
2435static int h2c_ack_ping(struct h2c *h2c)
2436{
2437 struct buffer *res;
2438 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002439 int ret = 0;
2440
2441 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002442
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002443 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002444 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002445
2446 if (h2c_mux_busy(h2c, NULL)) {
2447 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002448 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002449 }
2450
Willy Tarreaucf68c782017-10-10 17:11:41 +02002451 memcpy(str,
2452 "\x00\x00\x08" /* length : 8 (same payload) */
2453 "\x06" "\x01" /* type : 6, flags : ACK */
2454 "\x00\x00\x00\x00" /* stream ID */, 9);
2455
2456 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002457 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002458
Willy Tarreau9c218e72019-05-26 10:08:28 +02002459 res = br_tail(h2c->mbuf);
2460 retry:
2461 if (!h2_get_buf(h2c, res)) {
2462 h2c->flags |= H2_CF_MUX_MALLOC;
2463 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002464 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002465 }
2466
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002467 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002468 if (unlikely(ret <= 0)) {
2469 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002470 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2471 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002472 h2c->flags |= H2_CF_MUX_MFULL;
2473 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002474 }
2475 else {
2476 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002477 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002478 }
2479 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002480 out:
2481 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002482 return ret;
2483}
2484
Willy Tarreau26f95952017-07-27 17:18:30 +02002485/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2486 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002487 * h2c or h2s. The caller must have already verified frame length and stream ID
2488 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002489 */
2490static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2491{
2492 int32_t inc;
2493 int error;
2494
Willy Tarreau7838a792019-08-12 18:42:03 +02002495 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2496
Willy Tarreau26f95952017-07-27 17:18:30 +02002497 /* process full frame only */
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002498 if (b_data(&h2c->dbuf) < h2c->dfl) {
2499 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002500 goto out0;
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002501 }
Willy Tarreau26f95952017-07-27 17:18:30 +02002502
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002503 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002504
2505 if (h2c->dsi != 0) {
2506 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002507
2508 /* it's not an error to receive WU on a closed stream */
2509 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002510 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002511
2512 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002513 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 +02002514 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002515 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002516 goto strm_err;
2517 }
2518
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002519 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002520 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 +02002521 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002522 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002523 goto strm_err;
2524 }
2525
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002526 h2s->sws += inc;
2527 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002528 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002529 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002530 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2531 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002532 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002533 }
2534 }
2535 else {
2536 /* connection window update */
2537 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002538 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002539 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002540 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002541 goto conn_err;
2542 }
2543
2544 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2545 error = H2_ERR_FLOW_CONTROL_ERROR;
2546 goto conn_err;
2547 }
2548
2549 h2c->mws += inc;
2550 }
2551
Willy Tarreau7838a792019-08-12 18:42:03 +02002552 done:
2553 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002554 return 1;
2555
2556 conn_err:
2557 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002558 out0:
2559 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 +02002560 return 0;
2561
2562 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002563 h2s_error(h2s, error);
2564 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002565 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002566 return 0;
2567}
2568
Willy Tarreaue96b0922017-10-30 00:28:29 +01002569/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002570 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2571 * have already verified frame length and stream ID validity. Described in
2572 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002573 */
2574static int h2c_handle_goaway(struct h2c *h2c)
2575{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002576 int last;
2577
Willy Tarreau7838a792019-08-12 18:42:03 +02002578 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002579 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002580 if (b_data(&h2c->dbuf) < h2c->dfl) {
2581 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002582 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002583 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002584 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002585
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002586 last = h2_get_n32(&h2c->dbuf, 0);
2587 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002588 if (h2c->last_sid < 0)
2589 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002590 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002591 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002592 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002593}
2594
Willy Tarreau92153fc2017-12-03 19:46:19 +01002595/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002596 * invalid. Returns > 0 on success or zero on missing data. It may return an
2597 * error in h2c. The caller must have already verified frame length and stream
2598 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002599 */
2600static int h2c_handle_priority(struct h2c *h2c)
2601{
Willy Tarreau7838a792019-08-12 18:42:03 +02002602 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2603
Willy Tarreau92153fc2017-12-03 19:46:19 +01002604 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002605 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002606 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002607 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002608 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002609 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002610
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002611 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002612 /* 7540#5.3 : can't depend on itself */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002613 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002614 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02002615 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002616 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002617 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002618 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002619 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002620 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002621}
2622
Willy Tarreaucd234e92017-08-18 10:59:39 +02002623/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002624 * Returns > 0 on success or zero on missing data. The caller must have already
2625 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002626 */
2627static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2628{
Willy Tarreau7838a792019-08-12 18:42:03 +02002629 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2630
Willy Tarreaucd234e92017-08-18 10:59:39 +02002631 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002632 if (b_data(&h2c->dbuf) < h2c->dfl) {
2633 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002634 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002635 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002636 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002637
2638 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002639 if (h2s->st == H2_SS_CLOSED) {
2640 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 +02002641 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002642 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002643
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002644 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002645 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002646
2647 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01002648 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01002649 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002650 }
2651
2652 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002653 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002654 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002655}
2656
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002657/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2658 * It may return an error in h2c or h2s. The caller must consider that the
2659 * return value is the new h2s in case one was allocated (most common case).
2660 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002661 * errors here are reported as connection errors since it's impossible to
2662 * recover from such errors after the compression context has been altered.
2663 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002664static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002665{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002666 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002667 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002668 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002669 int error;
2670
Willy Tarreau7838a792019-08-12 18:42:03 +02002671 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2672
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002673 if (!b_size(&h2c->dbuf)) {
2674 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002675 goto out; // empty buffer
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002676 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002677
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002678 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2679 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002680 goto out; // incomplete frame
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002681 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002682
2683 /* now either the frame is complete or the buffer is complete */
2684 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002685 /* The stream exists/existed, this must be a trailers frame */
2686 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002687 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len, NULL);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002688 /* unrecoverable error ? */
2689 if (h2c->st0 >= H2_CS_ERROR)
2690 goto out;
2691
Christopher Faulet0de3f552021-10-08 08:56:00 +02002692 if (error == 0) {
2693 /* Demux not blocked because of the stream, it is an incomplete frame */
2694 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2695 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002696 goto out; // missing data
Christopher Faulet0de3f552021-10-08 08:56:00 +02002697 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002698
2699 if (error < 0) {
2700 /* Failed to decode this frame (e.g. too large request)
2701 * but the HPACK decompressor is still synchronized.
2702 */
2703 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2704 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002705 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002706 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002707 goto done;
2708 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002709 /* the connection was already killed by an RST, let's consume
2710 * the data and send another RST.
2711 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002712 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau1f035502019-01-30 11:44:07 +01002713 h2s = (struct h2s*)h2_error_stream;
2714 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002715 }
2716 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2717 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2718 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002719 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau4781b152021-04-06 13:53:36 +02002720 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002721 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002722 goto conn_err;
2723 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002724 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2725 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002726
Amaury Denoyelle74162742020-12-11 17:53:05 +01002727 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002728
Willy Tarreau25919232019-01-03 14:48:18 +01002729 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002730 if (h2c->st0 >= H2_CS_ERROR)
2731 goto out;
2732
Willy Tarreau25919232019-01-03 14:48:18 +01002733 if (error <= 0) {
Christopher Faulet0de3f552021-10-08 08:56:00 +02002734 if (error == 0) {
2735 /* Demux not blocked because of the stream, it is an incomplete frame */
2736 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2737 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau25919232019-01-03 14:48:18 +01002738 goto out; // missing data
Christopher Faulet0de3f552021-10-08 08:56:00 +02002739 }
Willy Tarreau25919232019-01-03 14:48:18 +01002740
2741 /* Failed to decode this stream (e.g. too large request)
2742 * but the HPACK decompressor is still synchronized.
2743 */
2744 h2s = (struct h2s*)h2_error_stream;
2745 goto send_rst;
2746 }
2747
Willy Tarreau3c10d512021-06-17 08:29:14 +02002748 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn, 0, &rxbuf);
2749
Willy Tarreau22de8d32018-09-05 19:55:58 +02002750 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002751 * positively from h2c_frt_stream_new(), the stream will report the error,
2752 * and if we return in error, h2c_frt_stream_new() will emit the error.
Christopher Faulet7d013e72020-12-15 16:56:50 +01002753 *
2754 * Xfer the rxbuf to the stream. On success, the new stream owns the
2755 * rxbuf. On error, it is released here.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002756 */
Amaury Denoyelleee7fcd52021-10-18 14:45:49 +02002757 h2s = h2c_frt_stream_new(h2c, h2c->dsi, &rxbuf, flags);
Willy Tarreau13278b42017-10-13 19:23:14 +02002758 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002759 h2s = (struct h2s*)h2_refused_stream;
2760 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002761 }
2762
2763 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002764 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002765 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002766
Willy Tarreau88d138e2019-01-02 19:38:14 +01002767 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002768 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002769 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002770
2771 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002772 if (h2s->st == H2_SS_OPEN)
2773 h2s->st = H2_SS_HREM;
2774 else
2775 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002776 }
2777
Willy Tarreau3a429f02019-01-03 11:41:50 +01002778 /* update the max stream ID if the request is being processed */
2779 if (h2s->id > h2c->max_id)
2780 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002781
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002782 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002783
2784 conn_err:
2785 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002786 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002787
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002788 out:
2789 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002790 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 +01002791 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002792
2793 send_rst:
2794 /* make the demux send an RST for the current stream. We may only
2795 * do this if we're certain that the HEADERS frame was properly
2796 * decompressed so that the HPACK decoder is still kept up to date.
2797 */
2798 h2_release_buf(h2c, &rxbuf);
2799 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002800
Willy Tarreau022e5e52020-09-10 09:33:15 +02002801 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 +02002802 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002803 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002804}
2805
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002806/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2807 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2808 * errors here are reported as connection errors since it's impossible to
2809 * recover from such errors after the compression context has been altered.
2810 */
2811static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2812{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002813 struct buffer rxbuf = BUF_NULL;
2814 unsigned long long body_len = 0;
2815 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002816 int error;
2817
Willy Tarreau7838a792019-08-12 18:42:03 +02002818 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2819
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002820 if (!b_size(&h2c->dbuf)) {
2821 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002822 goto fail; // empty buffer
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002823 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002824
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002825 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2826 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002827 goto fail; // incomplete frame
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002828 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002829
Christopher Faulet6884aa32019-09-23 15:28:20 +02002830 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002831 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len, h2s->upgrade_protocol);
Christopher Faulet6884aa32019-09-23 15:28:20 +02002832 }
2833 else {
2834 /* the connection was already killed by an RST, let's consume
2835 * the data and send another RST.
2836 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002837 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002838 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002839 h2c->st0 = H2_CS_FRAME_E;
2840 goto send_rst;
2841 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002842
Willy Tarreau25919232019-01-03 14:48:18 +01002843 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002844 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002845 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002846
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002847 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2848 /* RFC7540#5.1 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002849 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 +01002850 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2851 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002852 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002853 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002854 }
2855
Willy Tarreau25919232019-01-03 14:48:18 +01002856 if (error <= 0) {
Christopher Faulet0de3f552021-10-08 08:56:00 +02002857 if (error == 0) {
2858 /* Demux not blocked because of the stream, it is an incomplete frame */
2859 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2860 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002861 goto fail; // missing data
Christopher Faulet0de3f552021-10-08 08:56:00 +02002862 }
Willy Tarreau25919232019-01-03 14:48:18 +01002863
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002864 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002865 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 +01002866 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002867 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002868 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002869 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002870 }
2871
Christopher Fauletfa922f02019-05-07 10:55:17 +02002872 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002873 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002874
Willy Tarreau927b88b2019-03-04 08:03:25 +01002875 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002876 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002877 else if (h2s->flags & H2_SF_ES_RCVD) {
2878 if (h2s->st == H2_SS_OPEN)
2879 h2s->st = H2_SS_HREM;
2880 else if (h2s->st == H2_SS_HLOC)
2881 h2s_close(h2s);
2882 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002883
Christopher Fauletf95f8762021-01-22 11:59:07 +01002884 /* Unblock busy server h2s waiting for the response headers to validate
2885 * the tunnel establishment or the end of the response of an oborted
2886 * tunnel
2887 */
2888 if ((h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY)) == (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY) ||
2889 (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)) {
2890 TRACE_STATE("Unblock h2s blocked on tunnel establishment/abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2891 h2s->flags &= ~H2_SF_BLK_MBUSY;
2892 }
2893
Willy Tarreaucbd37e02021-06-16 18:32:42 +02002894 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 +02002895 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002896 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002897 fail:
2898 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2899 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002900
2901 send_rst:
2902 /* make the demux send an RST for the current stream. We may only
2903 * do this if we're certain that the HEADERS frame was properly
2904 * decompressed so that the HPACK decoder is still kept up to date.
2905 */
2906 h2_release_buf(h2c, &rxbuf);
2907 h2c->st0 = H2_CS_FRAME_E;
2908
Willy Tarreau022e5e52020-09-10 09:33:15 +02002909 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 +02002910 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2911 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002912}
2913
Willy Tarreau454f9052017-10-26 19:40:35 +02002914/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2915 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2916 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01002917static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02002918{
2919 int error;
2920
Willy Tarreau7838a792019-08-12 18:42:03 +02002921 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2922
Willy Tarreau454f9052017-10-26 19:40:35 +02002923 /* note that empty DATA frames are perfectly valid and sometimes used
2924 * to signal an end of stream (with the ES flag).
2925 */
2926
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002927 if (!b_size(&h2c->dbuf) && h2c->dfl) {
2928 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002929 goto fail; // empty buffer
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002930 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002931
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002932 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2933 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002934 goto fail; // incomplete frame
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002935 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002936
2937 /* now either the frame is complete or the buffer is complete */
2938
Willy Tarreau454f9052017-10-26 19:40:35 +02002939 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2940 /* RFC7540#6.1 */
2941 error = H2_ERR_STREAM_CLOSED;
2942 goto strm_err;
2943 }
2944
Christopher Faulet4f09ec82019-06-19 09:25:58 +02002945 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002946 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002947 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 +01002948 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002949 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002950 goto strm_err;
2951 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002952 if (!(h2c->flags & H2_CF_IS_BACK) &&
2953 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT) &&
2954 ((h2c->dfl - h2c->dpl) || !(h2c->dff & H2_F_DATA_END_STREAM))) {
2955 /* a tunnel attempt was aborted but the client still try to send some raw data.
2956 * Thus the stream is closed with the CANCEL error. Here we take care it is not
2957 * an empty DATA Frame with the ES flag. The error is only handled if ES was
2958 * already sent to the client because depending on the scheduling, these data may
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002959 * have been sent before the server response but not handle here.
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002960 */
2961 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2962 error = H2_ERR_CANCEL;
2963 goto strm_err;
2964 }
Willy Tarreau1915ca22019-01-24 11:49:37 +01002965
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002966 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02002967 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002968
Willy Tarreau454f9052017-10-26 19:40:35 +02002969 /* call the upper layers to process the frame, then let the upper layer
2970 * notify the stream about any change.
2971 */
2972 if (!h2s->cs) {
Willy Tarreau082c4572019-08-06 10:11:02 +02002973 /* The upper layer has already closed, this may happen on
2974 * 4xx/redirects during POST, or when receiving a response
2975 * from an H2 server after the client has aborted.
2976 */
2977 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002978 goto strm_err;
2979 }
2980
Willy Tarreau8f650c32017-11-21 19:36:21 +01002981 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002982 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01002983
Willy Tarreau721c9742017-11-07 11:05:42 +01002984 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002985 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002986 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002987 }
2988
2989 /* check for completion : the callee will change this to FRAME_A or
2990 * FRAME_H once done.
2991 */
2992 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02002993 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02002994
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002995 /* last frame */
2996 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002997 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002998 if (h2s->st == H2_SS_OPEN)
2999 h2s->st = H2_SS_HREM;
3000 else
3001 h2s_close(h2s);
3002
Willy Tarreau1915ca22019-01-24 11:49:37 +01003003 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
3004 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003005 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 +01003006 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02003007 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01003008 goto strm_err;
3009 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003010 }
3011
Christopher Fauletf95f8762021-01-22 11:59:07 +01003012 /* Unblock busy server h2s waiting for the end of the response for an
3013 * aborted tunnel
3014 */
3015 if ((h2c->flags & H2_CF_IS_BACK) &&
3016 (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)) {
3017 TRACE_STATE("Unblock h2s blocked on tunnel abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3018 h2s->flags &= ~H2_SF_BLK_MBUSY;
3019 }
3020
Willy Tarreau7838a792019-08-12 18:42:03 +02003021 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003022 return 1;
3023
Willy Tarreau454f9052017-10-26 19:40:35 +02003024 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01003025 h2s_error(h2s, error);
3026 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003027 fail:
3028 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 +02003029 return 0;
3030}
3031
Willy Tarreau63864812019-08-07 14:25:20 +02003032/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
3033 * valid for the current stream state. This is needed only after parsing the
3034 * frame header but in practice it can be performed at any time during
3035 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
3036 * or 0 in case of error, in which case either h2s or h2c will carry an error.
3037 */
3038static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
3039{
Willy Tarreau7838a792019-08-12 18:42:03 +02003040 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
3041
Willy Tarreau63864812019-08-07 14:25:20 +02003042 if (h2s->st == H2_SS_IDLE &&
3043 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
3044 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
3045 * this state MUST be treated as a connection error
3046 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003047 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 +02003048 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003049 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02003050 /* only log if no other stream can report the error */
3051 sess_log(h2c->conn->owner);
3052 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003053 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02003054 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 +02003055 return 0;
3056 }
3057
Willy Tarreau57a18162019-11-24 14:57:53 +01003058 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
3059 /* only PUSH_PROMISE would be permitted here */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003060 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 +01003061 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003062 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau57a18162019-11-24 14:57:53 +01003063 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
3064 return 0;
3065 }
3066
Willy Tarreau63864812019-08-07 14:25:20 +02003067 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
3068 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
3069 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
3070 * this state MUST be treated as a stream error.
3071 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
3072 * PUSH_PROMISE/CONTINUATION cause connection errors.
3073 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01003074 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003075 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 +02003076 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003077 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003078 }
3079 else {
Willy Tarreau63864812019-08-07 14:25:20 +02003080 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003081 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003082 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 +02003083 return 0;
3084 }
3085
3086 /* Below the management of frames received in closed state is a
3087 * bit hackish because the spec makes strong differences between
3088 * streams closed by receiving RST, sending RST, and seeing ES
3089 * in both directions. In addition to this, the creation of a
3090 * new stream reusing the identifier of a closed one will be
3091 * detected here. Given that we cannot keep track of all closed
3092 * streams forever, we consider that unknown closed streams were
3093 * closed on RST received, which allows us to respond with an
3094 * RST without breaking the connection (eg: to abort a transfer).
3095 * Some frames have to be silently ignored as well.
3096 */
3097 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
3098 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
3099 /* #5.1.1: The identifier of a newly
3100 * established stream MUST be numerically
3101 * greater than all streams that the initiating
3102 * endpoint has opened or reserved. This
3103 * governs streams that are opened using a
3104 * HEADERS frame and streams that are reserved
3105 * using PUSH_PROMISE. An endpoint that
3106 * receives an unexpected stream identifier
3107 * MUST respond with a connection error.
3108 */
3109 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003110 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 +02003111 return 0;
3112 }
3113
Willy Tarreau4c08f122019-09-26 08:47:15 +02003114 if (h2s->flags & H2_SF_RST_RCVD &&
3115 !(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 +02003116 /* RFC7540#5.1:closed: an endpoint that
3117 * receives any frame other than PRIORITY after
3118 * receiving a RST_STREAM MUST treat that as a
3119 * stream error of type STREAM_CLOSED.
3120 *
3121 * Note that old streams fall into this category
3122 * and will lead to an RST being sent.
3123 *
3124 * However, we cannot generalize this to all frame types. Those
3125 * carrying compression state must still be processed before
3126 * being dropped or we'll desynchronize the decoder. This can
3127 * happen with request trailers received after sending an
3128 * RST_STREAM, or with header/trailers responses received after
3129 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02003130 *
3131 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003132 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003133 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003134 */
3135 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3136 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003137 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 +02003138 return 0;
3139 }
3140
3141 /* RFC7540#5.1:closed: if this state is reached as a
3142 * result of sending a RST_STREAM frame, the peer that
3143 * receives the RST_STREAM might have already sent
3144 * frames on the stream that cannot be withdrawn. An
3145 * endpoint MUST ignore frames that it receives on
3146 * closed streams after it has sent a RST_STREAM
3147 * frame. An endpoint MAY choose to limit the period
3148 * over which it ignores frames and treat frames that
3149 * arrive after this time as being in error.
3150 */
3151 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3152 /* RFC7540#5.1:closed: any frame other than
3153 * PRIO/WU/RST in this state MUST be treated as
3154 * a connection error
3155 */
3156 if (h2c->dft != H2_FT_RST_STREAM &&
3157 h2c->dft != H2_FT_PRIORITY &&
3158 h2c->dft != H2_FT_WINDOW_UPDATE) {
3159 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003160 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 +02003161 return 0;
3162 }
3163 }
3164 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003165 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003166 return 1;
3167}
3168
Willy Tarreaubc933932017-10-09 16:21:43 +02003169/* process Rx frames to be demultiplexed */
3170static void h2_process_demux(struct h2c *h2c)
3171{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003172 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003173 struct h2_fh hdr;
3174 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003175 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003176
Willy Tarreau7838a792019-08-12 18:42:03 +02003177 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3178
Willy Tarreau081d4722017-05-16 21:51:05 +02003179 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003180 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003181
3182 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3183 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003184 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003185 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003186 goto out;
3187
Willy Tarreau52eed752017-09-22 15:05:09 +02003188 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3189 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003190 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003191 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003192 h2c->st0 = H2_CS_ERROR2;
Willy Tarreauc23d6d12021-06-17 08:08:48 +02003193 if (b_data(&h2c->dbuf) ||
Christopher Faulet79b347d2021-07-26 10:18:35 +02003194 !(((const struct session *)h2c->conn->owner)->fe->options & (PR_O_NULLNOLOG|PR_O_IGNORE_PRB)))
Willy Tarreauc23d6d12021-06-17 08:08:48 +02003195 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003196 }
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003197 goto done;
Willy Tarreau52eed752017-09-22 15:05:09 +02003198 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003199 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003200
3201 h2c->max_id = 0;
3202 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003203 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003204 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003205
3206 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003207 /* ensure that what is pending is a valid SETTINGS frame
3208 * without an ACK.
3209 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003210 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 +02003211 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003212 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003213 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003214 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003215 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 +02003216 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003217 if (!(h2c->flags & H2_CF_IS_BACK))
3218 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003219 }
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003220 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003221 }
3222
3223 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3224 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003225 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 +02003226 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3227 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003228 if (!(h2c->flags & H2_CF_IS_BACK))
3229 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003230 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003231 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003232 }
3233
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003234 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003235 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003236 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 +02003237 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3238 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003239 if (!(h2c->flags & H2_CF_IS_BACK))
3240 sess_log(h2c->conn->owner);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003241 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003242 }
3243
Willy Tarreau3bf69182018-12-21 15:34:50 +01003244 /* that's OK, switch to FRAME_P to process it. This is
3245 * a SETTINGS frame whose header has already been
3246 * deleted above.
3247 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003248 padlen = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +02003249 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003250 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003251 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003252 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003253
3254 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003255 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003256 int ret = 0;
3257
Willy Tarreau7838a792019-08-12 18:42:03 +02003258 if (!b_data(&h2c->dbuf)) {
3259 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003260 h2c->flags |= H2_CF_DEM_SHORT_READ;
3261 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003262 }
3263
3264 if (h2c->st0 >= H2_CS_ERROR) {
3265 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003266 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003267 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003268
3269 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau30d05f32019-08-06 15:49:51 +02003270 h2c->rcvd_s = 0;
3271
Willy Tarreau7838a792019-08-12 18:42:03 +02003272 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003273 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr)) {
3274 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003275 break;
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003276 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003277
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003278 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003279 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 +02003280 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003281 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003282 /* only log if no other stream can report the error */
3283 sess_log(h2c->conn->owner);
3284 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003285 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003286 break;
3287 }
3288
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003289 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003290 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3291 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3292 * we read the pad length and drop it from the remaining
3293 * payload (one byte + the 9 remaining ones = 10 total
3294 * removed), so we have a frame payload starting after the
3295 * pad len. Flow controlled frames (DATA) also count the
3296 * padlen in the flow control, so it must be adjusted.
3297 */
3298 if (hdr.len < 1) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003299 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 +01003300 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003301 if (!(h2c->flags & H2_CF_IS_BACK))
3302 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003303 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003304 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003305 }
3306 hdr.len--;
3307
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003308 if (b_data(&h2c->dbuf) < 10) {
3309 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003310 break; // missing padlen
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003311 }
Willy Tarreau3bf69182018-12-21 15:34:50 +01003312
3313 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3314
3315 if (padlen > hdr.len) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003316 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 +01003317 /* RFC7540#6.1 : pad length = length of
3318 * frame payload or greater => error.
3319 */
3320 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003321 if (!(h2c->flags & H2_CF_IS_BACK))
3322 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003323 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003324 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003325 }
3326
3327 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3328 h2c->rcvd_c++;
3329 h2c->rcvd_s++;
3330 }
3331 b_del(&h2c->dbuf, 1);
3332 }
3333 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003334
3335 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003336 h2c->dfl = hdr.len;
3337 h2c->dsi = hdr.sid;
3338 h2c->dft = hdr.ft;
3339 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003340 h2c->dpl = padlen;
Willy Tarreau73db4342019-09-25 07:28:44 +02003341 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 +02003342 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003343
3344 /* check for minimum basic frame format validity */
3345 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3346 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003347 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 +01003348 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003349 if (!(h2c->flags & H2_CF_IS_BACK))
3350 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003351 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003352 goto done;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003353 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003354 }
3355
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003356 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3357 * H2_CS_FRAME_P indicates an incomplete previous operation
3358 * (most often the first attempt) and requires some validity
3359 * checks for the frame and the current state. The two other
3360 * ones are set after completion (or abortion) and must skip
3361 * validity checks.
3362 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003363 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3364
Willy Tarreau567beb82018-12-18 16:52:44 +01003365 if (tmp_h2s != h2s && h2s && h2s->cs &&
3366 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003367 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003368 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003369 (h2s->flags & H2_SF_ES_RCVD) ||
3370 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003371 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003372 TRACE_DEVEL("notifying stream before switching SID", H2_EV_RX_FRAME|H2_EV_STRM_WAKE, h2c->conn, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003373 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003374 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003375 }
3376 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003377
Willy Tarreau63864812019-08-07 14:25:20 +02003378 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003379 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3380 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003381 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003382 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003383
Willy Tarreau7e98c052017-10-10 15:56:59 +02003384 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003385 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003386 if (h2c->st0 == H2_CS_FRAME_P) {
3387 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003388 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003389 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003390 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003391
Willy Tarreau7838a792019-08-12 18:42:03 +02003392 if (h2c->st0 == H2_CS_FRAME_A) {
3393 TRACE_PROTO("sending H2 SETTINGS ACK frame", H2_EV_TX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003394 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003395 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003396 break;
3397
Willy Tarreaucf68c782017-10-10 17:11:41 +02003398 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003399 if (h2c->st0 == H2_CS_FRAME_P) {
3400 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003401 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003402 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003403
Willy Tarreau7838a792019-08-12 18:42:03 +02003404 if (h2c->st0 == H2_CS_FRAME_A) {
3405 TRACE_PROTO("sending H2 PING ACK frame", H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003406 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003407 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003408 break;
3409
Willy Tarreau26f95952017-07-27 17:18:30 +02003410 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003411 if (h2c->st0 == H2_CS_FRAME_P) {
3412 TRACE_PROTO("receiving H2 WINDOW_UPDATE frame", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn, h2s);
Willy Tarreau26f95952017-07-27 17:18:30 +02003413 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003414 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003415 break;
3416
Willy Tarreau61290ec2017-10-17 08:19:21 +02003417 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003418 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003419 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3420 * frames' parsers consume all following CONTINUATION
3421 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003422 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003423 TRACE_ERROR("received unexpected H2 CONTINUATION frame", H2_EV_RX_FRAME|H2_EV_RX_CONT|H2_EV_H2C_ERR, h2c->conn, h2s);
Willy Tarreauea18f862018-12-22 20:19:26 +01003424 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003425 if (!(h2c->flags & H2_CF_IS_BACK))
3426 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003427 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003428 goto done;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003429
Willy Tarreau13278b42017-10-13 19:23:14 +02003430 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003431 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003432 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003433 if (h2c->flags & H2_CF_IS_BACK)
3434 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3435 else
3436 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003437 if (tmp_h2s) {
3438 h2s = tmp_h2s;
3439 ret = 1;
3440 }
3441 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003442 HA_ATOMIC_INC(&h2c->px_counters->headers_rcvd);
Willy Tarreau13278b42017-10-13 19:23:14 +02003443 break;
3444
Willy Tarreau454f9052017-10-26 19:40:35 +02003445 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003446 if (h2c->st0 == H2_CS_FRAME_P) {
3447 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003448 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003449 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003450 HA_ATOMIC_INC(&h2c->px_counters->data_rcvd);
Willy Tarreau454f9052017-10-26 19:40:35 +02003451
Willy Tarreau7838a792019-08-12 18:42:03 +02003452 if (h2c->st0 == H2_CS_FRAME_A) {
3453 TRACE_PROTO("sending stream WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003454 ret = h2c_send_strm_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003455 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003456 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003457
Willy Tarreau92153fc2017-12-03 19:46:19 +01003458 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003459 if (h2c->st0 == H2_CS_FRAME_P) {
3460 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003461 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003462 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003463 break;
3464
Willy Tarreaucd234e92017-08-18 10:59:39 +02003465 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003466 if (h2c->st0 == H2_CS_FRAME_P) {
3467 TRACE_PROTO("receiving H2 RST_STREAM frame", H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003468 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003469 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003470 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_rcvd);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003471 break;
3472
Willy Tarreaue96b0922017-10-30 00:28:29 +01003473 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003474 if (h2c->st0 == H2_CS_FRAME_P) {
3475 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003476 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003477 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003478 HA_ATOMIC_INC(&h2c->px_counters->goaway_rcvd);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003479 break;
3480
Willy Tarreau1c661982017-10-30 13:52:01 +01003481 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003482 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003483 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003484 /* drop frames that we ignore. They may be larger than
3485 * the buffer so we drain all of their contents until
3486 * we reach the end.
3487 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003488 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3489 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003490 h2c->dfl -= ret;
3491 ret = h2c->dfl == 0;
3492 }
3493
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003494 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003495 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003496 if (h2s->st == H2_SS_ERROR) {
3497 TRACE_STATE("stream error, switching to FRAME_E", H2_EV_RX_FRAME|H2_EV_H2S_ERR, h2c->conn, h2s);
Willy Tarreaua20a5192017-12-27 11:02:06 +01003498 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003499 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003500
Willy Tarreau7838a792019-08-12 18:42:03 +02003501 if (h2c->st0 == H2_CS_FRAME_E) {
3502 TRACE_PROTO("sending H2 RST_STREAM frame", H2_EV_TX_FRAME|H2_EV_TX_RST|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreaua20a5192017-12-27 11:02:06 +01003503 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003504 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003505
Willy Tarreau7e98c052017-10-10 15:56:59 +02003506 /* error or missing data condition met above ? */
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003507 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02003508 break;
3509
3510 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003511 if (h2c->dfl)
3512 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003513 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3514 b_del(&h2c->dbuf, ret);
3515 h2c->dfl -= ret;
3516 if (!h2c->dfl) {
3517 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3518 h2c->st0 = H2_CS_FRAME_H;
3519 h2c->dsi = -1;
3520 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003521 }
3522 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003523
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003524 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003525 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3526 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003527 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003528 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003529
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003530 done:
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003531 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_DEM_SHORT_READ)) {
3532 if (h2c->flags & H2_CF_RCVD_SHUT)
3533 h2c->flags |= H2_CF_END_REACHED;
3534 }
3535
Willy Tarreau567beb82018-12-18 16:52:44 +01003536 if (h2s && h2s->cs &&
3537 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003538 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003539 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003540 (h2s->flags & H2_SF_ES_RCVD) ||
3541 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003542 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003543 TRACE_DEVEL("notifying stream before switching SID", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003544 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003545 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003546 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003547
Willy Tarreau7838a792019-08-12 18:42:03 +02003548 if (old_iw != h2c->miw) {
3549 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003550 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003551 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003552
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003553 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003554 out:
3555 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003556 return;
Willy Tarreaubc933932017-10-09 16:21:43 +02003557}
3558
Willy Tarreau989539b2020-01-10 17:01:29 +01003559/* resume each h2s eligible for sending in list head <head> */
3560static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3561{
3562 struct h2s *h2s, *h2s_back;
3563
3564 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3565
3566 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3567 if (h2c->mws <= 0 ||
3568 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3569 h2c->st0 >= H2_CS_ERROR)
3570 break;
3571
3572 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003573
Willy Tarreaud9464162020-01-10 18:25:07 +01003574 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003575 continue;
3576
Willy Tarreau5723f292020-01-10 15:16:57 +01003577 /* If the sender changed his mind and unsubscribed, let's just
3578 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003579 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003580 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3581 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003582 LIST_DEL_INIT(&h2s->list);
3583 continue;
3584 }
3585
Willy Tarreauf96508a2020-01-10 11:12:48 +01003586 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003587 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003588 tasklet_wakeup(h2s->subs->tasklet);
3589 h2s->subs->events &= ~SUB_RETRY_SEND;
3590 if (!h2s->subs->events)
3591 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003592 }
3593 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3594 tasklet_wakeup(h2s->shut_tl);
3595 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003596 }
3597
3598 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3599}
3600
Willy Tarreaubc933932017-10-09 16:21:43 +02003601/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3602 * the end.
3603 */
3604static int h2_process_mux(struct h2c *h2c)
3605{
Willy Tarreau7838a792019-08-12 18:42:03 +02003606 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3607
Willy Tarreau01b44822018-10-03 14:26:37 +02003608 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3609 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3610 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3611 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003612 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003613 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003614 goto fail;
3615 }
3616 h2c->st0 = H2_CS_SETTINGS1;
3617 }
3618 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003619 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003620 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003621 }
3622
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003623 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003624 if (h2c->rcvd_s > 0 &&
3625 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3626 h2c_send_strm_wu(h2c) < 0)
3627 goto fail;
3628
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003629 if (h2c->rcvd_c > 0 &&
3630 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3631 h2c_send_conn_wu(h2c) < 0)
3632 goto fail;
3633
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003634 /* First we always process the flow control list because the streams
3635 * waiting there were already elected for immediate emission but were
3636 * blocked just on this.
3637 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003638 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3639 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003640
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003641 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003642 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003643 if (h2c->st0 == H2_CS_ERROR) {
3644 if (h2c->max_id >= 0) {
3645 h2c_send_goaway_error(h2c, NULL);
3646 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003647 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003648 }
3649
3650 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3651 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003652 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003653 done:
3654 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3655 return 1;
3656 out0:
3657 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3658 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003659}
3660
Willy Tarreau62f52692017-10-08 23:01:42 +02003661
Willy Tarreau479998a2018-11-18 06:30:59 +01003662/* Attempt to read data, and subscribe if none available.
3663 * The function returns 1 if data has been received, otherwise zero.
3664 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003665static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003666{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003667 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003668 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003669 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003670 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003671
Willy Tarreau7838a792019-08-12 18:42:03 +02003672 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3673
3674 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3675 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003676 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003677 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003678
Willy Tarreau7838a792019-08-12 18:42:03 +02003679 if (!h2_recv_allowed(h2c)) {
3680 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003681 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003682 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003683
Willy Tarreau44e973f2018-03-01 17:49:30 +01003684 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003685 if (!buf) {
3686 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003687 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003688 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003689 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003690
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003691 if (h2c->flags & H2_CF_RCVD_SHUT) {
3692 TRACE_DEVEL("leaving on rcvd_shut", H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau49acac02021-11-19 11:41:10 +01003693 return 1;
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003694 }
3695
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003696 if (!b_data(buf)) {
3697 /* try to pre-align the buffer like the
3698 * rxbufs will be to optimize memory copies. We'll make
3699 * sure that the frame header lands at the end of the
3700 * HTX block to alias it upon recv. We cannot use the
3701 * head because rcv_buf() will realign the buffer if
3702 * it's empty. Thus we cheat and pretend we already
3703 * have a few bytes there.
3704 */
3705 max = buf_room_for_htx_data(buf) + 9;
3706 buf->head = sizeof(struct htx) - 9;
3707 }
3708 else
3709 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003710
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003711 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003712
Christopher Fauletde9d6052021-04-23 12:25:18 +02003713 if (max && !ret && h2_recv_allowed(h2c)) {
3714 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
3715 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003716 } else if (ret) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02003717 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003718 h2c->flags &= ~H2_CF_DEM_SHORT_READ;
3719 }
Olivier Houchard81a15af2018-10-19 17:26:49 +02003720
Christopher Fauletde9d6052021-04-23 12:25:18 +02003721 if (conn_xprt_read0_pending(h2c->conn)) {
3722 TRACE_DATA("received read0", H2_EV_H2C_RECV, h2c->conn);
3723 h2c->flags |= H2_CF_RCVD_SHUT;
3724 }
3725
Olivier Houcharda1411e62018-08-17 18:42:48 +02003726 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003727 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003728 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003729 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003730 }
3731
Willy Tarreau7838a792019-08-12 18:42:03 +02003732 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003733 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003734 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003735 }
3736
3737 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003738 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003739}
3740
Willy Tarreau479998a2018-11-18 06:30:59 +01003741/* Try to send data if possible.
3742 * The function returns 1 if data have been sent, otherwise zero.
3743 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003744static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003745{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003746 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003747 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003748 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003749
Willy Tarreau7838a792019-08-12 18:42:03 +02003750 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003751
Willy Tarreau7838a792019-08-12 18:42:03 +02003752 if (conn->flags & CO_FL_ERROR) {
3753 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3754 return 1;
3755 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003756
Willy Tarreau911db9b2020-01-23 16:27:54 +01003757 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003758 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003759 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003760 }
3761
Willy Tarreaubc933932017-10-09 16:21:43 +02003762 /* This loop is quite simple : it tries to fill as much as it can from
3763 * pending streams into the existing buffer until it's reportedly full
3764 * or the end of send requests is reached. Then it tries to send this
3765 * buffer's contents out, marks it not full if at least one byte could
3766 * be sent, and tries again.
3767 *
3768 * The snd_buf() function normally takes a "flags" argument which may
3769 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3770 * data immediately comes and CO_SFL_STREAMER to indicate that the
3771 * connection is streaming lots of data (used to increase TLS record
3772 * size at the expense of latency). The former can be sent any time
3773 * there's a buffer full flag, as it indicates at least one stream
3774 * attempted to send and failed so there are pending data. An
3775 * alternative would be to set it as long as there's an active stream
3776 * but that would be problematic for ACKs until we have an absolute
3777 * guarantee that all waiters have at least one byte to send. The
3778 * latter should possibly not be set for now.
3779 */
3780
3781 done = 0;
3782 while (!done) {
3783 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003784 unsigned int released = 0;
3785 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003786
3787 /* fill as much as we can into the current buffer */
3788 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3789 done = h2_process_mux(h2c);
3790
Olivier Houchard2b094432019-01-29 18:28:36 +01003791 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003792 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003793
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003794 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
Willy Tarreaue90653b2021-10-21 17:30:06 +02003795 (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003796 break;
3797
3798 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3799 flags |= CO_SFL_MSG_MORE;
3800
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003801 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3802 if (b_data(buf)) {
3803 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003804 if (!ret) {
3805 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003806 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003807 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003808 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003809 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003810 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003811 if (b_data(buf)) {
3812 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003813 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003814 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003815 }
3816 b_free(buf);
3817 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003818 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003819
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003820 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01003821 offer_buffers(NULL, released);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003822
Willy Tarreaubc933932017-10-09 16:21:43 +02003823 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003824 if (sent)
3825 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003826 }
3827
Willy Tarreaua2af5122017-10-09 11:56:46 +02003828 if (conn->flags & CO_FL_SOCK_WR_SH) {
3829 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003830 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003831 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003832 /* We're not full anymore, so we can wake any task that are waiting
3833 * for us.
3834 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003835 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3836 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003837
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003838 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003839 if (!br_data(h2c->mbuf)) {
3840 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003841 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003842 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003843schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003844 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3845 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003846 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003847 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003848
Willy Tarreau7838a792019-08-12 18:42:03 +02003849 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003850 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003851}
3852
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003853/* this is the tasklet referenced in h2c->wait_event.tasklet */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003854struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state)
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003855{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003856 struct connection *conn;
3857 struct tasklet *tl = (struct tasklet *)t;
3858 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003859 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003860 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003861
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003862 if (state & TASK_F_USR1) {
3863 /* the tasklet was idling on an idle connection, it might have
3864 * been stolen, let's be careful!
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003865 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003866 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3867 if (t->context == NULL) {
3868 /* The connection has been taken over by another thread,
3869 * we're no longer responsible for it, so just free the
3870 * tasklet, and do nothing.
3871 */
3872 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3873 tasklet_free(tl);
Willy Tarreau74163142021-03-13 11:30:19 +01003874 t = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003875 goto leave;
3876 }
3877 conn = h2c->conn;
3878 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003879
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003880 conn_in_list = conn->flags & CO_FL_LIST_MASK;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003881
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003882 /* Remove the connection from the list, to be sure nobody attempts
3883 * to use it while we handle the I/O events
3884 */
3885 if (conn_in_list)
3886 conn_delete_from_tree(&conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003887
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003888 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3889 } else {
3890 /* we're certain the connection was not in an idle list */
3891 conn = h2c->conn;
3892 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3893 conn_in_list = 0;
3894 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003895
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003896 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003897 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003898 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003899 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003900 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003901 ret = h2_process(h2c);
3902
3903 /* If we were in an idle list, we want to add it back into it,
3904 * unless h2_process() returned -1, which mean it has destroyed
3905 * the connection (testing !ret is enough, if h2_process() wasn't
3906 * called then ret will be 0 anyway.
3907 */
Willy Tarreau74163142021-03-13 11:30:19 +01003908 if (ret < 0)
3909 t = NULL;
3910
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003911 if (!ret && conn_in_list) {
3912 struct server *srv = objt_server(conn->target);
3913
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003914 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003915 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003916 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003917 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003918 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003919 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003920 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003921
Willy Tarreau38468772020-06-28 00:31:13 +02003922leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02003923 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreau74163142021-03-13 11:30:19 +01003924 return t;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003925}
Willy Tarreaua2af5122017-10-09 11:56:46 +02003926
Willy Tarreau62f52692017-10-08 23:01:42 +02003927/* callback called on any event by the connection handler.
3928 * It applies changes and returns zero, or < 0 if it wants immediate
3929 * destruction of the connection (which normally doesn not happen in h2).
3930 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003931static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003932{
Olivier Houchard7505f942018-08-21 18:10:44 +02003933 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003934
Willy Tarreau7838a792019-08-12 18:42:03 +02003935 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3936
Willy Tarreauf0961222021-02-05 11:41:46 +01003937 if (!(h2c->flags & H2_CF_DEM_BLOCK_ANY) &&
3938 (b_data(&h2c->dbuf) || (h2c->flags & H2_CF_RCVD_SHUT))) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003939 h2_process_demux(h2c);
3940
3941 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003942 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003943
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003944 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003945 h2c->flags &= ~H2_CF_DEM_DFULL;
3946 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003947 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003948
Willy Tarreaub1e600c2020-10-13 18:09:15 +02003949 if (unlikely(h2c->proxy->disabled) && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01003950 /* frontend is stopping, reload likely in progress, let's try
3951 * to announce a graceful shutdown if not yet done. We don't
3952 * care if it fails, it will be tried again later.
3953 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003954 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
Willy Tarreau8ec14062017-12-30 18:08:13 +01003955 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3956 if (h2c->last_sid < 0)
3957 h2c->last_sid = (1U << 31) - 1;
3958 h2c_send_goaway_error(h2c, NULL);
3959 }
3960 }
3961
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003962 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003963 * If we received early data, and the handshake is done, wake
3964 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003965 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003966 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01003967 (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 +01003968 struct eb32_node *node;
3969 struct h2s *h2s;
3970
3971 h2c->flags |= H2_CF_WAIT_FOR_HS;
3972 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
3973
3974 while (node) {
3975 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01003976 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01003977 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003978 node = eb32_next(node);
3979 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003980 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003981
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003982 if (conn->flags & CO_FL_ERROR || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01003983 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
3984 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
3985 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02003986 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003987
3988 if (eb_is_empty(&h2c->streams_by_id)) {
3989 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003990 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003991 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003992 return -1;
3993 }
Willy Tarreau4481e262019-10-31 15:36:30 +01003994
3995 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01003996 if (conn->flags & CO_FL_LIST_MASK) {
3997 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003998 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01003999 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4000 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004001 }
4002 else if (h2c->st0 == H2_CS_ERROR) {
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 Tarreaufbe3b4f2017-10-09 15:14:19 +02004009 }
4010
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004011 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01004012 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004013
Olivier Houchard53216e72018-10-10 15:46:36 +02004014 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
4015 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
4016 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02004017 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02004018 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
4019 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02004020 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02004021
Willy Tarreau3f133572017-10-31 19:21:06 +01004022 if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004023 if (h2c_may_expire(h2c))
4024 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
4025 else
4026 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02004027 task_queue(h2c->task);
Willy Tarreauea392822017-10-31 10:02:25 +01004028 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02004029
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 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01004170static struct conn_stream *h2_attach(struct connection *conn, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02004171{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004172 struct conn_stream *cs;
4173 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004174 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004175
Willy Tarreau7838a792019-08-12 18:42:03 +02004176 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Christopher Faulet236c93b2020-07-02 09:19:54 +02004177 cs = cs_new(conn, conn->target);
Willy Tarreau7838a792019-08-12 18:42:03 +02004178 if (!cs) {
4179 TRACE_DEVEL("leaving on CS allocation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004180 return NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004181 }
Olivier Houchardf502aca2018-12-14 19:42:40 +01004182 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004183 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004184 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004185 cs_free(cs);
4186 return NULL;
4187 }
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004188
4189 /* the connection is not idle anymore, let's mark this */
4190 HA_ATOMIC_AND(&h2c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004191 xprt_set_used(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004192
Willy Tarreau7838a792019-08-12 18:42:03 +02004193 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004194 return cs;
Willy Tarreau62f52692017-10-08 23:01:42 +02004195}
4196
Willy Tarreaufafd3982018-11-18 21:29:20 +01004197/* Retrieves the first valid conn_stream from this connection, or returns NULL.
4198 * We have to scan because we may have some orphan streams. It might be
4199 * beneficial to scan backwards from the end to reduce the likeliness to find
4200 * orphans.
4201 */
4202static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
4203{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004204 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004205 struct h2s *h2s;
4206 struct eb32_node *node;
4207
4208 node = eb32_first(&h2c->streams_by_id);
4209 while (node) {
4210 h2s = container_of(node, struct h2s, by_id);
4211 if (h2s->cs)
4212 return h2s->cs;
4213 node = eb32_next(node);
4214 }
4215 return NULL;
4216}
4217
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004218static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4219{
4220 int ret = 0;
4221 struct h2c *h2c = conn->ctx;
4222
4223 switch (mux_ctl) {
4224 case MUX_STATUS:
4225 /* Only consider the mux to be ready if we're done with
4226 * the preface and settings, and we had no error.
4227 */
4228 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4229 ret |= MUX_STATUS_READY;
4230 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02004231 case MUX_EXIT_STATUS:
4232 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004233 default:
4234 return -1;
4235 }
4236}
4237
Willy Tarreau62f52692017-10-08 23:01:42 +02004238/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004239 * Destroy the mux and the associated connection, if it is no longer used
4240 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004241static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004242{
Christopher Faulet73c12072019-04-08 11:23:22 +02004243 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004244
Willy Tarreau7838a792019-08-12 18:42:03 +02004245 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02004246 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02004247 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004248 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004249}
4250
4251/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004252 * Detach the stream from the connection and possibly release the connection.
4253 */
4254static void h2_detach(struct conn_stream *cs)
4255{
Willy Tarreau60935142017-10-16 18:11:19 +02004256 struct h2s *h2s = cs->ctx;
4257 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004258 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004259
Willy Tarreau7838a792019-08-12 18:42:03 +02004260 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4261
Willy Tarreau60935142017-10-16 18:11:19 +02004262 cs->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004263 if (!h2s) {
4264 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004265 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004266 }
Willy Tarreau60935142017-10-16 18:11:19 +02004267
Willy Tarreaud9464162020-01-10 18:25:07 +01004268 /* there's no txbuf so we're certain not to be able to send anything */
4269 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004270
Olivier Houchardf502aca2018-12-14 19:42:40 +01004271 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004272 h2c = h2s->h2c;
4273 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02004274 h2c->nb_cs--;
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004275 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
4276 !h2_frt_has_too_many_cs(h2c)) {
4277 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004278 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004279 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004280 }
Willy Tarreau60935142017-10-16 18:11:19 +02004281
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004282 /* this stream may be blocked waiting for some data to leave (possibly
4283 * an ES or RST frame), so orphan it in this case.
4284 */
Willy Tarreau3041fcc2018-03-29 15:41:32 +02004285 if (!(cs->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004286 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004287 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004288 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004289 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004290 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004291 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004292
Willy Tarreau45f752e2017-10-30 15:44:59 +01004293 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
4294 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
4295 /* unblock the connection if it was blocked on this
4296 * stream.
4297 */
4298 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4299 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004300 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004301 }
4302
Willy Tarreau71049cc2018-03-28 13:56:39 +02004303 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004304
Christopher Faulet9b79a102019-07-15 11:22:56 +02004305 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01004306 if (!(h2c->conn->flags &
4307 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
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 Tarreau430bf4a2021-03-04 09:45:32 +01004359 ebmb_insert(&__objt_server(h2c->conn->target)->per_thr[tid].avail_conns,
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004360 &h2c->conn->hash_node->node,
4361 sizeof(h2c->conn->hash_node->hash));
Christopher Fauletc5579d12020-07-01 15:45:41 +02004362 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004363 }
4364 }
4365 }
4366
Willy Tarreaue323f342018-03-28 13:51:45 +02004367 /* We don't want to close right now unless we're removing the
4368 * last stream, and either the connection is in error, or it
4369 * reached the ID already specified in a GOAWAY frame received
4370 * or sent (as seen by last_sid >= 0).
4371 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004372 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004373 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004374 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004375 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004376 }
4377 else if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004378 if (h2c_may_expire(h2c))
4379 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
4380 else
4381 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02004382 task_queue(h2c->task);
Willy Tarreau7838a792019-08-12 18:42:03 +02004383 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004384 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004385 else
4386 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004387}
4388
Willy Tarreau88bdba32019-05-13 18:17:53 +02004389/* Performs a synchronous or asynchronous shutr(). */
4390static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004391{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004392 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004393
Willy Tarreauf983d002019-05-14 10:40:21 +02004394 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004395 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004396
Willy Tarreau7838a792019-08-12 18:42:03 +02004397 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4398
Willy Tarreau18059042019-01-31 19:12:48 +01004399 /* a connstream may require us to immediately kill the whole connection
4400 * for example because of a "tcp-request content reject" rule that is
4401 * normally used to limit abuse. In this case we schedule a goaway to
4402 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004403 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004404 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004405 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004406 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004407 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4408 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4409 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004410 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4411 /* Nothing was never sent for this stream, so reset with
4412 * REFUSED_STREAM error to let the client retry the
4413 * request.
4414 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004415 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004416 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4417 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004418 else {
4419 /* a final response was already provided, we don't want this
4420 * stream anymore. This may happen when the server responds
4421 * before the end of an upload and closes quickly (redirect,
4422 * deny, ...)
4423 */
4424 h2s_error(h2s, H2_ERR_CANCEL);
4425 }
Willy Tarreau18059042019-01-31 19:12:48 +01004426
Willy Tarreau90c32322017-11-24 08:00:30 +01004427 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004428 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004429 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004430
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004431 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004432 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004433 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004434 done:
4435 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004436 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004437 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004438add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004439 /* Let the handler know we want to shutr, and add ourselves to the
4440 * most relevant list if not yet done. h2_deferred_shut() will be
4441 * automatically called via the shut_tl tasklet when there's room
4442 * again.
4443 */
4444 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau2b718102021-04-21 07:32:39 +02004445 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004446 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004447 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004448 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004449 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004450 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004451 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004452 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004453}
4454
Willy Tarreau88bdba32019-05-13 18:17:53 +02004455/* Performs a synchronous or asynchronous shutw(). */
4456static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004457{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004458 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004459
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004460 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004461 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004462
Willy Tarreau7838a792019-08-12 18:42:03 +02004463 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4464
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004465 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01004466 /* we can cleanly close using an empty data frame only after headers */
4467
4468 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4469 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004470 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004471
4472 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004473 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004474 else
4475 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004476 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004477 /* a connstream may require us to immediately kill the whole connection
4478 * for example because of a "tcp-request content reject" rule that is
4479 * normally used to limit abuse. In this case we schedule a goaway to
4480 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004481 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004482 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004483 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004484 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004485 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4486 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4487 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004488 else {
4489 /* Nothing was never sent for this stream, so reset with
4490 * REFUSED_STREAM error to let the client retry the
4491 * request.
4492 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004493 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004494 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4495 }
Willy Tarreau18059042019-01-31 19:12:48 +01004496
Willy Tarreau90c32322017-11-24 08:00:30 +01004497 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004498 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004499 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004500
Willy Tarreau00dd0782018-03-01 16:31:34 +01004501 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004502 }
4503
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004504 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004505 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004506
4507 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4508
Willy Tarreau88bdba32019-05-13 18:17:53 +02004509 done:
4510 h2s->flags &= ~H2_SF_WANT_SHUTW;
4511 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004512
4513 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004514 /* Let the handler know we want to shutw, and add ourselves to the
4515 * most relevant list if not yet done. h2_deferred_shut() will be
4516 * automatically called via the shut_tl tasklet when there's room
4517 * again.
4518 */
4519 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau2b718102021-04-21 07:32:39 +02004520 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004521 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004522 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004523 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004524 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004525 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004526 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004527 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004528}
4529
Willy Tarreau5723f292020-01-10 15:16:57 +01004530/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004531 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4532 * and prevented the last frame from being emitted.
4533 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004534struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004535{
4536 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004537 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004538
Willy Tarreau7838a792019-08-12 18:42:03 +02004539 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4540
Willy Tarreau5723f292020-01-10 15:16:57 +01004541 if (h2s->flags & H2_SF_NOTIFIED) {
4542 /* some data processing remains to be done first */
4543 goto end;
4544 }
4545
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004546 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004547 h2_do_shutw(h2s);
4548
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004549 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004550 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004551
Willy Tarreau88bdba32019-05-13 18:17:53 +02004552 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004553 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004554 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004555
Willy Tarreau88bdba32019-05-13 18:17:53 +02004556 if (!h2s->cs) {
4557 h2s_destroy(h2s);
Willy Tarreau74163142021-03-13 11:30:19 +01004558 if (h2c_is_dead(h2c)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004559 h2_release(h2c);
Willy Tarreau74163142021-03-13 11:30:19 +01004560 t = NULL;
4561 }
Willy Tarreau88bdba32019-05-13 18:17:53 +02004562 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004563 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004564 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004565 TRACE_LEAVE(H2_EV_STRM_SHUT);
Willy Tarreau74163142021-03-13 11:30:19 +01004566 return t;
Willy Tarreau62f52692017-10-08 23:01:42 +02004567}
4568
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004569/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004570static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
4571{
4572 struct h2s *h2s = cs->ctx;
4573
Willy Tarreau7838a792019-08-12 18:42:03 +02004574 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004575 if (cs->flags & CS_FL_KILL_CONN)
4576 h2s->flags |= H2_SF_KILL_CONN;
4577
Willy Tarreau7838a792019-08-12 18:42:03 +02004578 if (mode)
4579 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004580
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 Tarreau749f5ca2019-03-21 19:19:36 +01004584/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004585static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
4586{
4587 struct h2s *h2s = cs->ctx;
4588
Willy Tarreau7838a792019-08-12 18:42:03 +02004589 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004590 if (cs->flags & CS_FL_KILL_CONN)
4591 h2s->flags |= H2_SF_KILL_CONN;
4592
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004593 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004594 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004595}
4596
Christopher Faulet9b79a102019-07-15 11:22:56 +02004597/* Decode the payload of a HEADERS frame and produce the HTX request or response
4598 * depending on the connection's side. Returns a positive value on success, a
4599 * negative value on failure, or 0 if it couldn't proceed. May report connection
4600 * errors in h2c->errcode if the frame is non-decodable and the connection
4601 * unrecoverable. In absence of connection error when a failure is reported, the
4602 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004603 *
4604 * The function may fold CONTINUATION frames into the initial HEADERS frame
4605 * by removing padding and next frame header, then moving the CONTINUATION
4606 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4607 * leaving a hole between the main frame and the beginning of the next one.
4608 * The possibly remaining incomplete or next frame at the end may be moved
4609 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4610 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4611 *
4612 * A buffer at the beginning of processing may look like this :
4613 *
4614 * ,---.---------.-----.--------------.--------------.------.---.
4615 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4616 * `---^---------^-----^--------------^--------------^------^---'
4617 * | | <-----> | |
4618 * area | dpl | wrap
4619 * |<--------------> |
4620 * | dfl |
4621 * |<-------------------------------------------------->|
4622 * head data
4623 *
4624 * Padding is automatically overwritten when folding, participating to the
4625 * hole size after dfl :
4626 *
4627 * ,---.------------------------.-----.--------------.------.---.
4628 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4629 * `---^------------------------^-----^--------------^------^---'
4630 * | | <-----> | |
4631 * area | hole | wrap
4632 * |<-----------------------> |
4633 * | dfl |
4634 * |<-------------------------------------------------->|
4635 * head data
4636 *
4637 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4638 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4639 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004640 *
4641 * The <flags> field must point to either the stream's flags or to a copy of it
4642 * so that the function can update the following flags :
4643 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004644 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004645 *
4646 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4647 * decoding, in order to detect if we're dealing with a headers or a trailers
4648 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004649 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004650static 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 +02004651{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004652 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004653 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004654 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004655 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004656 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004657 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004658 int flen; // header frame len
4659 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004660 int ret = 0;
4661 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004662 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004663
Willy Tarreau7838a792019-08-12 18:42:03 +02004664 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4665
Willy Tarreauea18f862018-12-22 20:19:26 +01004666next_frame:
4667 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4668 goto leave; // incomplete input frame
4669
4670 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4671 * this case, we'll try to paste it immediately after the initial
4672 * HEADERS frame payload and kill any possible padding. The initial
4673 * frame's length will be increased to represent the concatenation
4674 * of the two frames. The next frame is read from position <tlen>
4675 * and written at position <flen> (minus padding if some is present).
4676 */
4677 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4678 struct h2_fh hdr;
4679 int clen; // CONTINUATION frame's payload length
4680
Willy Tarreau7838a792019-08-12 18:42:03 +02004681 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 +01004682 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4683 /* no more data, the buffer may be full, either due to
4684 * too large a frame or because of too large a hole that
4685 * we're going to compact at the end.
4686 */
4687 goto leave;
4688 }
4689
4690 if (hdr.ft != H2_FT_CONTINUATION) {
4691 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004692 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 +01004693 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004694 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004695 goto fail;
4696 }
4697
4698 if (hdr.sid != h2c->dsi) {
4699 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004700 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 +01004701 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004702 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004703 goto fail;
4704 }
4705
4706 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4707 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004708 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 +01004709 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4710 goto fail;
4711 }
4712
4713 /* detect when we must stop aggragating frames */
4714 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4715
4716 /* Take as much as we can of the CONTINUATION frame's payload */
4717 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4718 if (clen > hdr.len)
4719 clen = hdr.len;
4720
4721 /* Move the frame's payload over the padding, hole and frame
4722 * header. At least one of hole or dpl is null (see diagrams
4723 * above). The hole moves after the new aggragated frame.
4724 */
4725 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 +02004726 h2c->dfl += hdr.len - h2c->dpl;
Willy Tarreauea18f862018-12-22 20:19:26 +01004727 hole += h2c->dpl + 9;
4728 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004729 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 +01004730 goto next_frame;
4731 }
4732
4733 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004734
Willy Tarreau13278b42017-10-13 19:23:14 +02004735 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004736 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004737 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004738 copy = alloc_trash_chunk();
4739 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004740 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 +02004741 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4742 goto fail;
4743 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004744 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4745 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4746 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004747 }
4748
Willy Tarreau13278b42017-10-13 19:23:14 +02004749 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4750 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004751 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004752 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004753 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 +01004754 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004755 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004756 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004757 }
4758
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004759 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004760 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 +01004761 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4762 goto fail;
4763 }
4764
Willy Tarreau13278b42017-10-13 19:23:14 +02004765 hdrs += 5; // stream dep = 4, weight = 1
4766 flen -= 5;
4767 }
4768
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004769 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004770 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 +01004771 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004772 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004773 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004774
Willy Tarreau937f7602018-02-26 15:22:17 +01004775 /* we can't retry a failed decompression operation so we must be very
4776 * careful not to take any risks. In practice the output buffer is
4777 * always empty except maybe for trailers, in which case we simply have
4778 * to wait for the upper layer to finish consuming what is available.
4779 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004780 htx = htx_from_buf(rxbuf);
4781 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004782 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 +02004783 h2c->flags |= H2_CF_DEM_SFULL;
4784 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004785 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004786
Willy Tarreau25919232019-01-03 14:48:18 +01004787 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004788 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4789 sizeof(list)/sizeof(list[0]), tmp);
4790 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004791 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 +01004792 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4793 goto fail;
4794 }
4795
Willy Tarreau25919232019-01-03 14:48:18 +01004796 /* The PACK decompressor was updated, let's update the input buffer and
4797 * the parser's state to commit these changes and allow us to later
4798 * fail solely on the stream if needed.
4799 */
4800 b_del(&h2c->dbuf, h2c->dfl + hole);
4801 h2c->dfl = hole = 0;
4802 h2c->st0 = H2_CS_FRAME_H;
4803
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004804 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004805 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Christopher Fauletd0db4232021-01-22 11:46:30 +01004806 msgf |= (*flags & H2_SF_BODY_TUNNEL) ? H2_MSGF_BODY_TUNNEL: 0;
Amaury Denoyelle74162742020-12-11 17:53:05 +01004807 /* If an Extended CONNECT has been sent on this stream, set message flag
Ilya Shipitsinacf84592021-02-06 22:29:08 +05004808 * to convert 200 response to 101 htx response */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004809 msgf |= (*flags & H2_SF_EXT_CONNECT_SENT) ? H2_MSGF_EXT_CONNECT: 0;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004810
Willy Tarreau88d138e2019-01-02 19:38:14 +01004811 if (*flags & H2_SF_HEADERS_RCVD)
4812 goto trailers;
4813
4814 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004815 if (h2c->flags & H2_CF_IS_BACK)
Amaury Denoyelle74162742020-12-11 17:53:05 +01004816 outlen = h2_make_htx_response(list, htx, &msgf, body_len, upgrade_protocol);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004817 else
4818 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004819
Christopher Faulet3d875582021-04-26 17:46:13 +02004820 if (outlen < 0 || htx_free_space(htx) < global.tune.maxrewrite) {
Willy Tarreau25919232019-01-03 14:48:18 +01004821 /* too large headers? this is a stream error only */
Christopher Faulet3d875582021-04-26 17:46:13 +02004822 TRACE_STATE("message headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
4823 htx->flags |= HTX_FL_PARSING_ERROR;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004824 goto fail;
4825 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004826
Willy Tarreau174b06a2018-04-25 18:13:58 +02004827 if (msgf & H2_MSGF_BODY) {
4828 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004829 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004830 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004831 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004832 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004833 }
Christopher Faulet7d247f02020-12-02 14:26:36 +01004834 if (msgf & H2_MSGF_BODYLESS_RSP)
4835 *flags |= H2_SF_BODYLESS_RESP;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004836
Christopher Fauletd0db4232021-01-22 11:46:30 +01004837 if (msgf & H2_MSGF_BODY_TUNNEL)
4838 *flags |= H2_SF_BODY_TUNNEL;
4839 else {
4840 /* Abort the tunnel attempt, if any */
4841 if (*flags & H2_SF_BODY_TUNNEL)
4842 *flags |= H2_SF_TUNNEL_ABRT;
4843 *flags &= ~H2_SF_BODY_TUNNEL;
4844 }
4845
Willy Tarreau88d138e2019-01-02 19:38:14 +01004846 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004847 /* indicate that a HEADERS frame was received for this stream, except
4848 * for 1xx responses. For 1xx responses, another HEADERS frame is
4849 * expected.
4850 */
4851 if (!(msgf & H2_MSGF_RSP_1XX))
4852 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004853
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004854 if (h2c->dff & H2_F_HEADERS_END_STREAM) {
4855 /* no more data are expected for this message */
4856 htx->flags |= HTX_FL_EOM;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004857 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004858
Amaury Denoyelleefe22762020-12-11 17:53:08 +01004859 if (msgf & H2_MSGF_EXT_CONNECT)
4860 *flags |= H2_SF_EXT_CONNECT_RCVD;
4861
Willy Tarreau86277d42019-01-02 15:36:11 +01004862 /* success */
4863 ret = 1;
4864
Willy Tarreau68dd9852017-07-03 14:44:26 +02004865 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004866 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004867 * move the remaining data over it.
4868 */
4869 if (hole) {
4870 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4871 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4872 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4873 b_sub(&h2c->dbuf, hole);
4874 }
4875
Christopher Faulet07f88d72021-04-21 10:39:53 +02004876 if (b_full(&h2c->dbuf) && h2c->dfl) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004877 /* too large frames */
4878 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004879 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004880 }
4881
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004882 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004883 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004884 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004885 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004886 return ret;
4887
Willy Tarreau68dd9852017-07-03 14:44:26 +02004888 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004889 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004890 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004891
4892 trailers:
4893 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004894 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4895 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004896 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 +01004897 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004898 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau88d138e2019-01-02 19:38:14 +01004899 goto fail;
4900 }
4901
Christopher Faulet9b79a102019-07-15 11:22:56 +02004902 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02004903 if (h2_make_htx_trailers(list, htx) <= 0) {
4904 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 +02004905 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004906 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004907 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02004908}
4909
Christopher Faulet9b79a102019-07-15 11:22:56 +02004910/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004911 * parser state is automatically updated. Returns > 0 if it could completely
4912 * send the current frame, 0 if it couldn't complete, in which case
4913 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
4914 * DATA frame can return 0 as a valid result). Stream errors are reported in
4915 * h2s->errcode and connection errors in h2c->errcode. The caller must already
4916 * have checked the frame header and ensured that the frame was complete or the
4917 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02004918 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01004919static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02004920{
4921 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004922 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004923 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004924 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004925 struct buffer *csbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004926 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02004927
Willy Tarreau7838a792019-08-12 18:42:03 +02004928 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
4929
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004930 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02004931
Olivier Houchard638b7992018-08-16 15:41:52 +02004932 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004933 if (!csbuf) {
4934 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02004935 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 +01004936 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004937 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004938 htx = htx_from_buf(csbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004939
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004940try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004941 flen = h2c->dfl - h2c->dpl;
4942 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01004943 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004944
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004945 if (flen > b_data(&h2c->dbuf)) {
4946 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004947 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01004948 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004949 }
4950
Christopher Faulet9b79a102019-07-15 11:22:56 +02004951 block = htx_free_data_space(htx);
4952 if (!block) {
4953 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004954 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 +02004955 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004956 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004957 if (flen > block)
4958 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004959
Christopher Faulet9b79a102019-07-15 11:22:56 +02004960 /* here, flen is the max we can copy into the output buffer */
4961 block = b_contig_data(&h2c->dbuf, 0);
4962 if (flen > block)
4963 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004964
Christopher Faulet9b79a102019-07-15 11:22:56 +02004965 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02004966 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 +02004967
Christopher Faulet9b79a102019-07-15 11:22:56 +02004968 b_del(&h2c->dbuf, sent);
4969 h2c->dfl -= sent;
4970 h2c->rcvd_c += sent;
4971 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02004972
Christopher Faulet9b79a102019-07-15 11:22:56 +02004973 if (h2s->flags & H2_SF_DATA_CLEN) {
4974 h2s->body_len -= sent;
4975 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004976 }
4977
Christopher Faulet9b79a102019-07-15 11:22:56 +02004978 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004979 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004980 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 +01004981 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004982 }
4983
Christopher Faulet9b79a102019-07-15 11:22:56 +02004984 goto try_again;
4985
Willy Tarreau4a28da12018-01-04 14:41:00 +01004986 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004987 /* here we're done with the frame, all the payload (except padding) was
4988 * transferred.
4989 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02004990
Christopher Faulet5be651d2021-01-22 15:28:03 +01004991 if (!(h2s->flags & H2_SF_BODY_TUNNEL) && (h2c->dff & H2_F_DATA_END_STREAM)) {
4992 /* no more data are expected for this message. This add the EOM
4993 * flag but only on the response path or if no tunnel attempt
4994 * was aborted. Otherwise (request path + tunnel abrted), the
4995 * EOM was already reported.
4996 */
Christopher Faulet33724322021-02-10 09:04:59 +01004997 if ((h2c->flags & H2_CF_IS_BACK) || !(h2s->flags & H2_SF_TUNNEL_ABRT)) {
4998 /* If we receive an empty DATA frame with ES flag while the HTX
4999 * message is empty, we must be sure to push a block to be sure
5000 * the HTX EOM flag will be handled on the other side. It is a
5001 * workaround because for now it is not possible to push empty
5002 * HTX DATA block. And without this block, there is no way to
5003 * "commit" the end of the message.
5004 */
5005 if (htx_is_empty(htx)) {
5006 if (!htx_add_endof(htx, HTX_BLK_EOT))
5007 goto fail;
5008 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005009 htx->flags |= HTX_FL_EOM;
Christopher Faulet33724322021-02-10 09:04:59 +01005010 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02005011 }
5012
Willy Tarreaud1023bb2018-03-22 16:53:12 +01005013 h2c->rcvd_c += h2c->dpl;
5014 h2c->rcvd_s += h2c->dpl;
5015 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005016 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet9b79a102019-07-15 11:22:56 +02005017 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005018 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005019 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01005020 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005021 if (htx)
5022 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005023 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01005024 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005025}
5026
Willy Tarreau115e83b2018-12-01 19:17:53 +01005027/* Try to send a HEADERS frame matching HTX response present in HTX message
5028 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5029 * must check the stream's status to detect any error which might have happened
5030 * subsequently to a successful send. The htx blocks are automatically removed
5031 * from the message. The htx message is assumed to be valid since produced from
5032 * the internal code, hence it contains a start line, an optional series of
5033 * header blocks and an end of header, otherwise an invalid frame could be
5034 * emitted and the resulting htx message could be left in an inconsistent state.
5035 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005036static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005037{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005038 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01005039 struct h2c *h2c = h2s->h2c;
5040 struct htx_blk *blk;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005041 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005042 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005043 struct htx_sl *sl;
5044 enum htx_blk_type type;
5045 int es_now = 0;
5046 int ret = 0;
5047 int hdr;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005048
Willy Tarreau7838a792019-08-12 18:42:03 +02005049 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5050
Willy Tarreau115e83b2018-12-01 19:17:53 +01005051 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005052 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005053 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005054 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005055 return 0;
5056 }
5057
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005058 /* get the start line (we do have one) and the rest of the headers,
5059 * that we dump starting at header 0 */
5060 sl = NULL;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005061 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005062 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005063 type = htx_get_blk_type(blk);
5064
5065 if (type == HTX_BLK_UNUSED)
5066 continue;
5067
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005068 if (type == HTX_BLK_EOH)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005069 break;
5070
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005071 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005072 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005073 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5074 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5075 goto fail;
5076 }
5077
5078 list[hdr].n = htx_get_blk_name(htx, blk);
5079 list[hdr].v = htx_get_blk_value(htx, blk);
5080 hdr++;
5081 }
5082 else if (type == HTX_BLK_RES_SL) {
Christopher Faulet56498132021-01-29 11:39:43 +01005083 BUG_ON(sl); /* Only one start-line expected */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005084 sl = htx_get_blk_ptr(htx, blk);
5085 h2s->status = sl->info.res.status;
Christopher Faulet7d247f02020-12-02 14:26:36 +01005086 if (h2s->status == 204 || h2s->status == 304)
5087 h2s->flags |= H2_SF_BODYLESS_RESP;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005088 if (h2s->status < 100 || h2s->status > 999) {
5089 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5090 goto fail;
5091 }
5092 else if (h2s->status == 101) {
Amaury Denoyelleefe22762020-12-11 17:53:08 +01005093 if (unlikely(h2s->flags & H2_SF_EXT_CONNECT_RCVD)) {
5094 /* If an Extended CONNECT has been received, we need to convert 101 to 200 */
5095 h2s->status = 200;
5096 h2s->flags &= ~H2_SF_EXT_CONNECT_RCVD;
5097 }
5098 else {
5099 /* Otherwise, 101 responses are not supported in H2, so return a error (RFC7540#8.1.1) */
5100 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5101 goto fail;
5102 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005103 }
5104 else if ((h2s->flags & H2_SF_BODY_TUNNEL) && h2s->status >= 300) {
5105 /* Abort the tunnel attempt */
5106 h2s->flags &= ~H2_SF_BODY_TUNNEL;
5107 h2s->flags |= H2_SF_TUNNEL_ABRT;
5108 }
5109 }
5110 else {
5111 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 +01005112 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005113 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005114 }
5115
Christopher Faulet56498132021-01-29 11:39:43 +01005116 /* The start-line me be defined */
5117 BUG_ON(!sl);
5118
Willy Tarreau115e83b2018-12-01 19:17:53 +01005119 /* marker for end of headers */
5120 list[hdr].n = ist("");
5121
Willy Tarreau9c218e72019-05-26 10:08:28 +02005122 mbuf = br_tail(h2c->mbuf);
5123 retry:
5124 if (!h2_get_buf(h2c, mbuf)) {
5125 h2c->flags |= H2_CF_MUX_MALLOC;
5126 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005127 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 +02005128 return 0;
5129 }
5130
Willy Tarreau115e83b2018-12-01 19:17:53 +01005131 chunk_reset(&outbuf);
5132
5133 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005134 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5135 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005136 break;
5137 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005138 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01005139 }
5140
5141 if (outbuf.size < 9)
5142 goto full;
5143
5144 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5145 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5146 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5147 outbuf.data = 9;
5148
5149 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01005150 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005151 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005152 goto realign_again;
5153 goto full;
5154 }
5155
5156 /* encode all headers, stop at empty name */
5157 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5158 /* these ones do not exist in H2 and must be dropped. */
5159 if (isteq(list[hdr].n, ist("connection")) ||
5160 isteq(list[hdr].n, ist("proxy-connection")) ||
5161 isteq(list[hdr].n, ist("keep-alive")) ||
5162 isteq(list[hdr].n, ist("upgrade")) ||
5163 isteq(list[hdr].n, ist("transfer-encoding")))
5164 continue;
5165
Christopher Faulet86d144c2019-08-14 16:32:25 +02005166 /* Skip all pseudo-headers */
5167 if (*(list[hdr].n.ptr) == ':')
5168 continue;
5169
Willy Tarreau115e83b2018-12-01 19:17:53 +01005170 if (isteq(list[hdr].n, ist("")))
5171 break; // end
5172
5173 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
5174 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005175 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005176 goto realign_again;
5177 goto full;
5178 }
5179 }
5180
Willy Tarreaucb985a42019-10-07 16:56:34 +02005181 /* update the frame's size */
5182 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5183
5184 if (outbuf.data > h2c->mfs + 9) {
5185 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5186 /* output full */
5187 if (b_space_wraps(mbuf))
5188 goto realign_again;
5189 goto full;
5190 }
5191 }
5192
Willy Tarreau38b5bec2021-06-17 08:40:04 +02005193 TRACE_USER("sent H2 response ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5194
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005195 /* remove all header blocks including the EOH and compute the
5196 * corresponding size.
Willy Tarreau115e83b2018-12-01 19:17:53 +01005197 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005198 ret = 0;
5199 blk = htx_get_head_blk(htx);
5200 while (blk) {
5201 type = htx_get_blk_type(blk);
5202 ret += htx_get_blksz(blk);
5203 blk = htx_remove_blk(htx, blk);
5204 /* The removed block is the EOH */
5205 if (type == HTX_BLK_EOH)
5206 break;
Christopher Faulet5be651d2021-01-22 15:28:03 +01005207 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005208
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005209 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) {
5210 /* Response already closed: add END_STREAM */
5211 es_now = 1;
5212 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005213 else if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && h2s->status >= 200) {
5214 /* EOM+empty: we may need to add END_STREAM except for 1xx
Christopher Faulet991febd2020-12-02 15:17:31 +01005215 * responses and tunneled response.
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005216 */
Christopher Faulet991febd2020-12-02 15:17:31 +01005217 if (!(h2s->flags & H2_SF_BODY_TUNNEL) || h2s->status >= 300)
5218 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005219 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005220
Willy Tarreau115e83b2018-12-01 19:17:53 +01005221 if (es_now)
5222 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5223
5224 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005225 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01005226
5227 /* indicates the HEADERS frame was sent, except for 1xx responses. For
5228 * 1xx responses, another HEADERS frame is expected.
5229 */
Christopher Faulet89899422020-12-07 18:24:43 +01005230 if (h2s->status >= 200)
Christopher Faulet0b465482019-02-19 15:14:23 +01005231 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005232
Willy Tarreau115e83b2018-12-01 19:17:53 +01005233 if (es_now) {
5234 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005235 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 +01005236 if (h2s->st == H2_SS_OPEN)
5237 h2s->st = H2_SS_HLOC;
5238 else
5239 h2s_close(h2s);
5240 }
5241
5242 /* OK we could properly deliver the response */
Willy Tarreau115e83b2018-12-01 19:17:53 +01005243 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005244 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005245 return ret;
5246 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005247 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5248 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005249 h2c->flags |= H2_CF_MUX_MFULL;
5250 h2s->flags |= H2_SF_BLK_MROOM;
5251 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005252 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 +01005253 goto end;
5254 fail:
5255 /* unparsable HTX messages, too large ones to be produced in the local
5256 * list etc go here (unrecoverable errors).
5257 */
5258 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5259 ret = 0;
5260 goto end;
5261}
5262
Willy Tarreau80739692018-10-05 11:35:57 +02005263/* Try to send a HEADERS frame matching HTX request present in HTX message
5264 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5265 * must check the stream's status to detect any error which might have happened
5266 * subsequently to a successful send. The htx blocks are automatically removed
5267 * from the message. The htx message is assumed to be valid since produced from
5268 * the internal code, hence it contains a start line, an optional series of
5269 * header blocks and an end of header, otherwise an invalid frame could be
5270 * emitted and the resulting htx message could be left in an inconsistent state.
5271 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005272static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005273{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005274 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005275 struct h2c *h2c = h2s->h2c;
5276 struct htx_blk *blk;
Willy Tarreau80739692018-10-05 11:35:57 +02005277 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005278 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005279 struct htx_sl *sl;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005280 struct ist meth, uri, auth, host = IST_NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005281 enum htx_blk_type type;
5282 int es_now = 0;
5283 int ret = 0;
5284 int hdr;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005285 int extended_connect = 0;
Willy Tarreau80739692018-10-05 11:35:57 +02005286
Willy Tarreau7838a792019-08-12 18:42:03 +02005287 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5288
Willy Tarreau80739692018-10-05 11:35:57 +02005289 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005290 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005291 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005292 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005293 return 0;
5294 }
5295
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005296 /* get the start line (we do have one) and the rest of the headers,
5297 * that we dump starting at header 0 */
5298 sl = NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005299 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005300 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005301 type = htx_get_blk_type(blk);
5302
5303 if (type == HTX_BLK_UNUSED)
5304 continue;
5305
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005306 if (type == HTX_BLK_EOH)
Willy Tarreau80739692018-10-05 11:35:57 +02005307 break;
5308
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005309 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005310 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005311 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5312 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5313 goto fail;
5314 }
Willy Tarreau80739692018-10-05 11:35:57 +02005315
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005316 list[hdr].n = htx_get_blk_name(htx, blk);
5317 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005318
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005319 /* Skip header if same name is used to add the server name */
5320 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name &&
5321 isteq(list[hdr].n, ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len)))
5322 continue;
Christopher Faulet67d58092019-10-02 10:51:38 +02005323
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005324 /* Convert connection: upgrade to Extended connect from rfc 8441 */
Christopher Faulet673504a2021-09-09 09:52:51 +02005325 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteqi(list[hdr].n, ist("connection"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005326 /* rfc 7230 #6.1 Connection = list of tokens */
5327 struct ist connection_ist = list[hdr].v;
5328 do {
5329 if (isteqi(iststop(connection_ist, ','),
5330 ist("upgrade"))) {
Amaury Denoyelle68993a12021-10-18 09:43:29 +02005331 if (!(h2c->flags & H2_CF_RCVD_RFC8441)) {
5332 TRACE_STATE("reject upgrade because of no RFC8441 support", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5333 goto fail;
5334 }
5335
Amaury Denoyellea1fa1542021-10-18 10:05:16 +02005336 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 +01005337 h2s->flags |= (H2_SF_BODY_TUNNEL|H2_SF_EXT_CONNECT_SENT);
5338 sl->info.req.meth = HTTP_METH_CONNECT;
5339 meth = ist("CONNECT");
5340
5341 extended_connect = 1;
5342 break;
5343 }
5344
5345 connection_ist = istadv(istfind(connection_ist, ','), 1);
5346 } while (istlen(connection_ist));
5347 }
5348
Christopher Faulet673504a2021-09-09 09:52:51 +02005349 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteq(list[hdr].n, ist("upgrade"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005350 /* rfc 7230 #6.7 Upgrade = list of protocols
5351 * rfc 8441 #4 Extended connect = :protocol is single-valued
5352 *
5353 * only first HTTP/1 protocol is preserved
5354 */
5355 const struct ist protocol = iststop(list[hdr].v, ',');
5356 /* upgrade_protocol field is 16 bytes long in h2s */
5357 istpad(h2s->upgrade_protocol, isttrim(protocol, 15));
5358 }
5359
5360 if (isteq(list[hdr].n, ist("host")))
5361 host = list[hdr].v;
5362
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005363 hdr++;
5364 }
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005365 else if (type == HTX_BLK_REQ_SL) {
5366 BUG_ON(sl); /* Only one start-line expected */
5367 sl = htx_get_blk_ptr(htx, blk);
5368 meth = htx_sl_req_meth(sl);
5369 uri = htx_sl_req_uri(sl);
5370 if (sl->info.req.meth == HTTP_METH_HEAD)
5371 h2s->flags |= H2_SF_BODYLESS_RESP;
5372 if (unlikely(uri.len == 0)) {
5373 TRACE_ERROR("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5374 goto fail;
5375 }
5376 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005377 else {
5378 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5379 goto fail;
5380 }
Willy Tarreau80739692018-10-05 11:35:57 +02005381 }
5382
Christopher Faulet56498132021-01-29 11:39:43 +01005383 /* The start-line me be defined */
5384 BUG_ON(!sl);
5385
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005386 /* Now add the server name to a header (if requested) */
5387 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name) {
5388 struct server *srv = objt_server(h2c->conn->target);
5389
5390 if (srv) {
5391 list[hdr].n = ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len);
5392 list[hdr].v = ist(srv->id);
5393 hdr++;
5394 }
5395 }
5396
Willy Tarreau80739692018-10-05 11:35:57 +02005397 /* marker for end of headers */
5398 list[hdr].n = ist("");
5399
Willy Tarreau9c218e72019-05-26 10:08:28 +02005400 mbuf = br_tail(h2c->mbuf);
5401 retry:
5402 if (!h2_get_buf(h2c, mbuf)) {
5403 h2c->flags |= H2_CF_MUX_MALLOC;
5404 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005405 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 +02005406 return 0;
5407 }
5408
Willy Tarreau80739692018-10-05 11:35:57 +02005409 chunk_reset(&outbuf);
5410
5411 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005412 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5413 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005414 break;
5415 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005416 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005417 }
5418
5419 if (outbuf.size < 9)
5420 goto full;
5421
5422 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5423 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5424 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5425 outbuf.data = 9;
5426
5427 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005428 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005429 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005430 goto realign_again;
5431 goto full;
5432 }
5433
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005434 auth = ist(NULL);
5435
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005436 /* RFC7540 #8.3: the CONNECT method must have :
5437 * - :authority set to the URI part (host:port)
5438 * - :method set to CONNECT
5439 * - :scheme and :path omitted
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005440 *
5441 * Note that this is not applicable in case of the Extended CONNECT
5442 * protocol from rfc 8441.
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005443 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005444 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT) && !extended_connect) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005445 auth = uri;
5446
5447 if (!hpack_encode_header(&outbuf, ist(":authority"), auth)) {
5448 /* output full */
5449 if (b_space_wraps(mbuf))
5450 goto realign_again;
5451 goto full;
5452 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005453 h2s->flags |= H2_SF_BODY_TUNNEL;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005454 } else {
5455 /* other methods need a :scheme. If an authority is known from
5456 * the request line, it must be sent, otherwise only host is
5457 * sent. Host is never sent as the authority.
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005458 *
5459 * This code is also applicable for Extended CONNECT protocol
5460 * from rfc 8441.
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005461 */
5462 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005463
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005464 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5465 /* the URI seems to start with a scheme */
5466 int len = 1;
5467
5468 while (len < uri.len && uri.ptr[len] != ':')
5469 len++;
5470
5471 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5472 /* make the uri start at the authority now */
Tim Duesterhus9f75ed12021-03-02 18:57:26 +01005473 scheme = ist2(uri.ptr, len);
Tim Duesterhus154374c2021-03-02 18:57:27 +01005474 uri = istadv(uri, len + 3);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005475
5476 /* find the auth part of the URI */
Tim Duesterhus92c696e2021-02-28 16:11:36 +01005477 auth = ist2(uri.ptr, 0);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005478 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5479 auth.len++;
5480
Tim Duesterhus154374c2021-03-02 18:57:27 +01005481 uri = istadv(uri, auth.len);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005482 }
5483 }
5484
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005485 /* For Extended CONNECT, the :authority must be present.
5486 * Use host value for it.
5487 */
5488 if (unlikely(extended_connect) && isttest(host))
5489 auth = host;
5490
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005491 if (!scheme.len) {
5492 /* no explicit scheme, we're using an origin-form URI,
5493 * probably from an H1 request transcoded to H2 via an
5494 * external layer, then received as H2 without authority.
5495 * So we have to look up the scheme from the HTX flags.
5496 * In such a case only http and https are possible, and
5497 * https is the default (sent by browsers).
5498 */
5499 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5500 scheme = ist("http");
5501 else
5502 scheme = ist("https");
5503 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005504
5505 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005506 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005507 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005508 goto realign_again;
5509 goto full;
5510 }
Willy Tarreau80739692018-10-05 11:35:57 +02005511
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005512 if (auth.len && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005513 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005514 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005515 goto realign_again;
5516 goto full;
5517 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005518
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005519 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5520 * be sent as '/' or '*'.
5521 */
5522 if (unlikely(!uri.len)) {
5523 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5524 uri = ist("*");
5525 else
5526 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005527 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005528
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005529 if (!hpack_encode_path(&outbuf, uri)) {
5530 /* output full */
5531 if (b_space_wraps(mbuf))
5532 goto realign_again;
5533 goto full;
5534 }
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005535
5536 /* encode the pseudo-header protocol from rfc8441 if using
5537 * Extended CONNECT method.
5538 */
5539 if (unlikely(extended_connect)) {
5540 const struct ist protocol = ist(h2s->upgrade_protocol);
5541 if (isttest(protocol)) {
5542 if (!hpack_encode_header(&outbuf,
5543 ist(":protocol"),
5544 protocol)) {
5545 /* output full */
5546 if (b_space_wraps(mbuf))
5547 goto realign_again;
5548 goto full;
5549 }
5550 }
5551 }
Willy Tarreau80739692018-10-05 11:35:57 +02005552 }
5553
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005554 /* encode all headers, stop at empty name. Host is only sent if we
5555 * do not provide an authority.
5556 */
Willy Tarreau80739692018-10-05 11:35:57 +02005557 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005558 struct ist n = list[hdr].n;
5559 struct ist v = list[hdr].v;
5560
Willy Tarreau80739692018-10-05 11:35:57 +02005561 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005562 if (isteq(n, ist("connection")) ||
5563 (auth.len && isteq(n, ist("host"))) ||
5564 isteq(n, ist("proxy-connection")) ||
5565 isteq(n, ist("keep-alive")) ||
5566 isteq(n, ist("upgrade")) ||
5567 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005568 continue;
5569
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005570 if (isteq(n, ist("te"))) {
5571 /* "te" may only be sent with "trailers" if this value
5572 * is present, otherwise it must be deleted.
5573 */
5574 v = istist(v, ist("trailers"));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01005575 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005576 continue;
5577 v = ist("trailers");
5578 }
5579
Christopher Faulet86d144c2019-08-14 16:32:25 +02005580 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005581 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005582 continue;
5583
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005584 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005585 break; // end
5586
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005587 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005588 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005589 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005590 goto realign_again;
5591 goto full;
5592 }
5593 }
5594
Willy Tarreaucb985a42019-10-07 16:56:34 +02005595 /* update the frame's size */
5596 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5597
5598 if (outbuf.data > h2c->mfs + 9) {
5599 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5600 /* output full */
5601 if (b_space_wraps(mbuf))
5602 goto realign_again;
5603 goto full;
5604 }
5605 }
5606
Willy Tarreau38b5bec2021-06-17 08:40:04 +02005607 TRACE_USER("sent H2 request ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5608
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005609 /* remove all header blocks including the EOH and compute the
5610 * corresponding size.
Willy Tarreau80739692018-10-05 11:35:57 +02005611 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005612 ret = 0;
5613 blk = htx_get_head_blk(htx);
5614 while (blk) {
5615 type = htx_get_blk_type(blk);
5616 ret += htx_get_blksz(blk);
5617 blk = htx_remove_blk(htx, blk);
5618 /* The removed block is the EOH */
5619 if (type == HTX_BLK_EOH)
5620 break;
Christopher Fauletd0db4232021-01-22 11:46:30 +01005621 }
Willy Tarreau80739692018-10-05 11:35:57 +02005622
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005623 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) {
5624 /* Request already closed: add END_STREAM */
Willy Tarreau80739692018-10-05 11:35:57 +02005625 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005626 }
5627 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5628 /* EOM+empty: we may need to add END_STREAM (except for CONNECT
5629 * request)
5630 */
5631 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5632 es_now = 1;
5633 }
Willy Tarreau80739692018-10-05 11:35:57 +02005634
Willy Tarreau80739692018-10-05 11:35:57 +02005635 if (es_now)
5636 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5637
5638 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005639 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005640 h2s->flags |= H2_SF_HEADERS_SENT;
5641 h2s->st = H2_SS_OPEN;
5642
Willy Tarreau80739692018-10-05 11:35:57 +02005643 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005644 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 +02005645 // trim any possibly pending data (eg: inconsistent content-length)
5646 h2s->flags |= H2_SF_ES_SENT;
5647 h2s->st = H2_SS_HLOC;
5648 }
5649
Willy Tarreau80739692018-10-05 11:35:57 +02005650 end:
5651 return ret;
5652 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005653 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5654 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005655 h2c->flags |= H2_CF_MUX_MFULL;
5656 h2s->flags |= H2_SF_BLK_MROOM;
5657 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005658 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 +02005659 goto end;
5660 fail:
5661 /* unparsable HTX messages, too large ones to be produced in the local
5662 * list etc go here (unrecoverable errors).
5663 */
5664 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5665 ret = 0;
5666 goto end;
5667}
5668
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005669/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005670 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5671 * caller must check the stream's status to detect any error which might have
5672 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005673 * consumed, or zero if nothing done.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005674 */
Christopher Faulet142854b2020-12-02 15:12:40 +01005675static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005676{
5677 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005678 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005679 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005680 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005681 size_t total = 0;
5682 int es_now = 0;
5683 int bsize; /* htx block size */
5684 int fsize; /* h2 frame size */
5685 struct htx_blk *blk;
5686 enum htx_blk_type type;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005687 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005688
Willy Tarreau7838a792019-08-12 18:42:03 +02005689 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5690
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005691 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005692 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005693 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005694 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005695 goto end;
5696 }
5697
Willy Tarreau98de12a2018-12-12 07:03:00 +01005698 htx = htx_from_buf(buf);
5699
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005700 /* We only come here with HTX_BLK_DATA blocks */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005701
5702 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005703 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005704 goto end;
5705
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005706 if ((h2c->flags & H2_CF_IS_BACK) &&
Christopher Fauletf95f8762021-01-22 11:59:07 +01005707 (h2s->flags & (H2_SF_HEADERS_RCVD|H2_SF_BODY_TUNNEL)) == H2_SF_BODY_TUNNEL) {
5708 /* The response HEADERS frame not received yet. Thus the tunnel
5709 * is not fully established yet. In this situation, we block
5710 * data sending.
5711 */
5712 h2s->flags |= H2_SF_BLK_MBUSY;
5713 TRACE_STATE("Request DATA frame blocked waiting for tunnel establishment", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5714 goto end;
5715 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01005716 else if ((h2c->flags & H2_CF_IS_BACK) && (h2s->flags & H2_SF_TUNNEL_ABRT)) {
5717 /* a tunnel attempt was aborted but the is pending raw data to xfer to the server.
5718 * Thus the stream is closed with the CANCEL error. The error will be reported to
5719 * the upper layer as aserver abort. But at this stage there is nothing more we can
5720 * do. We just wait for the end of the response to be sure to not truncate it.
5721 */
5722 if (!(h2s->flags & H2_SF_ES_RCVD)) {
5723 TRACE_STATE("Request DATA frame blocked waiting end of aborted tunnel", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5724 h2s->flags |= H2_SF_BLK_MBUSY;
5725 }
5726 else {
5727 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5728 h2s_error(h2s, H2_ERR_CANCEL);
5729 }
5730 goto end;
5731 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005732
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005733 blk = htx_get_head_blk(htx);
5734 type = htx_get_blk_type(blk);
5735 bsize = htx_get_blksz(blk);
5736 fsize = bsize;
5737 trunc_out = 0;
5738 if (type != HTX_BLK_DATA)
5739 goto end;
5740
Willy Tarreau9c218e72019-05-26 10:08:28 +02005741 mbuf = br_tail(h2c->mbuf);
5742 retry:
5743 if (!h2_get_buf(h2c, mbuf)) {
5744 h2c->flags |= H2_CF_MUX_MALLOC;
5745 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005746 TRACE_STATE("waiting for room in output buffer", H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau9c218e72019-05-26 10:08:28 +02005747 goto end;
5748 }
5749
Willy Tarreau98de12a2018-12-12 07:03:00 +01005750 /* Perform some optimizations to reduce the number of buffer copies.
5751 * First, if the mux's buffer is empty and the htx area contains
5752 * exactly one data block of the same size as the requested count, and
5753 * this count fits within the frame size, the stream's window size, and
5754 * the connection's window size, then it's possible to simply swap the
5755 * caller's buffer with the mux's output buffer and adjust offsets and
5756 * length to match the entire DATA HTX block in the middle. In this
5757 * case we perform a true zero-copy operation from end-to-end. This is
5758 * the situation that happens all the time with large files. Second, if
5759 * this is not possible, but the mux's output buffer is empty, we still
5760 * have an opportunity to avoid the copy to the intermediary buffer, by
5761 * making the intermediary buffer's area point to the output buffer's
5762 * area. In this case we want to skip the HTX header to make sure that
5763 * copies remain aligned and that this operation remains possible all
5764 * the time. This goes for headers, data blocks and any data extracted
5765 * from the HTX blocks.
5766 */
5767 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005768 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005769 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005770 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005771
Willy Tarreaubcc45952019-05-26 10:05:50 +02005772 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005773 /* Too bad there are data left there. We're willing to memcpy/memmove
5774 * up to 1/4 of the buffer, which means that it's OK to copy a large
5775 * frame into a buffer containing few data if it needs to be realigned,
5776 * and that it's also OK to copy few data without realigning. Otherwise
5777 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005778 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005779 if (fsize + 9 <= b_room(mbuf) &&
5780 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005781 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5782 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 +01005783 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005784 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005785
Willy Tarreau9c218e72019-05-26 10:08:28 +02005786 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5787 goto retry;
5788
Willy Tarreau98de12a2018-12-12 07:03:00 +01005789 h2c->flags |= H2_CF_MUX_MFULL;
5790 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005791 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 +01005792 goto end;
5793 }
5794
Christopher Faulet925abdf2021-04-27 22:51:07 +02005795 if (htx->flags & HTX_FL_EOM) {
5796 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5797 * message)
5798 */
5799 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5800 es_now = 1;
5801 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005802 /* map an H2 frame to the HTX block so that we can put the
5803 * frame header there.
5804 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005805 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5806 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005807
5808 /* prepend an H2 DATA frame header just before the DATA block */
5809 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5810 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
Christopher Faulet925abdf2021-04-27 22:51:07 +02005811 if (es_now)
5812 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005813 h2_set_frame_size(outbuf.area, fsize);
5814
5815 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005816 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005817 h2c->mws -= fsize;
5818
5819 /* and exchange with our old area */
5820 buf->area = old_area;
5821 buf->data = buf->head = 0;
5822 total += fsize;
Christopher Faulet925abdf2021-04-27 22:51:07 +02005823 fsize = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005824
5825 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 +02005826 goto out;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005827 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005828
Willy Tarreau98de12a2018-12-12 07:03:00 +01005829 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005830 /* for DATA and EOM we'll have to emit a frame, even if empty */
5831
5832 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005833 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5834 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005835 break;
5836 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005837 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005838 }
5839
5840 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005841 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5842 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005843 h2c->flags |= H2_CF_MUX_MFULL;
5844 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005845 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005846 goto end;
5847 }
5848
5849 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5850 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5851 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5852 outbuf.data = 9;
5853
5854 /* we have in <fsize> the exact number of bytes we need to copy from
5855 * the HTX buffer. We need to check this against the connection's and
5856 * the stream's send windows, and to ensure that this fits in the max
5857 * frame size and in the buffer's available space minus 9 bytes (for
5858 * the frame header). The connection's flow control is applied last so
5859 * that we can use a separate list of streams which are immediately
5860 * unblocked on window opening. Note: we don't implement padding.
5861 */
5862
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005863 if (!fsize)
5864 goto send_empty;
5865
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005866 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005867 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreau2b718102021-04-21 07:32:39 +02005868 if (LIST_INLIST(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005869 LIST_DEL_INIT(&h2s->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02005870 LIST_APPEND(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005871 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 +01005872 goto end;
5873 }
5874
Willy Tarreauee573762018-12-04 15:25:57 +01005875 if (fsize > count)
5876 fsize = count;
5877
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005878 if (fsize > h2s_mws(h2s))
5879 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005880
5881 if (h2c->mfs && fsize > h2c->mfs)
5882 fsize = h2c->mfs; // >0
5883
5884 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005885 /* It doesn't fit at once. If it at least fits once split and
5886 * the amount of data to move is low, let's defragment the
5887 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005888 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005889 if (b_space_wraps(mbuf) &&
5890 (fsize + 9 <= b_room(mbuf)) &&
5891 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005892 goto realign_again;
5893 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005894 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005895
5896 if (fsize <= 0) {
5897 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005898 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5899 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005900 h2c->flags |= H2_CF_MUX_MFULL;
5901 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005902 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005903 goto end;
5904 }
5905 }
5906
5907 if (h2c->mws <= 0) {
5908 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005909 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 +01005910 goto end;
5911 }
5912
5913 if (fsize > h2c->mws)
5914 fsize = h2c->mws;
5915
5916 /* now let's copy this this into the output buffer */
5917 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005918 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005919 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005920 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005921
5922 send_empty:
5923 /* update the frame's size */
5924 h2_set_frame_size(outbuf.area, fsize);
5925
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005926 /* consume incoming HTX block */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005927 total += fsize;
5928 if (fsize == bsize) {
5929 htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005930 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5931 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5932 * message)
5933 */
5934 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5935 es_now = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02005936 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005937 }
5938 else {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005939 /* we've truncated this block */
5940 htx_cut_data_blk(htx, blk, fsize);
5941 }
5942
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005943 if (es_now)
5944 outbuf.area[4] |= H2_F_DATA_END_STREAM;
5945
5946 /* commit the H2 response */
5947 b_add(mbuf, fsize + 9);
5948
Christopher Faulet925abdf2021-04-27 22:51:07 +02005949 out:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005950 if (es_now) {
5951 if (h2s->st == H2_SS_OPEN)
5952 h2s->st = H2_SS_HLOC;
5953 else
5954 h2s_close(h2s);
5955
5956 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005957 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 +01005958 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005959 else if (fsize) {
5960 if (fsize == bsize) {
5961 TRACE_DEVEL("more data may be available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5962 goto new_frame;
5963 }
5964 else if (trunc_out) {
5965 /* we've truncated this block */
5966 goto new_frame;
5967 }
5968 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005969
5970 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005971 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005972 return total;
5973}
5974
Christopher Faulet991febd2020-12-02 15:17:31 +01005975/* Skip the message payload (DATA blocks) and emit an empty DATA frame with the
5976 * ES flag set for stream <h2s>. This function is called for response known to
5977 * have no payload. Only DATA blocks are skipped. This means the trailers are
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005978 * still emitted. The caller must check the stream's status to detect any error
Christopher Faulet991febd2020-12-02 15:17:31 +01005979 * which might have happened subsequently to a successful send. Returns the
5980 * number of data bytes consumed, or zero if nothing done.
5981 */
5982static size_t h2s_skip_data(struct h2s *h2s, struct buffer *buf, size_t count)
5983{
5984 struct h2c *h2c = h2s->h2c;
5985 struct htx *htx;
5986 int bsize; /* htx block size */
5987 int fsize; /* h2 frame size */
5988 struct htx_blk *blk;
5989 enum htx_blk_type type;
5990 size_t total = 0;
5991
5992 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5993
5994 if (h2c_mux_busy(h2c, h2s)) {
5995 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5996 h2s->flags |= H2_SF_BLK_MBUSY;
5997 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5998 goto end;
5999 }
6000
6001 htx = htx_from_buf(buf);
6002
6003 next_data:
6004 if (!count || htx_is_empty(htx))
6005 goto end;
6006 blk = htx_get_head_blk(htx);
6007 type = htx_get_blk_type(blk);
6008 bsize = htx_get_blksz(blk);
6009 fsize = bsize;
6010 if (type != HTX_BLK_DATA)
6011 goto end;
6012
6013 if (fsize > count)
6014 fsize = count;
6015
6016 if (fsize != bsize)
6017 goto skip_data;
6018
6019 if (!(htx->flags & HTX_FL_EOM) || !htx_is_unique_blk(htx, blk))
6020 goto skip_data;
6021
6022 /* Here, it is the last block and it is also the end of the message. So
6023 * we can emit an empty DATA frame with the ES flag set
6024 */
6025 if (h2_send_empty_data_es(h2s) <= 0)
6026 goto end;
6027
6028 if (h2s->st == H2_SS_OPEN)
6029 h2s->st = H2_SS_HLOC;
6030 else
6031 h2s_close(h2s);
6032
6033 skip_data:
6034 /* consume incoming HTX block */
6035 total += fsize;
6036 if (fsize == bsize) {
6037 TRACE_DEVEL("more data may be available, trying to skip another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6038 htx_remove_blk(htx, blk);
6039 goto next_data;
6040 }
6041 else {
6042 /* we've truncated this block */
6043 htx_cut_data_blk(htx, blk, fsize);
6044 }
6045
6046 end:
6047 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6048 return total;
6049}
6050
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006051/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
6052 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
6053 * processed. The caller must check the stream's status to detect any error
6054 * which might have happened subsequently to a successful send. The htx blocks
6055 * are automatically removed from the message. The htx message is assumed to be
6056 * valid since produced from the internal code. Processing stops when meeting
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006057 * the EOT, which *is* removed. All trailers are processed at once and sent as a
6058 * single frame. The ES flag is always set.
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006059 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006060static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006061{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02006062 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006063 struct h2c *h2c = h2s->h2c;
6064 struct htx_blk *blk;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006065 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02006066 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006067 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006068 int ret = 0;
6069 int hdr;
6070 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006071
Willy Tarreau7838a792019-08-12 18:42:03 +02006072 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
6073
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006074 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006075 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006076 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02006077 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006078 goto end;
6079 }
6080
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006081 /* get trailers. */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006082 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006083 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006084 type = htx_get_blk_type(blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006085
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006086 if (type == HTX_BLK_UNUSED)
6087 continue;
6088
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006089 if (type == HTX_BLK_EOT)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006090 break;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006091 if (type == HTX_BLK_TLR) {
6092 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
6093 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
6094 goto fail;
6095 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006096
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006097 list[hdr].n = htx_get_blk_name(htx, blk);
6098 list[hdr].v = htx_get_blk_value(htx, blk);
6099 hdr++;
6100 }
6101 else {
6102 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 +01006103 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02006104 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006105 }
6106
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006107 /* marker for end of trailers */
6108 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006109
Willy Tarreau9c218e72019-05-26 10:08:28 +02006110 mbuf = br_tail(h2c->mbuf);
6111 retry:
6112 if (!h2_get_buf(h2c, mbuf)) {
6113 h2c->flags |= H2_CF_MUX_MALLOC;
6114 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006115 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 +02006116 goto end;
6117 }
6118
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006119 chunk_reset(&outbuf);
6120
6121 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006122 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6123 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006124 break;
6125 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006126 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006127 }
6128
6129 if (outbuf.size < 9)
6130 goto full;
6131
6132 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
6133 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
6134 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6135 outbuf.data = 9;
6136
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006137 /* encode all headers */
6138 for (idx = 0; idx < hdr; idx++) {
6139 /* these ones do not exist in H2 or must not appear in
6140 * trailers and must be dropped.
6141 */
6142 if (isteq(list[idx].n, ist("host")) ||
6143 isteq(list[idx].n, ist("content-length")) ||
6144 isteq(list[idx].n, ist("connection")) ||
6145 isteq(list[idx].n, ist("proxy-connection")) ||
6146 isteq(list[idx].n, ist("keep-alive")) ||
6147 isteq(list[idx].n, ist("upgrade")) ||
6148 isteq(list[idx].n, ist("te")) ||
6149 isteq(list[idx].n, ist("transfer-encoding")))
6150 continue;
6151
Christopher Faulet86d144c2019-08-14 16:32:25 +02006152 /* Skip all pseudo-headers */
6153 if (*(list[idx].n.ptr) == ':')
6154 continue;
6155
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006156 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
6157 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006158 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006159 goto realign_again;
6160 goto full;
6161 }
6162 }
6163
Willy Tarreau5121e5d2019-05-06 15:13:41 +02006164 if (outbuf.data == 9) {
6165 /* here we have a problem, we have nothing to emit (either we
6166 * received an empty trailers block followed or we removed its
6167 * contents above). Because of this we can't send a HEADERS
6168 * frame, so we have to cheat and instead send an empty DATA
6169 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01006170 */
6171 outbuf.area[3] = H2_FT_DATA;
6172 outbuf.area[4] = H2_F_DATA_END_STREAM;
6173 }
6174
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006175 /* update the frame's size */
6176 h2_set_frame_size(outbuf.area, outbuf.data - 9);
6177
Willy Tarreau572d9f52019-10-11 16:58:37 +02006178 if (outbuf.data > h2c->mfs + 9) {
6179 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
6180 /* output full */
6181 if (b_space_wraps(mbuf))
6182 goto realign_again;
6183 goto full;
6184 }
6185 }
6186
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006187 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02006188 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 +02006189 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006190 h2s->flags |= H2_SF_ES_SENT;
6191
6192 if (h2s->st == H2_SS_OPEN)
6193 h2s->st = H2_SS_HLOC;
6194 else
6195 h2s_close(h2s);
6196
6197 /* OK we could properly deliver the response */
6198 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02006199 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006200 ret = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006201 blk = htx_get_head_blk(htx);
6202 while (blk) {
6203 type = htx_get_blk_type(blk);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006204 ret += htx_get_blksz(blk);
6205 blk = htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006206 /* The removed block is the EOT */
6207 if (type == HTX_BLK_EOT)
6208 break;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006209 }
6210
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006211 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006212 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006213 return ret;
6214 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02006215 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6216 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006217 h2c->flags |= H2_CF_MUX_MFULL;
6218 h2s->flags |= H2_SF_BLK_MROOM;
6219 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006220 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 +01006221 goto end;
6222 fail:
6223 /* unparsable HTX messages, too large ones to be produced in the local
6224 * list etc go here (unrecoverable errors).
6225 */
6226 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
6227 ret = 0;
6228 goto end;
6229}
6230
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006231/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6232 * event subscriber <es> is not allowed to change from a previous call as long
6233 * as at least one event is still subscribed. The <event_type> must only be a
6234 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006235 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006236static int h2_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02006237{
Olivier Houchard6ff20392018-07-17 18:46:31 +02006238 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02006239 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006240
Willy Tarreau7838a792019-08-12 18:42:03 +02006241 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006242
6243 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006244 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006245
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006246 es->events |= event_type;
6247 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006248
6249 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006250 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006251
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006252 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006253 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02006254 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02006255 !LIST_INLIST(&h2s->list)) {
Olivier Houchardf8338152019-05-14 17:50:32 +02006256 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02006257 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Olivier Houchardf8338152019-05-14 17:50:32 +02006258 else
Willy Tarreau2b718102021-04-21 07:32:39 +02006259 LIST_APPEND(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02006260 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02006261 }
Willy Tarreau7838a792019-08-12 18:42:03 +02006262 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006263 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006264}
6265
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006266/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6267 * The <es> pointer is not allowed to differ from the one passed to the
6268 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006269 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006270static int h2_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006271{
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006272 struct h2s *h2s = cs->ctx;
6273
Willy Tarreau7838a792019-08-12 18:42:03 +02006274 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006275
6276 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006277 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006278
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006279 es->events &= ~event_type;
6280 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01006281 h2s->subs = NULL;
6282
6283 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006284 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006285
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006286 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006287 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006288 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006289 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
6290 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02006291 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01006292
Willy Tarreau7838a792019-08-12 18:42:03 +02006293 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006294 return 0;
6295}
6296
6297
Christopher Faulet93a466b2021-09-21 15:50:55 +02006298/* Called from the upper layer, to receive data
6299 *
6300 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
6301 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
6302 * means the caller wants to flush input data (from the mux buffer and the
6303 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
6304 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
6305 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
6306 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
6307 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
6308 * copy as much data as possible.
6309 */
Olivier Houchard511efea2018-08-16 15:30:32 +02006310static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
6311{
Olivier Houchard638b7992018-08-16 15:41:52 +02006312 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01006313 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01006314 struct htx *h2s_htx = NULL;
6315 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02006316 size_t ret = 0;
6317
Willy Tarreau7838a792019-08-12 18:42:03 +02006318 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
6319
Olivier Houchard511efea2018-08-16 15:30:32 +02006320 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006321 h2s_htx = htx_from_buf(&h2s->rxbuf);
6322 if (htx_is_empty(h2s_htx)) {
6323 /* Here htx_to_buf() will set buffer data to 0 because
6324 * the HTX is empty.
6325 */
6326 htx_to_buf(h2s_htx, &h2s->rxbuf);
6327 goto end;
6328 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01006329
Christopher Faulet9b79a102019-07-15 11:22:56 +02006330 ret = h2s_htx->data;
6331 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01006332
Christopher Faulet9b79a102019-07-15 11:22:56 +02006333 /* <buf> is empty and the message is small enough, swap the
6334 * buffers. */
6335 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01006336 htx_to_buf(buf_htx, buf);
6337 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006338 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
6339 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01006340 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02006341
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006342 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_UNUSED);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006343
6344 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
6345 buf_htx->flags |= HTX_FL_PARSING_ERROR;
6346 if (htx_is_empty(buf_htx))
6347 cs->flags |= CS_FL_EOI;
Willy Tarreau86724e22018-12-01 23:19:43 +01006348 }
Christopher Faulet810df062020-07-22 16:20:34 +02006349 else if (htx_is_empty(h2s_htx))
Christopher Faulet42432f32020-11-20 17:43:16 +01006350 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006351
Christopher Faulet9b79a102019-07-15 11:22:56 +02006352 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
6353 htx_to_buf(buf_htx, buf);
6354 htx_to_buf(h2s_htx, &h2s->rxbuf);
6355 ret -= h2s_htx->data;
6356
Christopher Faulet37070b22019-02-14 15:12:14 +01006357 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02006358 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01006359 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006360 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01006361 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006362 if (h2s->flags & H2_SF_ES_RCVD) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02006363 cs->flags |= CS_FL_EOI;
Christopher Fauletd0db4232021-01-22 11:46:30 +01006364 /* Add EOS flag for tunnel */
6365 if (h2s->flags & H2_SF_BODY_TUNNEL)
6366 cs->flags |= CS_FL_EOS;
6367 }
Christopher Fauletaade4ed2020-10-08 15:38:41 +02006368 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02006369 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01006370 if (cs->flags & CS_FL_ERR_PENDING)
6371 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02006372 if (b_size(&h2s->rxbuf)) {
6373 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01006374 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02006375 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006376 }
6377
Willy Tarreau082f5592018-11-25 08:03:32 +01006378 if (ret && h2c->dsi == h2s->id) {
6379 /* demux is blocking on this stream's buffer */
6380 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006381 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006382 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006383
Willy Tarreau7838a792019-08-12 18:42:03 +02006384 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006385 return ret;
6386}
6387
Olivier Houchardd846c262018-10-19 17:24:29 +02006388
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006389/* Called from the upper layer, to send data from buffer <buf> for no more than
6390 * <count> bytes. Returns the number of bytes effectively sent. Some status
6391 * flags may be updated on the conn_stream.
6392 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02006393static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006394{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006395 struct h2s *h2s = cs->ctx;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006396 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006397 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006398 struct htx *htx;
6399 struct htx_blk *blk;
6400 enum htx_blk_type btype;
6401 uint32_t bsize;
6402 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006403
Willy Tarreau7838a792019-08-12 18:42:03 +02006404 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6405
Olivier Houchardd360ac62019-03-22 17:37:16 +01006406 /* If we were not just woken because we wanted to send but couldn't,
6407 * and there's somebody else that is waiting to send, do nothing,
6408 * we will subscribe later and be put at the end of the list
6409 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006410 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006411 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6412 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 +01006413 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006414 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006415 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006416
Willy Tarreau7838a792019-08-12 18:42:03 +02006417 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6418 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 +02006419 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006420 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006421
Willy Tarreaucab22952019-10-31 15:48:18 +01006422 if (h2s->h2c->st0 >= H2_CS_ERROR) {
6423 cs->flags |= CS_FL_ERROR;
6424 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);
6425 return 0;
6426 }
6427
Christopher Faulet9b79a102019-07-15 11:22:56 +02006428 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006429
Willy Tarreau0bad0432018-06-14 16:54:01 +02006430 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006431 h2s->flags |= H2_SF_OUTGOING_DATA;
6432
Willy Tarreau751f2d02018-10-05 09:35:00 +02006433 if (h2s->id == 0) {
6434 int32_t id = h2c_get_next_sid(h2s->h2c);
6435
6436 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02006437 cs->flags |= CS_FL_ERROR;
Willy Tarreau7838a792019-08-12 18:42:03 +02006438 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 +02006439 return 0;
6440 }
6441
6442 eb32_delete(&h2s->by_id);
6443 h2s->by_id.key = h2s->id = id;
6444 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006445 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006446 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6447 }
6448
Christopher Faulet9b79a102019-07-15 11:22:56 +02006449 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6450 count && !htx_is_empty(htx)) {
6451 idx = htx_get_head(htx);
6452 blk = htx_get_blk(htx, idx);
6453 btype = htx_get_blk_type(blk);
6454 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006455
Christopher Faulet9b79a102019-07-15 11:22:56 +02006456 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006457 case HTX_BLK_REQ_SL:
6458 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006459 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006460 if (ret > 0) {
6461 total += ret;
6462 count -= ret;
6463 if (ret < bsize)
6464 goto done;
6465 }
6466 break;
6467
Willy Tarreau115e83b2018-12-01 19:17:53 +01006468 case HTX_BLK_RES_SL:
6469 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006470 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006471 if (ret > 0) {
6472 total += ret;
6473 count -= ret;
6474 if (ret < bsize)
6475 goto done;
6476 }
6477 break;
6478
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006479 case HTX_BLK_DATA:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006480 /* all these cause the emission of a DATA frame (possibly empty) */
Christopher Faulet991febd2020-12-02 15:17:31 +01006481 if (!(h2s->h2c->flags & H2_CF_IS_BACK) &&
6482 (h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BODYLESS_RESP)) == H2_SF_BODYLESS_RESP)
6483 ret = h2s_skip_data(h2s, buf, count);
6484 else
6485 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006486 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006487 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006488 total += ret;
6489 count -= ret;
6490 if (ret < bsize)
6491 goto done;
6492 }
6493 break;
6494
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006495 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006496 case HTX_BLK_EOT:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006497 /* This is the first trailers block, all the subsequent ones */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006498 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006499 if (ret > 0) {
6500 total += ret;
6501 count -= ret;
6502 if (ret < bsize)
6503 goto done;
6504 }
6505 break;
6506
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006507 default:
6508 htx_remove_blk(htx, blk);
6509 total += bsize;
6510 count -= bsize;
6511 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006512 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006513 }
6514
Christopher Faulet9b79a102019-07-15 11:22:56 +02006515 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006516 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006517 /* trim any possibly pending data after we close (extra CR-LF,
6518 * unprocessed trailers, abnormal extra data, ...)
6519 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006520 total += count;
6521 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006522 }
6523
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006524 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006525 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006526 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 Tarreauec988c72018-12-19 18:00:29 +01006527 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006528 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006529 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006530 }
6531
Christopher Faulet9b79a102019-07-15 11:22:56 +02006532 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006533
Olivier Houchard7505f942018-08-21 18:10:44 +02006534 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006535 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006536 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 +02006537 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006538 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006539
Olivier Houchard7505f942018-08-21 18:10:44 +02006540 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006541 /* If we're waiting for flow control, and we got a shutr on the
6542 * connection, we will never be unlocked, so add an error on
6543 * the conn_stream.
6544 */
6545 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
6546 !b_data(&h2s->h2c->dbuf) &&
6547 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006548 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);
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006549 if (cs->flags & CS_FL_EOS)
6550 cs->flags |= CS_FL_ERROR;
6551 else
6552 cs->flags |= CS_FL_ERR_PENDING;
6553 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006554
Willy Tarreau5723f292020-01-10 15:16:57 +01006555 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6556 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006557 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006558 LIST_DEL_INIT(&h2s->list);
6559 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006560
Willy Tarreau7838a792019-08-12 18:42:03 +02006561 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006562 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006563}
6564
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006565/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01006566static int h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006567{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01006568 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01006569 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006570 struct eb32_node *node;
6571 int fctl_cnt = 0;
6572 int send_cnt = 0;
6573 int tree_cnt = 0;
6574 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02006575 struct buffer *hmbuf, *tmbuf;
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006576 int ret = 0;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006577
6578 if (!h2c)
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006579 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006580
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006581 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006582 fctl_cnt++;
6583
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006584 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006585 send_cnt++;
6586
Willy Tarreau3af37712018-12-18 14:34:41 +01006587 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006588 node = eb32_first(&h2c->streams_by_id);
6589 while (node) {
6590 h2s = container_of(node, struct h2s, by_id);
6591 tree_cnt++;
6592 if (!h2s->cs)
6593 orph_cnt++;
6594 node = eb32_next(node);
6595 }
6596
Willy Tarreau60f62682019-05-26 11:32:27 +02006597 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006598 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006599 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau987c0632018-12-18 10:32:05 +01006600 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02006601 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
6602 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006603 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau616ac812018-07-24 14:12:42 +02006604 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006605 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006606 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
6607 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
6608 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02006609 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6610 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6611 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006612 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6613 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006614
6615 if (h2s) {
Willy Tarreaued4464e2021-01-20 15:50:03 +01006616 chunk_appendf(msg, " last_h2s=%p .id=%d .st=%s .flg=0x%04x .rxbuf=%u@%p+%u/%u .cs=%p",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006617 h2s, h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
Willy Tarreau987c0632018-12-18 10:32:05 +01006618 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
6619 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
6620 h2s->cs);
6621 if (h2s->cs)
Willy Tarreau98e40b92021-01-20 16:27:01 +01006622 chunk_appendf(msg, "(.flg=0x%08x .data=%p)",
Willy Tarreau987c0632018-12-18 10:32:05 +01006623 h2s->cs->flags, h2s->cs->data);
Willy Tarreau98e40b92021-01-20 16:27:01 +01006624
6625 chunk_appendf(&trash, " .subs=%p", h2s->subs);
6626 if (h2s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01006627 chunk_appendf(&trash, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
6628 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
6629 h2s->subs->tasklet->calls,
6630 h2s->subs->tasklet->context);
6631 if (h2s->subs->tasklet->calls >= 1000000)
6632 ret = 1;
6633 resolve_sym_name(&trash, NULL, h2s->subs->tasklet->process);
6634 chunk_appendf(&trash, ")");
Willy Tarreau98e40b92021-01-20 16:27:01 +01006635 }
Willy Tarreau987c0632018-12-18 10:32:05 +01006636 }
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006637 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006638}
Willy Tarreau62f52692017-10-08 23:01:42 +02006639
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006640/* Migrate the the connection to the current thread.
6641 * Return 0 if successful, non-zero otherwise.
6642 * Expected to be called with the old thread lock held.
6643 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006644static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006645{
6646 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006647 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006648
6649 if (fd_takeover(conn->handle.fd, conn) != 0)
6650 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006651
6652 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6653 /* We failed to takeover the xprt, even if the connection may
6654 * still be valid, flag it as error'd, as we have already
6655 * taken over the fd, and wake the tasklet, so that it will
6656 * destroy it.
6657 */
6658 conn->flags |= CO_FL_ERROR;
6659 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6660 return -1;
6661 }
6662
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006663 if (h2c->wait_event.events)
6664 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6665 h2c->wait_event.events, &h2c->wait_event);
6666 /* To let the tasklet know it should free itself, and do nothing else,
6667 * set its context to NULL.
6668 */
6669 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006670 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006671
6672 task = h2c->task;
6673 if (task) {
6674 task->context = NULL;
6675 h2c->task = NULL;
6676 __ha_barrier_store();
6677 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006678
6679 h2c->task = task_new(tid_bit);
6680 if (!h2c->task) {
6681 h2_release(h2c);
6682 return -1;
6683 }
6684 h2c->task->process = h2_timeout_task;
6685 h2c->task->context = h2c;
6686 }
6687 h2c->wait_event.tasklet = tasklet_new();
6688 if (!h2c->wait_event.tasklet) {
6689 h2_release(h2c);
6690 return -1;
6691 }
6692 h2c->wait_event.tasklet->process = h2_io_cb;
6693 h2c->wait_event.tasklet->context = h2c;
6694 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6695 SUB_RETRY_RECV, &h2c->wait_event);
6696
6697 return 0;
6698}
6699
Willy Tarreau62f52692017-10-08 23:01:42 +02006700/*******************************************************/
6701/* functions below are dedicated to the config parsers */
6702/*******************************************************/
6703
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006704/* config parser for global "tune.h2.header-table-size" */
6705static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006706 const struct proxy *defpx, const char *file, int line,
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006707 char **err)
6708{
6709 if (too_many_args(1, args, err, NULL))
6710 return -1;
6711
6712 h2_settings_header_table_size = atoi(args[1]);
6713 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6714 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6715 return -1;
6716 }
6717 return 0;
6718}
Willy Tarreau62f52692017-10-08 23:01:42 +02006719
Willy Tarreaue6baec02017-07-27 11:45:11 +02006720/* config parser for global "tune.h2.initial-window-size" */
6721static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006722 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue6baec02017-07-27 11:45:11 +02006723 char **err)
6724{
6725 if (too_many_args(1, args, err, NULL))
6726 return -1;
6727
6728 h2_settings_initial_window_size = atoi(args[1]);
6729 if (h2_settings_initial_window_size < 0) {
6730 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6731 return -1;
6732 }
6733 return 0;
6734}
6735
Willy Tarreau5242ef82017-07-27 11:47:28 +02006736/* config parser for global "tune.h2.max-concurrent-streams" */
6737static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006738 const struct proxy *defpx, const char *file, int line,
Willy Tarreau5242ef82017-07-27 11:47:28 +02006739 char **err)
6740{
6741 if (too_many_args(1, args, err, NULL))
6742 return -1;
6743
6744 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006745 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006746 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6747 return -1;
6748 }
6749 return 0;
6750}
6751
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006752/* config parser for global "tune.h2.max-frame-size" */
6753static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006754 const struct proxy *defpx, const char *file, int line,
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006755 char **err)
6756{
6757 if (too_many_args(1, args, err, NULL))
6758 return -1;
6759
6760 h2_settings_max_frame_size = atoi(args[1]);
6761 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6762 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6763 return -1;
6764 }
6765 return 0;
6766}
6767
Willy Tarreau62f52692017-10-08 23:01:42 +02006768
6769/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006770/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006771/***************************************/
6772
6773/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006774static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006775 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006776 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006777 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006778 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006779 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006780 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006781 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01006782 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02006783 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006784 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006785 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006786 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006787 .shutr = h2_shutr,
6788 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006789 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006790 .show_fd = h2_show_fd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006791 .takeover = h2_takeover,
Christopher Fauleta4600572021-03-08 15:28:28 +01006792 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX|MX_FL_HOL_RISK|MX_FL_NO_UPG,
Willy Tarreau62f52692017-10-08 23:01:42 +02006793 .name = "H2",
6794};
6795
Christopher Faulet32f61c02018-04-10 14:33:41 +02006796static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006797 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006798
Willy Tarreau0108d902018-11-25 19:14:37 +01006799INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6800
Willy Tarreau62f52692017-10-08 23:01:42 +02006801/* config keyword parsers */
6802static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006803 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006804 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006805 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006806 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006807 { 0, NULL, NULL }
6808}};
6809
Willy Tarreau0108d902018-11-25 19:14:37 +01006810INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006811
6812/* initialize internal structs after the config is parsed.
6813 * Returns zero on success, non-zero on error.
6814 */
6815static int init_h2()
6816{
6817 pool_head_hpack_tbl = create_pool("hpack_tbl",
6818 h2_settings_header_table_size,
6819 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01006820 if (!pool_head_hpack_tbl) {
6821 ha_alert("failed to allocate hpack_tbl memory pool\n");
6822 return (ERR_ALERT | ERR_FATAL);
6823 }
6824 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006825}
6826
6827REGISTER_POST_CHECK(init_h2);