blob: 7a0d6cb881b23880c40369ece8af3bab3aae8899 [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
Willy Tarreau8a4dca02022-01-13 16:00:12 +010075#define H2_CF_SHTS_UPDATED 0x00200000 // SETTINGS_HEADER_TABLE_SIZE updated
76#define H2_CF_DTSU_EMITTED 0x00400000 // HPACK Dynamic Table Size Update opcode emitted
Amaury Denoyelle68993a12021-10-18 09:43:29 +020077
Willy Tarreau5ab6b572017-09-22 08:05:00 +020078/* H2 connection state, in h2c->st0 */
79enum h2_cs {
80 H2_CS_PREFACE, // init done, waiting for connection preface
81 H2_CS_SETTINGS1, // preface OK, waiting for first settings frame
82 H2_CS_FRAME_H, // first settings frame ok, waiting for frame header
83 H2_CS_FRAME_P, // frame header OK, waiting for frame payload
Willy Tarreaua20a5192017-12-27 11:02:06 +010084 H2_CS_FRAME_A, // frame payload OK, trying to send ACK frame
85 H2_CS_FRAME_E, // frame payload OK, trying to send RST frame
Willy Tarreau5ab6b572017-09-22 08:05:00 +020086 H2_CS_ERROR, // send GOAWAY(errcode) and close the connection ASAP
87 H2_CS_ERROR2, // GOAWAY(errcode) sent, close the connection ASAP
88 H2_CS_ENTRIES // must be last
89} __attribute__((packed));
90
Willy Tarreau51330962019-05-26 09:38:07 +020091
Willy Tarreau9c218e72019-05-26 10:08:28 +020092/* 32 buffers: one for the ring's root, rest for the mbuf itself */
93#define H2C_MBUF_CNT 32
Willy Tarreau51330962019-05-26 09:38:07 +020094
Willy Tarreau5ab6b572017-09-22 08:05:00 +020095/* H2 connection descriptor */
96struct h2c {
97 struct connection *conn;
98
99 enum h2_cs st0; /* mux state */
100 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
101
102 /* 16 bit hole here */
103 uint32_t flags; /* connection flags: H2_CF_* */
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100104 uint32_t streams_limit; /* maximum number of concurrent streams the peer supports */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200105 int32_t max_id; /* highest ID known on this connection, <0 before preface */
106 uint32_t rcvd_c; /* newly received data to ACK for the connection */
107 uint32_t rcvd_s; /* newly received data to ACK for the current stream (dsi) */
108
109 /* states for the demux direction */
110 struct hpack_dht *ddht; /* demux dynamic header table */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200111 struct buffer dbuf; /* demux buffer */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200112
113 int32_t dsi; /* demux stream ID (<0 = idle) */
114 int32_t dfl; /* demux frame length (if dsi >= 0) */
115 int8_t dft; /* demux frame type (if dsi >= 0) */
116 int8_t dff; /* demux frame flags (if dsi >= 0) */
Willy Tarreau05e5daf2017-12-11 15:17:36 +0100117 uint8_t dpl; /* demux pad length (part of dfl), init to 0 */
118 /* 8 bit hole here */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200119 int32_t last_sid; /* last processed stream ID for GOAWAY, <0 before preface */
120
121 /* states for the mux direction */
Willy Tarreau51330962019-05-26 09:38:07 +0200122 struct buffer mbuf[H2C_MBUF_CNT]; /* mux buffers (ring) */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200123 int32_t msi; /* mux stream ID (<0 = idle) */
124 int32_t mfl; /* mux frame length (if dsi >= 0) */
125 int8_t mft; /* mux frame type (if dsi >= 0) */
126 int8_t mff; /* mux frame flags (if dsi >= 0) */
127 /* 16 bit hole here */
128 int32_t miw; /* mux initial window size for all new streams */
129 int32_t mws; /* mux window size. Can be negative. */
130 int32_t mfs; /* mux's max frame size */
131
Willy Tarreauea392822017-10-31 10:02:25 +0100132 int timeout; /* idle timeout duration in ticks */
Willy Tarreau599391a2017-11-24 10:16:00 +0100133 int shut_timeout; /* idle timeout duration in ticks after GOAWAY was sent */
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +0100134 int idle_start; /* date of the last time the connection went idle */
135 /* 32-bit hole here */
Willy Tarreau49745612017-12-03 18:56:02 +0100136 unsigned int nb_streams; /* number of streams in the tree */
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200137 unsigned int nb_cs; /* number of attached conn_streams */
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100138 unsigned int nb_reserved; /* number of reserved streams */
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100139 unsigned int stream_cnt; /* total number of streams seen */
Willy Tarreau0b37d652018-10-03 10:33:02 +0200140 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +0100141 struct task *task; /* timeout management task */
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100142 struct h2_counters *px_counters; /* h2 counters attached to proxy */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200143 struct eb_root streams_by_id; /* all active streams by their ID */
144 struct list send_list; /* list of blocked streams requesting to send */
145 struct list fctl_list; /* list of streams blocked by connection's fctl */
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200146 struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100147 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200148 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200149};
150
Willy Tarreau18312642017-10-11 07:57:07 +0200151/* H2 stream state, in h2s->st */
152enum h2_ss {
153 H2_SS_IDLE = 0, // idle
154 H2_SS_RLOC, // reserved(local)
155 H2_SS_RREM, // reserved(remote)
156 H2_SS_OPEN, // open
157 H2_SS_HREM, // half-closed(remote)
158 H2_SS_HLOC, // half-closed(local)
Willy Tarreau96060ba2017-10-16 18:34:34 +0200159 H2_SS_ERROR, // an error needs to be sent using RST_STREAM
Willy Tarreau18312642017-10-11 07:57:07 +0200160 H2_SS_CLOSED, // closed
161 H2_SS_ENTRIES // must be last
162} __attribute__((packed));
163
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200164#define H2_SS_MASK(state) (1UL << (state))
165#define H2_SS_IDLE_BIT (1UL << H2_SS_IDLE)
166#define H2_SS_RLOC_BIT (1UL << H2_SS_RLOC)
167#define H2_SS_RREM_BIT (1UL << H2_SS_RREM)
168#define H2_SS_OPEN_BIT (1UL << H2_SS_OPEN)
169#define H2_SS_HREM_BIT (1UL << H2_SS_HREM)
170#define H2_SS_HLOC_BIT (1UL << H2_SS_HLOC)
171#define H2_SS_ERROR_BIT (1UL << H2_SS_ERROR)
172#define H2_SS_CLOSED_BIT (1UL << H2_SS_CLOSED)
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200173
Willy Tarreau18312642017-10-11 07:57:07 +0200174/* HTTP/2 stream flags (32 bit), in h2s->flags */
175#define H2_SF_NONE 0x00000000
176#define H2_SF_ES_RCVD 0x00000001
177#define H2_SF_ES_SENT 0x00000002
178
179#define H2_SF_RST_RCVD 0x00000004 // received RST_STREAM
180#define H2_SF_RST_SENT 0x00000008 // sent RST_STREAM
181
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200182/* stream flags indicating the reason the stream is blocked */
183#define H2_SF_BLK_MBUSY 0x00000010 // blocked waiting for mux access (transient)
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200184#define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux (must be in send list)
185#define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl (must be in fctl list)
186#define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl (must be in blocked list)
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200187#define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above
188
Willy Tarreau454f9052017-10-26 19:40:35 +0200189/* stream flags indicating how data is supposed to be sent */
190#define H2_SF_DATA_CLEN 0x00000100 // data sent using content-length
Christopher Faulet7d247f02020-12-02 14:26:36 +0100191#define H2_SF_BODYLESS_RESP 0x00000200 /* Bodyless response message */
Christopher Fauletd0db4232021-01-22 11:46:30 +0100192#define H2_SF_BODY_TUNNEL 0x00000400 // Attempt to establish a Tunnelled stream (the result depends on the status code)
193
Willy Tarreau454f9052017-10-26 19:40:35 +0200194
Willy Tarreaud9464162020-01-10 18:25:07 +0100195#define H2_SF_NOTIFIED 0x00000800 // a paused stream was notified to try to send again
Willy Tarreau67434202017-11-06 20:20:51 +0100196#define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream
Willy Tarreauc4312d32017-11-07 12:01:53 +0100197#define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data
Willy Tarreau67434202017-11-06 20:20:51 +0100198
Willy Tarreau6cc85a52019-01-02 15:49:20 +0100199#define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream
200
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200201#define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy)
202#define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy)
Willy Tarreau3cf69fe2019-05-14 10:44:40 +0200203#define H2_SF_KILL_CONN 0x00020000 // kill the whole connection with this stream
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200204
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100205#define H2_SF_EXT_CONNECT_SENT 0x00040000 // rfc 8441 an Extended CONNECT has been sent
Amaury Denoyelleefe22762020-12-11 17:53:08 +0100206#define H2_SF_EXT_CONNECT_RCVD 0x00080000 // rfc 8441 an Extended CONNECT has been received and parsed
Christopher Fauletd0db4232021-01-22 11:46:30 +0100207
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100208#define H2_SF_TUNNEL_ABRT 0x00100000 // A tunnel attempt was aborted
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200209
Willy Tarreau18312642017-10-11 07:57:07 +0200210/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
Christopher Fauletfafd1b02020-11-03 18:25:52 +0100211 * it is being processed in the internal HTTP representation (HTX).
Willy Tarreau18312642017-10-11 07:57:07 +0200212 */
213struct h2s {
214 struct conn_stream *cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100215 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200216 struct h2c *h2c;
Willy Tarreau18312642017-10-11 07:57:07 +0200217 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200218 int32_t id; /* stream ID */
219 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200220 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200221 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
222 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200223 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100224 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200225 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Willy Tarreauf96508a2020-01-10 11:12:48 +0100226 struct wait_event *subs; /* recv wait_event the conn_stream associated is waiting on (via h2_subscribe) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200227 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Willy Tarreau5723f292020-01-10 15:16:57 +0100228 struct tasklet *shut_tl; /* deferred shutdown tasklet, to retry to send an RST after we failed to,
229 * in case there's no other subscription to do it */
Amaury Denoyelle74162742020-12-11 17:53:05 +0100230
231 char upgrade_protocol[16]; /* rfc 8441: requested protocol on Extended CONNECT */
Willy Tarreau18312642017-10-11 07:57:07 +0200232};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200233
Willy Tarreauc6405142017-09-21 20:23:50 +0200234/* descriptor for an h2 frame header */
235struct h2_fh {
236 uint32_t len; /* length, host order, 24 bits */
237 uint32_t sid; /* stream id, host order, 31 bits */
238 uint8_t ft; /* frame type */
239 uint8_t ff; /* frame flags */
240};
241
Willy Tarreau12ae2122019-08-08 18:23:12 +0200242/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200243static void h2_trace(enum trace_level level, uint64_t mask, \
244 const struct trace_source *src,
245 const struct ist where, const struct ist func,
246 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200247
248/* The event representation is split like this :
249 * strm - application layer
250 * h2s - internal H2 stream
251 * h2c - internal H2 connection
252 * conn - external connection
253 *
254 */
255static const struct trace_event h2_trace_events[] = {
256#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200257 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200258#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200259 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200260#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200261 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200262#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200263 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200264#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200265 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200266#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200267 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200268#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200269 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200270#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200271 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200272#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200273 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200274#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200275 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200276#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200277 { .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 +0200278#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200279 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200280#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200281 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200282#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200283 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200284#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200285 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200286#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200287 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200288#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200289 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200290#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200291 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200292#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200293 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200294#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200295 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200296#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200297 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200298#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200299 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200300#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200301 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200302#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200303 { .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 +0200304#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200305 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200306#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200307 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200308#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200309 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200310#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200311 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200312#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200313 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200314#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200315 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200316#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200317 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200318#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200319 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200320#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200321 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200322#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200323 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200324#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200325 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200326#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200327 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200328#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200329 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200330#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200331 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200332#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200333 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200334#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200335 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200336#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200337 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200338#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200339 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200340#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200341 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200342#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200343 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200344#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200345 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200346#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200347 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200348#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200349 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200350#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200351 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200352#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200353 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200354#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200355 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200356#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200357 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200358#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200359 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200360 { }
361};
362
363static const struct name_desc h2_trace_lockon_args[4] = {
364 /* arg1 */ { /* already used by the connection */ },
365 /* arg2 */ { .name="h2s", .desc="H2 stream" },
366 /* arg3 */ { },
367 /* arg4 */ { }
368};
369
370static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200371#define H2_VERB_CLEAN 1
372 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
373#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200374 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200375#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200376 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200377#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200378 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200379#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200380 { .name="complete", .desc="add full data dump when available" },
381 { /* end */ }
382};
383
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200384static struct trace_source trace_h2 __read_mostly = {
Willy Tarreau12ae2122019-08-08 18:23:12 +0200385 .name = IST("h2"),
386 .desc = "HTTP/2 multiplexer",
387 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200388 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200389 .known_events = h2_trace_events,
390 .lockon_args = h2_trace_lockon_args,
391 .decoding = h2_trace_decoding,
392 .report_events = ~0, // report everything by default
393};
394
395#define TRACE_SOURCE &trace_h2
396INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
397
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100398/* h2 stats module */
399enum {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100400 H2_ST_HEADERS_RCVD,
401 H2_ST_DATA_RCVD,
402 H2_ST_SETTINGS_RCVD,
403 H2_ST_RST_STREAM_RCVD,
404 H2_ST_GOAWAY_RCVD,
405
Amaury Denoyellea8879232020-10-27 17:16:03 +0100406 H2_ST_CONN_PROTO_ERR,
407 H2_ST_STRM_PROTO_ERR,
408 H2_ST_RST_STREAM_RESP,
409 H2_ST_GOAWAY_RESP,
410
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100411 H2_ST_OPEN_CONN,
412 H2_ST_OPEN_STREAM,
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100413 H2_ST_TOTAL_CONN,
414 H2_ST_TOTAL_STREAM,
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100415
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100416 H2_STATS_COUNT /* must be the last member of the enum */
417};
418
419static struct name_desc h2_stats[] = {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100420 [H2_ST_HEADERS_RCVD] = { .name = "h2_headers_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100421 .desc = "Total number of received HEADERS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100422 [H2_ST_DATA_RCVD] = { .name = "h2_data_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100423 .desc = "Total number of received DATA frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100424 [H2_ST_SETTINGS_RCVD] = { .name = "h2_settings_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100425 .desc = "Total number of received SETTINGS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100426 [H2_ST_RST_STREAM_RCVD] = { .name = "h2_rst_stream_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100427 .desc = "Total number of received RST_STREAM frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100428 [H2_ST_GOAWAY_RCVD] = { .name = "h2_goaway_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100429 .desc = "Total number of received GOAWAY frames" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100430
431 [H2_ST_CONN_PROTO_ERR] = { .name = "h2_detected_conn_protocol_errors",
432 .desc = "Total number of connection protocol errors" },
433 [H2_ST_STRM_PROTO_ERR] = { .name = "h2_detected_strm_protocol_errors",
434 .desc = "Total number of stream protocol errors" },
435 [H2_ST_RST_STREAM_RESP] = { .name = "h2_rst_stream_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100436 .desc = "Total number of RST_STREAM sent on detected error" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100437 [H2_ST_GOAWAY_RESP] = { .name = "h2_goaway_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100438 .desc = "Total number of GOAWAY sent on detected error" },
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100439
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100440 [H2_ST_OPEN_CONN] = { .name = "h2_open_connections",
441 .desc = "Count of currently open connections" },
442 [H2_ST_OPEN_STREAM] = { .name = "h2_backend_open_streams",
443 .desc = "Count of currently open streams" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100444 [H2_ST_TOTAL_CONN] = { .name = "h2_total_connections",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100445 .desc = "Total number of connections" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100446 [H2_ST_TOTAL_STREAM] = { .name = "h2_backend_total_streams",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100447 .desc = "Total number of streams" },
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100448};
449
450static struct h2_counters {
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100451 long long headers_rcvd; /* total number of HEADERS frame received */
452 long long data_rcvd; /* total number of DATA frame received */
453 long long settings_rcvd; /* total number of SETTINGS frame received */
454 long long rst_stream_rcvd; /* total number of RST_STREAM frame received */
455 long long goaway_rcvd; /* total number of GOAWAY frame received */
Amaury Denoyellea8879232020-10-27 17:16:03 +0100456
457 long long conn_proto_err; /* total number of protocol errors detected */
458 long long strm_proto_err; /* total number of protocol errors detected */
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100459 long long rst_stream_resp; /* total number of RST_STREAM frame sent on error */
460 long long goaway_resp; /* total number of GOAWAY frame sent on error */
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100461
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100462 long long open_conns; /* count of currently open connections */
463 long long open_streams; /* count of currently open streams */
464 long long total_conns; /* total number of connections */
465 long long total_streams; /* total number of streams */
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100466} h2_counters;
467
468static void h2_fill_stats(void *data, struct field *stats)
469{
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100470 struct h2_counters *counters = data;
471
472 stats[H2_ST_HEADERS_RCVD] = mkf_u64(FN_COUNTER, counters->headers_rcvd);
473 stats[H2_ST_DATA_RCVD] = mkf_u64(FN_COUNTER, counters->data_rcvd);
474 stats[H2_ST_SETTINGS_RCVD] = mkf_u64(FN_COUNTER, counters->settings_rcvd);
475 stats[H2_ST_RST_STREAM_RCVD] = mkf_u64(FN_COUNTER, counters->rst_stream_rcvd);
476 stats[H2_ST_GOAWAY_RCVD] = mkf_u64(FN_COUNTER, counters->goaway_rcvd);
Amaury Denoyellea8879232020-10-27 17:16:03 +0100477
478 stats[H2_ST_CONN_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->conn_proto_err);
479 stats[H2_ST_STRM_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->strm_proto_err);
480 stats[H2_ST_RST_STREAM_RESP] = mkf_u64(FN_COUNTER, counters->rst_stream_resp);
481 stats[H2_ST_GOAWAY_RESP] = mkf_u64(FN_COUNTER, counters->goaway_resp);
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100482
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100483 stats[H2_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
484 stats[H2_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
485 stats[H2_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
486 stats[H2_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100487}
488
489static struct stats_module h2_stats_module = {
490 .name = "h2",
491 .fill_stats = h2_fill_stats,
492 .stats = h2_stats,
493 .stats_count = H2_STATS_COUNT,
494 .counters = &h2_counters,
495 .counters_size = sizeof(h2_counters),
496 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
497 .clearable = 1,
498};
499
500INITCALL1(STG_REGISTER, stats_register_module, &h2_stats_module);
501
Willy Tarreau8ceae722018-11-26 11:58:30 +0100502/* the h2c connection pool */
503DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
504
505/* the h2s stream pool */
506DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
507
Willy Tarreaudc572362018-12-12 08:08:05 +0100508/* The default connection window size is 65535, it may only be enlarged using
509 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
510 * we'll pretend we already received the difference between the two to send
511 * an equivalent window update to enlarge it to 2G-1.
512 */
513#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
514
Willy Tarreau455d5682019-05-24 19:42:18 +0200515/* maximum amount of data we're OK with re-aligning for buffer optimizations */
516#define MAX_DATA_REALIGN 1024
517
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200518/* a few settings from the global section */
519static int h2_settings_header_table_size = 4096; /* initial value */
Willy Tarreaue6baec02017-07-27 11:45:11 +0200520static int h2_settings_initial_window_size = 65535; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100521static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100522static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200523
Willy Tarreau2a856182017-05-16 15:20:39 +0200524/* a dmumy closed stream */
525static const struct h2s *h2_closed_stream = &(const struct h2s){
526 .cs = NULL,
527 .h2c = NULL,
528 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100529 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100530 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200531 .id = 0,
532};
533
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100534/* a dmumy closed stream returning a PROTOCOL_ERROR error */
535static const struct h2s *h2_error_stream = &(const struct h2s){
536 .cs = NULL,
537 .h2c = NULL,
538 .st = H2_SS_CLOSED,
539 .errcode = H2_ERR_PROTOCOL_ERROR,
540 .flags = 0,
541 .id = 0,
542};
543
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100544/* a dmumy closed stream returning a REFUSED_STREAM error */
545static const struct h2s *h2_refused_stream = &(const struct h2s){
546 .cs = NULL,
547 .h2c = NULL,
548 .st = H2_SS_CLOSED,
549 .errcode = H2_ERR_REFUSED_STREAM,
550 .flags = 0,
551 .id = 0,
552};
553
Willy Tarreau2a856182017-05-16 15:20:39 +0200554/* and a dummy idle stream for use with any unannounced stream */
555static const struct h2s *h2_idle_stream = &(const struct h2s){
556 .cs = NULL,
557 .h2c = NULL,
558 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100559 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200560 .id = 0,
561};
562
Willy Tarreau144f84a2021-03-02 16:09:26 +0100563struct task *h2_timeout_task(struct task *t, void *context, unsigned int state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200564static int h2_send(struct h2c *h2c);
565static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200566static int h2_process(struct h2c *h2c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100567/* h2_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100568struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100569static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Amaury Denoyelle74162742020-12-11 17:53:05 +0100570static 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 +0100571static int h2_frt_transfer_data(struct h2s *h2s);
Willy Tarreau144f84a2021-03-02 16:09:26 +0100572struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state);
Olivier Houchardf502aca2018-12-14 19:42:40 +0100573static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100574static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200575
Willy Tarreauab2ec452019-08-30 07:07:08 +0200576/* returns a h2c state as an abbreviated 3-letter string, or "???" if unknown */
577static inline const char *h2c_st_to_str(enum h2_cs st)
578{
579 switch (st) {
580 case H2_CS_PREFACE: return "PRF";
581 case H2_CS_SETTINGS1: return "STG";
582 case H2_CS_FRAME_H: return "FRH";
583 case H2_CS_FRAME_P: return "FRP";
584 case H2_CS_FRAME_A: return "FRA";
585 case H2_CS_FRAME_E: return "FRE";
586 case H2_CS_ERROR: return "ERR";
587 case H2_CS_ERROR2: return "ER2";
588 default: return "???";
589 }
590}
591
592/* returns a h2s state as an abbreviated 3-letter string, or "???" if unknown */
593static inline const char *h2s_st_to_str(enum h2_ss st)
594{
595 switch (st) {
596 case H2_SS_IDLE: return "IDL"; // idle
597 case H2_SS_RLOC: return "RSL"; // reserved local
598 case H2_SS_RREM: return "RSR"; // reserved remote
599 case H2_SS_OPEN: return "OPN"; // open
600 case H2_SS_HREM: return "HCR"; // half-closed remote
601 case H2_SS_HLOC: return "HCL"; // half-closed local
602 case H2_SS_ERROR : return "ERR"; // error
603 case H2_SS_CLOSED: return "CLO"; // closed
604 default: return "???";
605 }
606}
607
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200608/* the H2 traces always expect that arg1, if non-null, is of type connection
609 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
610 * that arg3, if non-null, is either of type htx for tx headers, or of type
611 * buffer for everything else.
612 */
613static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
614 const struct ist where, const struct ist func,
615 const void *a1, const void *a2, const void *a3, const void *a4)
616{
617 const struct connection *conn = a1;
618 const struct h2c *h2c = conn ? conn->ctx : NULL;
619 const struct h2s *h2s = a2;
620 const struct buffer *buf = a3;
621 const struct htx *htx;
622 int pos;
623
624 if (!h2c) // nothing to add
625 return;
626
Willy Tarreau17104d42019-08-30 07:12:55 +0200627 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200628 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
629
Willy Tarreaue2f68e92021-06-16 17:47:24 +0200630 if (mask & H2_EV_H2C_NEW) // inside h2_init, otherwise it's hard to match conn & h2c
631 conn_append_debug_info(&trace_buf, conn, " : ");
632
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100633 if (h2c->errcode)
634 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
635
Willy Tarreau73db4342019-09-25 07:28:44 +0200636 if (h2c->dsi >= 0 &&
637 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
Willy Tarreau8520d872020-09-18 07:39:29 +0200638 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 +0200639 }
640
641 if (h2s) {
642 if (h2s->id <= 0)
643 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
644 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100645 if (h2s->id && h2s->errcode)
646 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200647 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200648 }
649
650 /* Let's dump decoded requests and responses right after parsing. They
651 * are traced at level USER with a few recognizable flags.
652 */
653 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
654 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
655 htx = htxbuf(buf); // recv req/res
656 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
657 htx = a3; // send req/res
658 else
659 htx = NULL;
660
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200661 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200662 const struct htx_blk *blk = htx_get_blk(htx, pos);
663 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
664 enum htx_blk_type type = htx_get_blk_type(blk);
665
666 if (type == HTX_BLK_REQ_SL)
667 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200668 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200669 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
670 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
671 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
672 else if (type == HTX_BLK_RES_SL)
673 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200674 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200675 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
676 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
677 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
678 }
679}
680
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200681
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100682/* Detect a pending read0 for a H2 connection. It happens if a read0 was
683 * already reported on a previous xprt->rcvbuf() AND a frame parser failed
684 * to parse pending data, confirming no more progress is possible because
685 * we're facing a truncated frame. The function returns 1 to report a read0
686 * or 0 otherwise.
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200687 */
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100688static inline int h2c_read0_pending(struct h2c *h2c)
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200689{
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100690 return !!(h2c->flags & H2_CF_END_REACHED);
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200691}
692
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200693/* returns true if the connection is allowed to expire, false otherwise. A
Willy Tarreaud34d25a2022-03-18 14:59:54 +0100694 * connection may expire when it has no attached streams. As long as streams
695 * are attached, the application layer is responsible for timeout management,
696 * and each layer will detach when it doesn't want to wait anymore. When the
697 * last one leaves, the connection must take over timeout management.
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200698 */
699static inline int h2c_may_expire(const struct h2c *h2c)
700{
Willy Tarreaud34d25a2022-03-18 14:59:54 +0100701 return !h2c->nb_cs;
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200702}
703
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +0100704/* update h2c timeout if needed */
705static void h2c_update_timeout(struct h2c *h2c)
706{
707 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
708
709 if (!h2c->task)
710 goto leave;
711
712 if (h2c_may_expire(h2c)) {
713 /* no more streams attached */
714 if (h2c->last_sid >= 0) {
715 /* GOAWAY sent, closing in progress */
716 h2c->task->expire = tick_add_ifset(now_ms, h2c->shut_timeout);
717 } else if (br_data(h2c->mbuf)) {
718 /* pending output data: always the regular data timeout */
719 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
Willy Tarreau46f9bb42022-04-14 11:43:35 +0200720 } else if (!(h2c->flags & H2_CF_IS_BACK) && h2c->max_id > 0 && !b_data(&h2c->dbuf)) {
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +0100721 /* idle after having seen one stream => keep-alive */
Willy Tarreau211fc0b2022-04-13 17:40:28 +0200722 int to;
723
724 if (tick_isset(h2c->proxy->timeout.httpka))
725 to = h2c->proxy->timeout.httpka;
726 else
727 to = h2c->proxy->timeout.httpreq;
728
729 h2c->task->expire = tick_add_ifset(h2c->idle_start, to);
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +0100730 } else {
731 /* before first request, or started to deserialize a
732 * new req => http-request, but only set, not refresh.
733 */
734 int exp = (h2c->flags & H2_CF_IS_BACK) ? TICK_ETERNITY : h2c->proxy->timeout.httpreq;
735 h2c->task->expire = tick_add_ifset(h2c->idle_start, exp);
736 }
737 /* if a timeout above was not set, fall back to the default one */
738 if (!tick_isset(h2c->task->expire))
739 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
740 } else {
741 h2c->task->expire = TICK_ETERNITY;
742 }
743 task_queue(h2c->task);
744 leave:
745 TRACE_LEAVE(H2_EV_H2C_WAKE);
746}
747
Olivier Houchard7a977432019-03-21 15:47:13 +0100748static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200749h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100750{
751 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
752 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
753 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
754 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200755 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100756 (conn_xprt_read0_pending(h2c->conn) ||
757 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
758 return 1;
759
760 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100761}
762
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200763/*****************************************************/
764/* functions below are for dynamic buffer management */
765/*****************************************************/
766
Willy Tarreau315d8072017-12-10 22:17:57 +0100767/* indicates whether or not the we may call the h2_recv() function to attempt
768 * to receive data into the buffer and/or demux pending data. The condition is
769 * a bit complex due to some API limits for now. The rules are the following :
770 * - if an error or a shutdown was detected on the connection and the buffer
771 * is empty, we must not attempt to receive
772 * - if the demux buf failed to be allocated, we must not try to receive and
773 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100774 * - if no flag indicates a blocking condition, we may attempt to receive,
775 * regardless of whether the demux buffer is full or not, so that only
776 * de demux part decides whether or not to block. This is needed because
777 * the connection API indeed prevents us from re-enabling receipt that is
778 * already enabled in a polled state, so we must always immediately stop
779 * as soon as the demux can't proceed so as never to hit an end of read
780 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100781 * - otherwise must may not attempt
782 */
783static inline int h2_recv_allowed(const struct h2c *h2c)
784{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200785 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100786 (h2c->st0 >= H2_CS_ERROR ||
787 h2c->conn->flags & CO_FL_ERROR ||
788 conn_xprt_read0_pending(h2c->conn)))
789 return 0;
790
791 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100792 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100793 return 1;
794
795 return 0;
796}
797
Willy Tarreau47b515a2018-12-21 16:09:41 +0100798/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200799static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100800{
801 if (!h2_recv_allowed(h2c))
802 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200803 if ((!consider_buffer || !b_data(&h2c->dbuf))
804 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100805 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200806 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100807}
808
809
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100810/* returns true if the front connection has too many conn_streams attached */
811static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200812{
Willy Tarreaua8754662018-12-23 20:43:58 +0100813 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200814}
815
Willy Tarreau44e973f2018-03-01 17:49:30 +0100816/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
817 * flags are used to figure what buffer was requested. It returns 1 if the
818 * allocation succeeds, in which case the connection is woken up, or 0 if it's
819 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200820 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100821static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200822{
823 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100824 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200825
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100826 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc(&h2c->dbuf)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200827 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200828 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200829 return 1;
830 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200831
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100832 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc(br_tail(h2c->mbuf))) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100833 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200834
835 if (h2c->flags & H2_CF_DEM_MROOM) {
836 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200837 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200838 }
Willy Tarreau14398122017-09-22 14:26:04 +0200839 return 1;
840 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100841
842 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
843 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100844 b_alloc(&h2s->rxbuf)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100845 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200846 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100847 return 1;
848 }
849
Willy Tarreau14398122017-09-22 14:26:04 +0200850 return 0;
851}
852
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200853static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200854{
855 struct buffer *buf = NULL;
856
Willy Tarreau2b718102021-04-21 07:32:39 +0200857 if (likely(!LIST_INLIST(&h2c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100858 unlikely((buf = b_alloc(bptr)) == NULL)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100859 h2c->buf_wait.target = h2c;
860 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreau2b718102021-04-21 07:32:39 +0200861 LIST_APPEND(&ti->buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200862 }
863 return buf;
864}
865
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200866static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200867{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200868 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100869 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100870 offer_buffers(NULL, 1);
Willy Tarreau14398122017-09-22 14:26:04 +0200871 }
872}
873
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200874static inline void h2_release_mbuf(struct h2c *h2c)
875{
876 struct buffer *buf;
877 unsigned int count = 0;
878
879 while (b_size(buf = br_head_pick(h2c->mbuf))) {
880 b_free(buf);
881 count++;
882 }
883 if (count)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100884 offer_buffers(NULL, count);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200885}
886
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100887/* returns the number of allocatable outgoing streams for the connection taking
888 * the last_sid and the reserved ones into account.
889 */
890static inline int h2_streams_left(const struct h2c *h2c)
891{
892 int ret;
893
894 /* consider the number of outgoing streams we're allowed to create before
895 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
896 * nb_reserved is the number of streams which don't yet have an ID.
897 */
898 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
899 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
900 if (ret < 0)
901 ret = 0;
902 return ret;
903}
904
Willy Tarreau00f18a32019-01-26 12:19:01 +0100905/* returns the number of streams in use on a connection to figure if it's
906 * idle or not. We check nb_cs and not nb_streams as the caller will want
907 * to know if it was the last one after a detach().
908 */
909static int h2_used_streams(struct connection *conn)
910{
911 struct h2c *h2c = conn->ctx;
912
913 return h2c->nb_cs;
914}
915
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100916/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100917static int h2_avail_streams(struct connection *conn)
918{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100919 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100920 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100921 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100922
Willy Tarreau6afec462019-01-28 06:40:19 +0100923 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
924 * streams on the connection.
925 */
926 if (h2c->last_sid >= 0)
927 return 0;
928
Willy Tarreauc61966f2019-10-31 15:10:03 +0100929 if (h2c->st0 >= H2_CS_ERROR)
930 return 0;
931
Willy Tarreau86949782019-01-31 10:42:05 +0100932 /* note: may be negative if a SETTINGS frame changes the limit */
933 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100934
935 /* we must also consider the limit imposed by stream IDs */
936 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100937 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100938 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100939 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
940 ret1 = MIN(ret1, ret2);
941 }
942 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100943}
944
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200945
Willy Tarreau62f52692017-10-08 23:01:42 +0200946/*****************************************************************/
947/* functions below are dedicated to the mux setup and management */
948/*****************************************************************/
949
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200950/* Initialize the mux once it's attached. For outgoing connections, the context
951 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200952 * connections from the fact that the context is still NULL (even during mux
953 * upgrades). <input> is always used as Input buffer and may contain data. It is
954 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200955 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200956static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
957 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200958{
959 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100960 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200961 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200962
Christopher Fauletf81ef032019-10-04 15:19:43 +0200963 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200964
Willy Tarreaubafbe012017-11-24 17:34:44 +0100965 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200966 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200967 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200968
Christopher Faulete9b70722019-04-08 10:46:02 +0200969 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200970 h2c->flags = H2_CF_IS_BACK;
971 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
972 if (tick_isset(prx->timeout.serverfin))
973 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100974
975 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
976 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200977 } else {
978 h2c->flags = H2_CF_NONE;
979 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
980 if (tick_isset(prx->timeout.clientfin))
981 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100982
983 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
984 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200985 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100986
Willy Tarreau0b37d652018-10-03 10:33:02 +0200987 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100988 h2c->task = NULL;
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +0100989 h2c->idle_start = now_ms;
Willy Tarreau3f133572017-10-31 19:21:06 +0100990 if (tick_isset(h2c->timeout)) {
991 t = task_new(tid_bit);
992 if (!t)
993 goto fail;
994
995 h2c->task = t;
996 t->process = h2_timeout_task;
997 t->context = h2c;
998 t->expire = tick_add(now_ms, h2c->timeout);
999 }
Willy Tarreauea392822017-10-31 10:02:25 +01001000
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001001 h2c->wait_event.tasklet = tasklet_new();
1002 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +02001003 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001004 h2c->wait_event.tasklet->process = h2_io_cb;
1005 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001006 h2c->wait_event.events = 0;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001007 if (!conn_is_back(conn)) {
1008 /* Connection might already be in the stopping_list if subject
1009 * to h1->h2 upgrade.
1010 */
1011 if (!LIST_INLIST(&conn->stopping_list)) {
1012 LIST_APPEND(&mux_stopping_data[tid].list,
1013 &conn->stopping_list);
1014 }
1015 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02001016
Willy Tarreau2bdcc702020-05-19 11:31:11 +02001017 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +02001018 if (!h2c->ddht)
1019 goto fail;
1020
1021 /* Initialise the context. */
1022 h2c->st0 = H2_CS_PREFACE;
1023 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01001024 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001025 h2c->max_id = -1;
1026 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +01001027 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001028 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +01001029 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001030 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001031 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001032 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001033
Christopher Faulet51f73eb2019-04-08 11:22:47 +02001034 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001035 h2c->dsi = -1;
1036 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001037
Willy Tarreau32218eb2017-09-22 08:07:25 +02001038 h2c->last_sid = -1;
1039
Willy Tarreau51330962019-05-26 09:38:07 +02001040 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +02001041 h2c->miw = 65535; /* mux initial window size */
1042 h2c->mws = 65535; /* mux window size */
1043 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +02001044 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001045 LIST_INIT(&h2c->send_list);
1046 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02001047 LIST_INIT(&h2c->blocked_list);
Willy Tarreau90f366b2021-02-20 11:49:49 +01001048 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001049
Christopher Fauletf81ef032019-10-04 15:19:43 +02001050 conn->ctx = h2c;
1051
Willy Tarreaue2f68e92021-06-16 17:47:24 +02001052 TRACE_USER("new H2 connection", H2_EV_H2C_NEW, conn);
1053
Willy Tarreau3f133572017-10-31 19:21:06 +01001054 if (t)
1055 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +01001056
Willy Tarreau01b44822018-10-03 14:26:37 +02001057 if (h2c->flags & H2_CF_IS_BACK) {
1058 /* FIXME: this is temporary, for outgoing connections we need
1059 * to immediately allocate a stream until the code is modified
1060 * so that the caller calls ->attach(). For now the outgoing cs
Christopher Fauletf81ef032019-10-04 15:19:43 +02001061 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +02001062 */
1063 struct h2s *h2s;
1064
Christopher Fauletf81ef032019-10-04 15:19:43 +02001065 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +02001066 if (!h2s)
1067 goto fail_stream;
1068 }
1069
Willy Tarreau4781b152021-04-06 13:53:36 +02001070 HA_ATOMIC_INC(&h2c->px_counters->open_conns);
1071 HA_ATOMIC_INC(&h2c->px_counters->total_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001072
Willy Tarreau0f383582018-10-03 14:22:21 +02001073 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02001074 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001075 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001076 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +02001077 fail_stream:
1078 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +02001079 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001080 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001081 if (h2c->wait_event.tasklet)
1082 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001083 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +02001084 fail_no_h2c:
Willy Tarreau8802bf12022-01-12 17:24:26 +01001085 if (!conn_is_back(conn))
1086 LIST_DEL_INIT(&conn->stopping_list);
Christopher Fauletf81ef032019-10-04 15:19:43 +02001087 conn->ctx = conn_ctx; /* restore saved ctx */
1088 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001089 return -1;
1090}
1091
Willy Tarreau751f2d02018-10-05 09:35:00 +02001092/* returns the next allocatable outgoing stream ID for the H2 connection, or
1093 * -1 if no more is allocatable.
1094 */
1095static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1096{
1097 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001098
1099 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001100 id = -1;
1101 return id;
1102}
1103
Willy Tarreau2373acc2017-10-12 17:35:14 +02001104/* returns the stream associated with id <id> or NULL if not found */
1105static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1106{
1107 struct eb32_node *node;
1108
Willy Tarreau751f2d02018-10-05 09:35:00 +02001109 if (id == 0)
1110 return (struct h2s *)h2_closed_stream;
1111
Willy Tarreau2a856182017-05-16 15:20:39 +02001112 if (id > h2c->max_id)
1113 return (struct h2s *)h2_idle_stream;
1114
Willy Tarreau2373acc2017-10-12 17:35:14 +02001115 node = eb32_lookup(&h2c->streams_by_id, id);
1116 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001117 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001118
1119 return container_of(node, struct h2s, by_id);
1120}
1121
Christopher Faulet73c12072019-04-08 11:23:22 +02001122/* release function. This one should be called to free all resources allocated
1123 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001124 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001125static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001126{
William Dauchy477757c2020-08-07 22:19:23 +02001127 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001128
Willy Tarreau7838a792019-08-12 18:42:03 +02001129 TRACE_ENTER(H2_EV_H2C_END);
1130
Willy Tarreau32218eb2017-09-22 08:07:25 +02001131 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +02001132 /* The connection must be aattached to this mux to be released */
1133 if (h2c->conn && h2c->conn->ctx == h2c)
1134 conn = h2c->conn;
1135
Willy Tarreau7838a792019-08-12 18:42:03 +02001136 TRACE_DEVEL("freeing h2c", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001137 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +02001138
Willy Tarreau2b718102021-04-21 07:32:39 +02001139 if (LIST_INLIST(&h2c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +01001140 LIST_DEL_INIT(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001141
Willy Tarreau44e973f2018-03-01 17:49:30 +01001142 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +02001143 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +01001144
Willy Tarreauea392822017-10-31 10:02:25 +01001145 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +02001146 h2c->task->context = NULL;
1147 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +01001148 h2c->task = NULL;
1149 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001150 if (h2c->wait_event.tasklet)
1151 tasklet_free(h2c->wait_event.tasklet);
Christopher Faulet21d849f2019-09-18 11:07:20 +02001152 if (conn && h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001153 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Christopher Faulet21d849f2019-09-18 11:07:20 +02001154 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001155
Willy Tarreau4781b152021-04-06 13:53:36 +02001156 HA_ATOMIC_DEC(&h2c->px_counters->open_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001157
Willy Tarreaubafbe012017-11-24 17:34:44 +01001158 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001159 }
1160
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001161 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001162 if (!conn_is_back(conn))
1163 LIST_DEL_INIT(&conn->stopping_list);
1164
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001165 conn->mux = NULL;
1166 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001167 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001168
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001169 conn_stop_tracking(conn);
Willy Tarreaudaa0e5f2021-10-21 22:24:31 +02001170
1171 /* there might be a GOAWAY frame still pending in the TCP
1172 * stack, and if the peer continues to send (i.e. window
1173 * updates etc), this can result in losing the GOAWAY. For
1174 * this reason we try to drain anything received in between.
1175 */
1176 conn->flags |= CO_FL_WANT_DRAIN;
1177
1178 conn_xprt_shutw(conn);
1179 conn_xprt_close(conn);
1180 conn_sock_shutw(conn, !conn_is_back(conn));
1181 conn_ctrl_close(conn);
1182
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001183 if (conn->destroy_cb)
1184 conn->destroy_cb(conn);
1185 conn_free(conn);
1186 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001187
1188 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001189}
1190
1191
Willy Tarreau71681172017-10-23 14:39:06 +02001192/******************************************************/
1193/* functions below are for the H2 protocol processing */
1194/******************************************************/
1195
1196/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001197static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001198{
1199 return h2s ? h2s->id : 0;
1200}
1201
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001202/* returns the sum of the stream's own window size and the mux's initial
1203 * window, which together form the stream's effective window size.
1204 */
1205static inline int h2s_mws(const struct h2s *h2s)
1206{
1207 return h2s->sws + h2s->h2c->miw;
1208}
1209
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001210/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001211static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001212{
1213 if (h2c->msi < 0)
1214 return 0;
1215
1216 if (h2c->msi == h2s_id(h2s))
1217 return 0;
1218
1219 return 1;
1220}
1221
Willy Tarreauec26f622022-04-13 09:40:52 +02001222/* marks an error on the connection. Before settings are sent, we must not send
1223 * a GOAWAY frame, and the error state will prevent h2c_send_goaway_error()
1224 * from verifying this so we set H2_CF_GOAWAY_FAILED to make sure it will not
1225 * even try.
1226 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001227static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001228{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001229 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001230 h2c->errcode = err;
Willy Tarreauec26f622022-04-13 09:40:52 +02001231 if (h2c->st0 < H2_CS_SETTINGS1)
1232 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau741d6df2017-10-17 08:00:59 +02001233 h2c->st0 = H2_CS_ERROR;
1234}
1235
Willy Tarreau175cebb2019-01-24 10:02:24 +01001236/* marks an error on the stream. It may also update an already closed stream
1237 * (e.g. to report an error after an RST was received).
1238 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001239static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001240{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001241 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001242 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001243 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001244 if (h2s->st < H2_SS_ERROR)
1245 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +01001246 if (h2s->cs)
1247 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001248 }
1249}
1250
Willy Tarreau7e094452018-12-19 18:08:52 +01001251/* attempt to notify the data layer of recv availability */
1252static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1253{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001254 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001255 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001256 tasklet_wakeup(h2s->subs->tasklet);
1257 h2s->subs->events &= ~SUB_RETRY_RECV;
1258 if (!h2s->subs->events)
1259 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001260 }
1261}
1262
1263/* attempt to notify the data layer of send availability */
1264static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1265{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001266 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001267 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001268 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001269 tasklet_wakeup(h2s->subs->tasklet);
1270 h2s->subs->events &= ~SUB_RETRY_SEND;
1271 if (!h2s->subs->events)
1272 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001273 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001274 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1275 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1276 tasklet_wakeup(h2s->shut_tl);
1277 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001278}
1279
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001280/* alerts the data layer, trying to wake it up by all means, following
1281 * this sequence :
1282 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1283 * - if its subscribed to send, then it's woken up for send
1284 * - if it was subscribed to neither, its ->wake() callback is called
1285 * It is safe to call this function with a closed stream which doesn't have a
1286 * conn_stream anymore.
1287 */
1288static void __maybe_unused h2s_alert(struct h2s *h2s)
1289{
Willy Tarreau7838a792019-08-12 18:42:03 +02001290 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1291
Willy Tarreauf96508a2020-01-10 11:12:48 +01001292 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001293 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001294 h2s_notify_recv(h2s);
1295 h2s_notify_send(h2s);
1296 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001297 else if (h2s->cs && h2s->cs->data_cb->wake != NULL) {
1298 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001299 h2s->cs->data_cb->wake(h2s->cs);
Willy Tarreau7838a792019-08-12 18:42:03 +02001300 }
1301
1302 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001303}
1304
Willy Tarreaue4820742017-07-27 13:37:23 +02001305/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001306static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001307{
1308 uint8_t *out = frame;
1309
1310 *out = len >> 16;
1311 write_n16(out + 1, len);
1312}
1313
Willy Tarreau54c15062017-10-10 17:10:03 +02001314/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1315 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1316 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001317 * available in the buffer's input prior to calling this function. The buffer
1318 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001319 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001320static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001321 const struct buffer *b, int o)
1322{
Willy Tarreau591d4452018-06-15 17:21:00 +02001323 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 +02001324}
1325
Willy Tarreau1f094672017-11-20 21:27:45 +01001326static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001327{
Willy Tarreau591d4452018-06-15 17:21:00 +02001328 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001329}
1330
Willy Tarreau1f094672017-11-20 21:27:45 +01001331static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001332{
Willy Tarreau591d4452018-06-15 17:21:00 +02001333 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001334}
1335
Willy Tarreau1f094672017-11-20 21:27:45 +01001336static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001337{
Willy Tarreau591d4452018-06-15 17:21:00 +02001338 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001339}
1340
1341
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001342/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1343 * The algorithm is not obvious. It turns out that H2 headers are neither
1344 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1345 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001346 *
1347 * b0 b1 b2 b3 b4 b5..b8
1348 * +----------+---------+--------+----+----+----------------------+
1349 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1350 * +----------+---------+--------+----+----+----------------------+
1351 *
1352 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1353 * we get the sid properly aligned and ordered, and 16 bits of len properly
1354 * ordered as well. The type and flags can be extracted using bit shifts from
1355 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001356 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1357 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001358 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001359static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001360{
1361 uint64_t w;
1362
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001363 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001364 return 0;
1365
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001366 w = h2_get_n64(b, o + 1);
1367 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001368 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1369 h->ff = w >> 32;
1370 h->ft = w >> 40;
1371 h->len += w >> 48;
1372 return 1;
1373}
1374
1375/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1376 * h2_peek_frame_hdr() above.
1377 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001378static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001379{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001380 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001381}
1382
1383/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001384static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001385{
1386 int ret;
1387
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001388 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001389 if (ret > 0)
1390 h2_skip_frame_hdr(b);
1391 return ret;
1392}
1393
Willy Tarreaucb985a42019-10-07 16:56:34 +02001394
1395/* try to fragment the headers frame present at the beginning of buffer <b>,
1396 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1397 * success. Typical causes of failure include a buffer not large enough to
1398 * add extra frame headers. The existing frame size is read in the current
1399 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1400 * and its length will be adjusted. The stream ID for continuation frames will
1401 * be copied from the initial frame's.
1402 */
1403static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1404{
1405 size_t remain = b->data - 9;
1406 int extra_frames = (remain - 1) / mfs;
1407 size_t fsize;
1408 char *fptr;
1409 int frame;
1410
1411 if (b->data <= mfs + 9)
1412 return 1;
1413
1414 /* Too large a frame, we need to fragment it using CONTINUATION
1415 * frames. We start from the end and move tails as needed.
1416 */
1417 if (b->data + extra_frames * 9 > b->size)
1418 return 0;
1419
1420 for (frame = extra_frames; frame; frame--) {
1421 fsize = ((remain - 1) % mfs) + 1;
1422 remain -= fsize;
1423
1424 /* move data */
1425 fptr = b->area + 9 + remain + (frame - 1) * 9;
1426 memmove(fptr + 9, b->area + 9 + remain, fsize);
1427 b->data += 9;
1428
1429 /* write new frame header */
1430 h2_set_frame_size(fptr, fsize);
1431 fptr[3] = H2_FT_CONTINUATION;
1432 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1433 write_n32(fptr + 5, read_n32(b->area + 5));
1434 }
1435
1436 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1437 h2_set_frame_size(b->area, remain);
1438 return 1;
1439}
1440
1441
Willy Tarreau00dd0782018-03-01 16:31:34 +01001442/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1443 * its connection if the stream was not yet closed. Please use this exclusively
1444 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001445 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001446static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001447{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001448 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001449 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001450 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001451 if (!h2s->id)
1452 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +01001453 if (h2s->cs) {
Willy Tarreaua27db382019-03-25 18:13:16 +01001454 if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf))
1455 h2s_notify_recv(h2s);
1456 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001457 HA_ATOMIC_DEC(&h2s->h2c->px_counters->open_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001458
Willy Tarreau7838a792019-08-12 18:42:03 +02001459 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001460 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001461 h2s->st = H2_SS_CLOSED;
1462}
1463
Willy Tarreau71049cc2018-03-28 13:56:39 +02001464/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001465/* h2s_destroy should only ever be called by the thread that owns the stream,
1466 * that means that a tasklet should be used if we want to destroy the h2s
1467 * from another thread
1468 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001469static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001470{
Willy Tarreau7838a792019-08-12 18:42:03 +02001471 struct connection *conn = h2s->h2c->conn;
1472
1473 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1474
Willy Tarreau0a10de62018-03-01 16:27:53 +01001475 h2s_close(h2s);
1476 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001477 if (b_size(&h2s->rxbuf)) {
1478 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01001479 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02001480 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001481
1482 if (h2s->subs)
1483 h2s->subs->events = 0;
1484
Joseph Herlantd77575d2018-11-25 10:54:45 -08001485 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001486 * reference left would be in the h2c send_list/fctl_list, and if
1487 * we're in it, we're getting out anyway
1488 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001489 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001490
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001491 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001492 tasklet_free(h2s->shut_tl);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001493 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001494
1495 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001496}
1497
Willy Tarreaua8e49542018-10-03 18:53:55 +02001498/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1499 * stream tree. In case of error, nothing is added and NULL is returned. The
1500 * causes of errors can be any failed memory allocation. The caller is
1501 * responsible for checking if the connection may support an extra stream
1502 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001503 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001504static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001505{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001506 struct h2s *h2s;
1507
Willy Tarreau7838a792019-08-12 18:42:03 +02001508 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1509
Willy Tarreaubafbe012017-11-24 17:34:44 +01001510 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001511 if (!h2s)
1512 goto out;
1513
Willy Tarreau5723f292020-01-10 15:16:57 +01001514 h2s->shut_tl = tasklet_new();
1515 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001516 pool_free(pool_head_h2s, h2s);
1517 goto out;
1518 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001519 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001520 h2s->shut_tl->process = h2_deferred_shut;
1521 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001522 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001523 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001524 h2s->cs = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001525 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001526 h2s->flags = H2_SF_NONE;
1527 h2s->errcode = H2_ERR_NO_ERROR;
1528 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001529 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001530 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001531 h2s->rxbuf = BUF_NULL;
Amaury Denoyelle74162742020-12-11 17:53:05 +01001532 memset(h2s->upgrade_protocol, 0, sizeof(h2s->upgrade_protocol));
Willy Tarreau751f2d02018-10-05 09:35:00 +02001533
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001534 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001535 if (id > 0)
1536 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001537 else
1538 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001539
1540 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001541 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001542 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001543
Willy Tarreau4781b152021-04-06 13:53:36 +02001544 HA_ATOMIC_INC(&h2c->px_counters->open_streams);
1545 HA_ATOMIC_INC(&h2c->px_counters->total_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001546
Willy Tarreau7838a792019-08-12 18:42:03 +02001547 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001548 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001549 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001550 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001551 return NULL;
1552}
1553
1554/* creates a new stream <id> on the h2c connection and returns it, or NULL in
Christopher Faulet7d013e72020-12-15 16:56:50 +01001555 * case of memory allocation error. <input> is used as input buffer for the new
1556 * stream. On success, it is transferred to the stream and the mux is no longer
1557 * responsible of it. On error, <input> is unchanged, thus the mux must still
1558 * take care of it.
Willy Tarreaua8e49542018-10-03 18:53:55 +02001559 */
Amaury Denoyelleee7fcd52021-10-18 14:45:49 +02001560static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id, struct buffer *input, uint32_t flags)
Willy Tarreaua8e49542018-10-03 18:53:55 +02001561{
1562 struct session *sess = h2c->conn->owner;
1563 struct conn_stream *cs;
1564 struct h2s *h2s;
1565
Willy Tarreau7838a792019-08-12 18:42:03 +02001566 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1567
Willy Tarreaua8e49542018-10-03 18:53:55 +02001568 if (h2c->nb_streams >= h2_settings_max_concurrent_streams)
1569 goto out;
1570
1571 h2s = h2s_new(h2c, id);
1572 if (!h2s)
1573 goto out;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001574
Christopher Faulet236c93b2020-07-02 09:19:54 +02001575 cs = cs_new(h2c->conn, h2c->conn->target);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001576 if (!cs)
1577 goto out_close;
1578
Olivier Houchard746fb772018-12-15 19:42:00 +01001579 cs->flags |= CS_FL_NOT_FIRST;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001580 h2s->cs = cs;
1581 cs->ctx = h2s;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001582 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001583
Amaury Denoyelleee7fcd52021-10-18 14:45:49 +02001584 /* FIXME wrong analogy between ext-connect and websocket, this need to
1585 * be refine.
1586 */
1587 if (flags & H2_SF_EXT_CONNECT_RCVD)
1588 cs->flags |= CS_FL_WEBSOCKET;
1589
Willy Tarreaua217df92022-02-04 09:05:37 +01001590 /* The stream will record the request's accept date (which is either the
1591 * end of the connection's or the date immediately after the previous
1592 * request) and the idle time, which is the delay since the previous
1593 * request. We can set the value now, it will be copied by stream_new().
1594 */
1595 sess->t_idle = tv_ms_elapsed(&sess->tv_accept, &now) - sess->t_handshake;
Christopher Faulet7d013e72020-12-15 16:56:50 +01001596 if (stream_create_from_cs(cs, input) < 0)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001597 goto out_free_cs;
1598
Willy Tarreau590a0512018-09-05 11:56:48 +02001599 /* We want the accept date presented to the next stream to be the one
1600 * we have now, the handshake time to be null (since the next stream
1601 * is not delayed by a handshake), and the idle time to count since
1602 * right now.
1603 */
1604 sess->accept_date = date;
1605 sess->tv_accept = now;
1606 sess->t_handshake = 0;
Willy Tarreaua217df92022-02-04 09:05:37 +01001607 sess->t_idle = 0;
Willy Tarreau590a0512018-09-05 11:56:48 +02001608
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001609 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001610 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001611 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001612 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001613 return h2s;
1614
1615 out_free_cs:
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001616 h2c->nb_cs--;
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +01001617 if (!h2c->nb_cs)
1618 h2c->idle_start = now_ms;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001619 cs_free(cs);
Olivier Houchard58d87f32019-05-29 16:44:17 +02001620 h2s->cs = NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001621 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001622 h2s_destroy(h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001623 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001624 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001625 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001626 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001627}
1628
Willy Tarreau751f2d02018-10-05 09:35:00 +02001629/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1630 * and returns it, or NULL in case of memory allocation error or if the highest
1631 * possible stream ID was reached.
1632 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001633static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001634{
1635 struct h2s *h2s = NULL;
1636
Willy Tarreau7838a792019-08-12 18:42:03 +02001637 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1638
Willy Tarreau86949782019-01-31 10:42:05 +01001639 if (h2c->nb_streams >= h2c->streams_limit)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001640 goto out;
1641
Willy Tarreaua80dca82019-01-24 17:08:28 +01001642 if (h2_streams_left(h2c) < 1)
1643 goto out;
1644
Willy Tarreau751f2d02018-10-05 09:35:00 +02001645 /* Defer choosing the ID until we send the first message to create the stream */
1646 h2s = h2s_new(h2c, 0);
1647 if (!h2s)
1648 goto out;
1649
1650 h2s->cs = cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001651 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001652 cs->ctx = h2s;
1653 h2c->nb_cs++;
1654
Willy Tarreau751f2d02018-10-05 09:35:00 +02001655 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001656 if (likely(h2s))
1657 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1658 else
1659 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001660 return h2s;
1661}
1662
Willy Tarreaube5b7152017-09-25 16:25:39 +02001663/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1664 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1665 * the various settings codes.
1666 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001667static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001668{
1669 struct buffer *res;
1670 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001671 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001672 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001673 int ret = 0;
1674
1675 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001676
1677 if (h2c_mux_busy(h2c, NULL)) {
1678 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001679 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001680 }
1681
Willy Tarreaube5b7152017-09-25 16:25:39 +02001682 chunk_init(&buf, buf_data, sizeof(buf_data));
1683 chunk_memcpy(&buf,
1684 "\x00\x00\x00" /* length : 0 for now */
1685 "\x04\x00" /* type : 4 (settings), flags : 0 */
1686 "\x00\x00\x00\x00", /* stream ID : 0 */
1687 9);
1688
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001689 if (h2c->flags & H2_CF_IS_BACK) {
1690 /* send settings_enable_push=0 */
1691 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1692 }
1693
Amaury Denoyelle0ea2c4f2021-07-09 17:14:30 +02001694 /* rfc 8441 #3 SETTINGS_ENABLE_CONNECT_PROTOCOL=1,
1695 * sent automatically unless disabled in the global config */
1696 if (!(global.tune.options & GTUNE_DISABLE_H2_WEBSOCKET))
1697 chunk_memcat(&buf, "\x00\x08\x00\x00\x00\x01", 6);
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01001698
Willy Tarreaube5b7152017-09-25 16:25:39 +02001699 if (h2_settings_header_table_size != 4096) {
1700 char str[6] = "\x00\x01"; /* header_table_size */
1701
1702 write_n32(str + 2, h2_settings_header_table_size);
1703 chunk_memcat(&buf, str, 6);
1704 }
1705
1706 if (h2_settings_initial_window_size != 65535) {
1707 char str[6] = "\x00\x04"; /* initial_window_size */
1708
1709 write_n32(str + 2, h2_settings_initial_window_size);
1710 chunk_memcat(&buf, str, 6);
1711 }
1712
1713 if (h2_settings_max_concurrent_streams != 0) {
1714 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1715
1716 /* Note: 0 means "unlimited" for haproxy's config but not for
1717 * the protocol, so never send this value!
1718 */
1719 write_n32(str + 2, h2_settings_max_concurrent_streams);
1720 chunk_memcat(&buf, str, 6);
1721 }
1722
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001723 mfs = h2_settings_max_frame_size;
1724 if (mfs > global.tune.bufsize)
1725 mfs = global.tune.bufsize;
1726
1727 if (!mfs)
1728 mfs = global.tune.bufsize;
1729
1730 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001731 char str[6] = "\x00\x05"; /* max_frame_size */
1732
1733 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1734 * match bufsize - rewrite size, but at the moment it seems
1735 * that clients don't take care of it.
1736 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001737 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001738 chunk_memcat(&buf, str, 6);
1739 }
1740
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001741 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001742
1743 res = br_tail(h2c->mbuf);
1744 retry:
1745 if (!h2_get_buf(h2c, res)) {
1746 h2c->flags |= H2_CF_MUX_MALLOC;
1747 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001748 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001749 }
1750
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001751 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001752 if (unlikely(ret <= 0)) {
1753 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001754 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1755 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001756 h2c->flags |= H2_CF_MUX_MFULL;
1757 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001758 }
1759 else {
1760 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001761 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001762 }
1763 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001764 out:
1765 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001766 return ret;
1767}
1768
Willy Tarreau52eed752017-09-22 15:05:09 +02001769/* Try to receive a connection preface, then upon success try to send our
1770 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1771 * missing data. It may return an error in h2c.
1772 */
1773static int h2c_frt_recv_preface(struct h2c *h2c)
1774{
1775 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001776 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001777
Willy Tarreau7838a792019-08-12 18:42:03 +02001778 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1779
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001780 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001781
1782 if (unlikely(ret1 <= 0)) {
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02001783 if (!ret1)
1784 h2c->flags |= H2_CF_DEM_SHORT_READ;
Amaury Denoyellea8879232020-10-27 17:16:03 +01001785 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001786 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 +02001787 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc23d6d12021-06-17 08:08:48 +02001788 if (b_data(&h2c->dbuf) ||
1789 !(((const struct session *)h2c->conn->owner)->fe->options & PR_O_IGNORE_PRB))
1790 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001791 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001792 ret2 = 0;
1793 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001794 }
1795
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001796 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001797 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001798 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001799 out:
1800 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001801 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001802}
1803
Willy Tarreau01b44822018-10-03 14:26:37 +02001804/* Try to send a connection preface, then upon success try to send our
1805 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1806 * missing data. It may return an error in h2c.
1807 */
1808static int h2c_bck_send_preface(struct h2c *h2c)
1809{
1810 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001811 int ret = 0;
1812
1813 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001814
1815 if (h2c_mux_busy(h2c, NULL)) {
1816 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001817 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001818 }
1819
Willy Tarreaubcc45952019-05-26 10:05:50 +02001820 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001821 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001822 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001823 h2c->flags |= H2_CF_MUX_MALLOC;
1824 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001825 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001826 }
1827
1828 if (!b_data(res)) {
1829 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001830 ret = b_istput(res, ist(H2_CONN_PREFACE));
1831 if (unlikely(ret <= 0)) {
1832 if (!ret) {
1833 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1834 goto retry;
1835 h2c->flags |= H2_CF_MUX_MFULL;
1836 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001837 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001838 }
1839 else {
1840 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001841 ret = 0;
1842 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001843 }
1844 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001845 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001846 ret = h2c_send_settings(h2c);
1847 out:
1848 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1849 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001850}
1851
Willy Tarreau081d4722017-05-16 21:51:05 +02001852/* try to send a GOAWAY frame on the connection to report an error or a graceful
1853 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1854 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1855 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1856 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1857 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1858 * on unrecoverable failure. It will not attempt to send one again in this last
Willy Tarreauec26f622022-04-13 09:40:52 +02001859 * case, nor will it send one if settings were not sent (e.g. still waiting for
1860 * a preface) so that it is safe to use h2c_error() to report such errors.
Willy Tarreau081d4722017-05-16 21:51:05 +02001861 */
1862static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1863{
1864 struct buffer *res;
1865 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001866 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001867
Willy Tarreau7838a792019-08-12 18:42:03 +02001868 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1869
Willy Tarreauec26f622022-04-13 09:40:52 +02001870 if ((h2c->flags & H2_CF_GOAWAY_FAILED) || h2c->st0 < H2_CS_SETTINGS1) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001871 ret = 1; // claim that it worked
1872 goto out;
1873 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001874
1875 if (h2c_mux_busy(h2c, h2s)) {
1876 if (h2s)
1877 h2s->flags |= H2_SF_BLK_MBUSY;
1878 else
1879 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001880 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001881 }
1882
Willy Tarreau9c218e72019-05-26 10:08:28 +02001883 /* len: 8, type: 7, flags: none, sid: 0 */
1884 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1885
1886 if (h2c->last_sid < 0)
1887 h2c->last_sid = h2c->max_id;
1888
1889 write_n32(str + 9, h2c->last_sid);
1890 write_n32(str + 13, h2c->errcode);
1891
Willy Tarreaubcc45952019-05-26 10:05:50 +02001892 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001893 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001894 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001895 h2c->flags |= H2_CF_MUX_MALLOC;
1896 if (h2s)
1897 h2s->flags |= H2_SF_BLK_MROOM;
1898 else
1899 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001900 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001901 }
1902
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001903 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001904 if (unlikely(ret <= 0)) {
1905 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001906 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1907 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001908 h2c->flags |= H2_CF_MUX_MFULL;
1909 if (h2s)
1910 h2s->flags |= H2_SF_BLK_MROOM;
1911 else
1912 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001913 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001914 }
1915 else {
1916 /* we cannot report this error using GOAWAY, so we mark
1917 * it and claim a success.
1918 */
1919 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1920 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001921 ret = 1;
1922 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001923 }
1924 }
1925 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001926
1927 /* some codes are not for real errors, just attempts to close cleanly */
1928 switch (h2c->errcode) {
1929 case H2_ERR_NO_ERROR:
1930 case H2_ERR_ENHANCE_YOUR_CALM:
1931 case H2_ERR_REFUSED_STREAM:
1932 case H2_ERR_CANCEL:
1933 break;
1934 default:
Willy Tarreau4781b152021-04-06 13:53:36 +02001935 HA_ATOMIC_INC(&h2c->px_counters->goaway_resp);
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001936 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001937 out:
1938 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001939 return ret;
1940}
1941
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001942/* Try to send an RST_STREAM frame on the connection for the indicated stream
1943 * during mux operations. This stream must be valid and cannot be closed
1944 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1945 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1946 * not yet.
1947 *
1948 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1949 * to write the message, it subscribes the stream to future notifications.
1950 */
1951static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1952{
1953 struct buffer *res;
1954 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001955 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001956
Willy Tarreau7838a792019-08-12 18:42:03 +02001957 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1958
1959 if (!h2s || h2s->st == H2_SS_CLOSED) {
1960 ret = 1;
1961 goto out;
1962 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001963
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001964 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1965 * RST_STREAM in response to a RST_STREAM frame.
1966 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001967 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001968 ret = 1;
1969 goto ignore;
1970 }
1971
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001972 if (h2c_mux_busy(h2c, h2s)) {
1973 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001974 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001975 }
1976
Willy Tarreau9c218e72019-05-26 10:08:28 +02001977 /* len: 4, type: 3, flags: none */
1978 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1979 write_n32(str + 5, h2s->id);
1980 write_n32(str + 9, h2s->errcode);
1981
Willy Tarreaubcc45952019-05-26 10:05:50 +02001982 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001983 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001984 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001985 h2c->flags |= H2_CF_MUX_MALLOC;
1986 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001987 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001988 }
1989
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001990 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001991 if (unlikely(ret <= 0)) {
1992 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001993 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1994 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001995 h2c->flags |= H2_CF_MUX_MFULL;
1996 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001997 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001998 }
1999 else {
2000 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002001 ret = 0;
2002 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002003 }
2004 }
2005
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002006 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002007 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002008 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002009 out:
2010 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002011 return ret;
2012}
2013
2014/* Try to send an RST_STREAM frame on the connection for the stream being
2015 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01002016 * error code, even if the stream is one of the dummy ones, and will update
2017 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002018 *
2019 * Returns > 0 on success or zero if nothing was done. In case of lack of room
2020 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08002021 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002022 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02002023 */
2024static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
2025{
2026 struct buffer *res;
2027 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002028 int ret = 0;
2029
2030 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002031
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002032 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
2033 * RST_STREAM in response to a RST_STREAM frame.
2034 */
2035 if (h2c->dft == H2_FT_RST_STREAM) {
2036 ret = 1;
2037 goto ignore;
2038 }
2039
Willy Tarreau27a84c92017-10-17 08:10:17 +02002040 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002041 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002042 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002043 }
2044
Willy Tarreau9c218e72019-05-26 10:08:28 +02002045 /* len: 4, type: 3, flags: none */
2046 memcpy(str, "\x00\x00\x04\x03\x00", 5);
2047
2048 write_n32(str + 5, h2c->dsi);
2049 write_n32(str + 9, h2s->errcode);
2050
Willy Tarreaubcc45952019-05-26 10:05:50 +02002051 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002052 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002053 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002054 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002055 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002056 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002057 }
2058
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002059 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02002060 if (unlikely(ret <= 0)) {
2061 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002062 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2063 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002064 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002065 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002066 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002067 }
2068 else {
2069 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002070 ret = 0;
2071 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002072 }
2073 }
2074
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002075 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02002076 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002077 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002078 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002079 }
2080
Willy Tarreau7838a792019-08-12 18:42:03 +02002081 out:
Willy Tarreau4781b152021-04-06 13:53:36 +02002082 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_resp);
Willy Tarreau7838a792019-08-12 18:42:03 +02002083 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002084 return ret;
2085}
2086
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002087/* try to send an empty DATA frame with the ES flag set to notify about the
2088 * end of stream and match a shutdown(write). If an ES was already sent as
2089 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
2090 * on success or zero if nothing was done. In case of lack of room to write the
2091 * message, it subscribes the requesting stream to future notifications.
2092 */
2093static int h2_send_empty_data_es(struct h2s *h2s)
2094{
2095 struct h2c *h2c = h2s->h2c;
2096 struct buffer *res;
2097 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002098 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002099
Willy Tarreau7838a792019-08-12 18:42:03 +02002100 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
2101
2102 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
2103 ret = 1;
2104 goto out;
2105 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002106
2107 if (h2c_mux_busy(h2c, h2s)) {
2108 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002109 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002110 }
2111
Willy Tarreau9c218e72019-05-26 10:08:28 +02002112 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
2113 memcpy(str, "\x00\x00\x00\x00\x01", 5);
2114 write_n32(str + 5, h2s->id);
2115
Willy Tarreaubcc45952019-05-26 10:05:50 +02002116 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002117 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002118 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002119 h2c->flags |= H2_CF_MUX_MALLOC;
2120 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002121 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002122 }
2123
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002124 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002125 if (likely(ret > 0)) {
2126 h2s->flags |= H2_SF_ES_SENT;
2127 }
2128 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002129 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2130 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002131 h2c->flags |= H2_CF_MUX_MFULL;
2132 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002133 }
2134 else {
2135 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002136 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002137 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002138 out:
2139 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002140 return ret;
2141}
2142
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002143/* wake a specific stream and assign its conn_stream some CS_FL_* flags among
Willy Tarreau99ad1b32019-05-14 11:46:28 +02002144 * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002145 * is automatically updated accordingly. If the stream is orphaned, it is
2146 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002147 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002148static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002149{
Willy Tarreau7838a792019-08-12 18:42:03 +02002150 struct h2c *h2c = h2s->h2c;
2151
2152 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2153
Christopher Fauletf02ca002019-03-07 16:21:34 +01002154 if (!h2s->cs) {
2155 /* this stream was already orphaned */
2156 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002157 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002158 return;
2159 }
2160
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002161 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002162 if (h2s->st == H2_SS_OPEN)
2163 h2s->st = H2_SS_HREM;
2164 else if (h2s->st == H2_SS_HLOC)
2165 h2s_close(h2s);
2166 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002167
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002168 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
2169 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
2170 h2s->cs->flags |= CS_FL_ERR_PENDING;
2171 if (h2s->cs->flags & CS_FL_EOS)
2172 h2s->cs->flags |= CS_FL_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02002173
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002174 if (h2s->st < H2_SS_ERROR)
2175 h2s->st = H2_SS_ERROR;
2176 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002177
2178 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002179 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002180}
2181
2182/* wake the streams attached to the connection, whose id is greater than <last>
2183 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002184 */
Willy Tarreau23482912019-05-07 15:23:14 +02002185static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002186{
2187 struct eb32_node *node;
2188 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002189
Willy Tarreau7838a792019-08-12 18:42:03 +02002190 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2191
Christopher Fauletf02ca002019-03-07 16:21:34 +01002192 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002193 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2194 while (node) {
2195 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002196 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002197 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002198 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002199
Christopher Fauletf02ca002019-03-07 16:21:34 +01002200 /* Wake all streams with unassigned ID (ID == 0) */
2201 node = eb32_lookup(&h2c->streams_by_id, 0);
2202 while (node) {
2203 h2s = container_of(node, struct h2s, by_id);
2204 if (h2s->id > 0)
2205 break;
2206 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002207 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002208 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002209
2210 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002211}
2212
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002213/* Wake up all blocked streams whose window size has become positive after the
2214 * mux's initial window was adjusted. This should be done after having processed
2215 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002216 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002217static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002218{
2219 struct h2s *h2s;
2220 struct eb32_node *node;
2221
Willy Tarreau7838a792019-08-12 18:42:03 +02002222 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2223
Willy Tarreau3421aba2017-07-27 15:41:03 +02002224 node = eb32_first(&h2c->streams_by_id);
2225 while (node) {
2226 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002227 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002228 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002229 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002230 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2231 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002232 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002233 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002234 node = eb32_next(node);
2235 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002236
2237 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002238}
2239
2240/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2241 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002242 * return an error in h2c. The caller must have already verified frame length
2243 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002244 */
2245static int h2c_handle_settings(struct h2c *h2c)
2246{
2247 unsigned int offset;
2248 int error;
2249
Willy Tarreau7838a792019-08-12 18:42:03 +02002250 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2251
Willy Tarreau3421aba2017-07-27 15:41:03 +02002252 if (h2c->dff & H2_F_SETTINGS_ACK) {
2253 if (h2c->dfl) {
2254 error = H2_ERR_FRAME_SIZE_ERROR;
2255 goto fail;
2256 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002257 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002258 }
2259
Willy Tarreau3421aba2017-07-27 15:41:03 +02002260 /* process full frame only */
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002261 if (b_data(&h2c->dbuf) < h2c->dfl) {
2262 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002263 goto out0;
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002264 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002265
2266 /* parse the frame */
2267 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002268 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2269 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002270
2271 switch (type) {
2272 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2273 /* we need to update all existing streams with the
2274 * difference from the previous iws.
2275 */
2276 if (arg < 0) { // RFC7540#6.5.2
2277 error = H2_ERR_FLOW_CONTROL_ERROR;
2278 goto fail;
2279 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002280 h2c->miw = arg;
2281 break;
2282 case H2_SETTINGS_MAX_FRAME_SIZE:
2283 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002284 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 +02002285 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002286 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002287 goto fail;
2288 }
2289 h2c->mfs = arg;
2290 break;
Willy Tarreau8a4dca02022-01-13 16:00:12 +01002291 case H2_SETTINGS_HEADER_TABLE_SIZE:
2292 h2c->flags |= H2_CF_SHTS_UPDATED;
2293 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002294 case H2_SETTINGS_ENABLE_PUSH:
2295 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002296 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002297 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002298 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002299 goto fail;
2300 }
2301 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002302 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2303 if (h2c->flags & H2_CF_IS_BACK) {
2304 /* the limit is only for the backend; for the frontend it is our limit */
2305 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2306 arg = h2_settings_max_concurrent_streams;
2307 h2c->streams_limit = arg;
2308 }
2309 break;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002310 case H2_SETTINGS_ENABLE_CONNECT_PROTOCOL:
Amaury Denoyelle68993a12021-10-18 09:43:29 +02002311 if (arg == 1)
2312 h2c->flags |= H2_CF_RCVD_RFC8441;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002313 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002314 }
2315 }
2316
2317 /* need to ACK this frame now */
2318 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002319 done:
2320 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002321 return 1;
2322 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002323 if (!(h2c->flags & H2_CF_IS_BACK))
2324 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002325 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002326 out0:
2327 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 +02002328 return 0;
2329}
2330
2331/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2332 * success or one of the h2_status values.
2333 */
2334static int h2c_ack_settings(struct h2c *h2c)
2335{
2336 struct buffer *res;
2337 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002338 int ret = 0;
2339
2340 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002341
2342 if (h2c_mux_busy(h2c, NULL)) {
2343 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002344 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002345 }
2346
Willy Tarreau9c218e72019-05-26 10:08:28 +02002347 memcpy(str,
2348 "\x00\x00\x00" /* length : 0 (no data) */
2349 "\x04" "\x01" /* type : 4, flags : ACK */
2350 "\x00\x00\x00\x00" /* stream ID */, 9);
2351
Willy Tarreaubcc45952019-05-26 10:05:50 +02002352 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002353 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002354 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002355 h2c->flags |= H2_CF_MUX_MALLOC;
2356 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002357 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002358 }
2359
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002360 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002361 if (unlikely(ret <= 0)) {
2362 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002363 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2364 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002365 h2c->flags |= H2_CF_MUX_MFULL;
2366 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002367 }
2368 else {
2369 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002370 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002371 }
2372 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002373 out:
2374 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002375 return ret;
2376}
2377
Willy Tarreaucf68c782017-10-10 17:11:41 +02002378/* processes a PING frame and schedules an ACK if needed. The caller must pass
2379 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002380 * missing data. The caller must have already verified frame length
2381 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002382 */
2383static int h2c_handle_ping(struct h2c *h2c)
2384{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002385 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002386 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002387 h2c->st0 = H2_CS_FRAME_A;
2388 return 1;
2389}
2390
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002391/* Try to send a window update for stream id <sid> and value <increment>.
2392 * Returns > 0 on success or zero on missing room or failure. It may return an
2393 * error in h2c.
2394 */
2395static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2396{
2397 struct buffer *res;
2398 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002399 int ret = 0;
2400
2401 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002402
2403 if (h2c_mux_busy(h2c, NULL)) {
2404 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002405 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002406 }
2407
Willy Tarreau9c218e72019-05-26 10:08:28 +02002408 /* length: 4, type: 8, flags: none */
2409 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2410 write_n32(str + 5, sid);
2411 write_n32(str + 9, increment);
2412
Willy Tarreaubcc45952019-05-26 10:05:50 +02002413 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002414 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002415 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002416 h2c->flags |= H2_CF_MUX_MALLOC;
2417 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002418 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002419 }
2420
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002421 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002422 if (unlikely(ret <= 0)) {
2423 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002424 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2425 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002426 h2c->flags |= H2_CF_MUX_MFULL;
2427 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002428 }
2429 else {
2430 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002431 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002432 }
2433 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002434 out:
2435 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002436 return ret;
2437}
2438
2439/* try to send pending window update for the connection. It's safe to call it
2440 * with no pending updates. Returns > 0 on success or zero on missing room or
2441 * failure. It may return an error in h2c.
2442 */
2443static int h2c_send_conn_wu(struct h2c *h2c)
2444{
2445 int ret = 1;
2446
Willy Tarreau7838a792019-08-12 18:42:03 +02002447 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2448
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002449 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002450 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002451
Willy Tarreau97aaa672018-12-23 09:49:04 +01002452 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2453 /* increase the advertised connection window to 2G on
2454 * first update.
2455 */
2456 h2c->flags |= H2_CF_WINDOW_OPENED;
2457 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2458 }
2459
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002460 /* send WU for the connection */
2461 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2462 if (ret > 0)
2463 h2c->rcvd_c = 0;
2464
Willy Tarreau7838a792019-08-12 18:42:03 +02002465 out:
2466 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002467 return ret;
2468}
2469
2470/* try to send pending window update for the current dmux stream. It's safe to
2471 * call it with no pending updates. Returns > 0 on success or zero on missing
2472 * room or failure. It may return an error in h2c.
2473 */
2474static int h2c_send_strm_wu(struct h2c *h2c)
2475{
2476 int ret = 1;
2477
Willy Tarreau7838a792019-08-12 18:42:03 +02002478 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2479
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002480 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002481 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002482
2483 /* send WU for the stream */
2484 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2485 if (ret > 0)
2486 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002487 out:
2488 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002489 return ret;
2490}
2491
Willy Tarreaucf68c782017-10-10 17:11:41 +02002492/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2493 * success, 0 on missing data or one of the h2_status values.
2494 */
2495static int h2c_ack_ping(struct h2c *h2c)
2496{
2497 struct buffer *res;
2498 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002499 int ret = 0;
2500
2501 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002502
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002503 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002504 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002505
2506 if (h2c_mux_busy(h2c, NULL)) {
2507 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002508 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002509 }
2510
Willy Tarreaucf68c782017-10-10 17:11:41 +02002511 memcpy(str,
2512 "\x00\x00\x08" /* length : 8 (same payload) */
2513 "\x06" "\x01" /* type : 6, flags : ACK */
2514 "\x00\x00\x00\x00" /* stream ID */, 9);
2515
2516 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002517 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002518
Willy Tarreau9c218e72019-05-26 10:08:28 +02002519 res = br_tail(h2c->mbuf);
2520 retry:
2521 if (!h2_get_buf(h2c, res)) {
2522 h2c->flags |= H2_CF_MUX_MALLOC;
2523 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002524 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002525 }
2526
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002527 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002528 if (unlikely(ret <= 0)) {
2529 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002530 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2531 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002532 h2c->flags |= H2_CF_MUX_MFULL;
2533 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002534 }
2535 else {
2536 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002537 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002538 }
2539 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002540 out:
2541 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002542 return ret;
2543}
2544
Willy Tarreau26f95952017-07-27 17:18:30 +02002545/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2546 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002547 * h2c or h2s. The caller must have already verified frame length and stream ID
2548 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002549 */
2550static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2551{
2552 int32_t inc;
2553 int error;
2554
Willy Tarreau7838a792019-08-12 18:42:03 +02002555 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2556
Willy Tarreau26f95952017-07-27 17:18:30 +02002557 /* process full frame only */
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002558 if (b_data(&h2c->dbuf) < h2c->dfl) {
2559 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002560 goto out0;
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002561 }
Willy Tarreau26f95952017-07-27 17:18:30 +02002562
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002563 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002564
2565 if (h2c->dsi != 0) {
2566 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002567
2568 /* it's not an error to receive WU on a closed stream */
2569 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002570 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002571
2572 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002573 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 +02002574 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002575 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002576 goto strm_err;
2577 }
2578
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002579 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002580 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 +02002581 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002582 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002583 goto strm_err;
2584 }
2585
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002586 h2s->sws += inc;
2587 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002588 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002589 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002590 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2591 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002592 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002593 }
2594 }
2595 else {
2596 /* connection window update */
2597 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002598 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002599 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002600 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002601 goto conn_err;
2602 }
2603
2604 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2605 error = H2_ERR_FLOW_CONTROL_ERROR;
2606 goto conn_err;
2607 }
2608
2609 h2c->mws += inc;
2610 }
2611
Willy Tarreau7838a792019-08-12 18:42:03 +02002612 done:
2613 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002614 return 1;
2615
2616 conn_err:
2617 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002618 out0:
2619 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 +02002620 return 0;
2621
2622 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002623 h2s_error(h2s, error);
2624 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002625 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002626 return 0;
2627}
2628
Willy Tarreaue96b0922017-10-30 00:28:29 +01002629/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002630 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2631 * have already verified frame length and stream ID validity. Described in
2632 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002633 */
2634static int h2c_handle_goaway(struct h2c *h2c)
2635{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002636 int last;
2637
Willy Tarreau7838a792019-08-12 18:42:03 +02002638 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002639 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002640 if (b_data(&h2c->dbuf) < h2c->dfl) {
2641 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002642 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002643 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002644 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002645
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002646 last = h2_get_n32(&h2c->dbuf, 0);
2647 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002648 if (h2c->last_sid < 0)
2649 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002650 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002651 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002652 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002653}
2654
Willy Tarreau92153fc2017-12-03 19:46:19 +01002655/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002656 * invalid. Returns > 0 on success or zero on missing data. It may return an
2657 * error in h2c. The caller must have already verified frame length and stream
2658 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002659 */
2660static int h2c_handle_priority(struct h2c *h2c)
2661{
Willy Tarreau7838a792019-08-12 18:42:03 +02002662 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2663
Willy Tarreau92153fc2017-12-03 19:46:19 +01002664 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002665 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002666 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002667 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002668 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002669 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002670
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002671 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002672 /* 7540#5.3 : can't depend on itself */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002673 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002674 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02002675 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002676 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002677 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002678 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002679 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002680 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002681}
2682
Willy Tarreaucd234e92017-08-18 10:59:39 +02002683/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002684 * Returns > 0 on success or zero on missing data. The caller must have already
2685 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002686 */
2687static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2688{
Willy Tarreau7838a792019-08-12 18:42:03 +02002689 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2690
Willy Tarreaucd234e92017-08-18 10:59:39 +02002691 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002692 if (b_data(&h2c->dbuf) < h2c->dfl) {
2693 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 +02002694 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002695 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002696 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002697
2698 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002699 if (h2s->st == H2_SS_CLOSED) {
2700 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 +02002701 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002702 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002703
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002704 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002705 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002706
2707 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01002708 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01002709 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002710 }
2711
2712 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002713 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002714 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002715}
2716
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002717/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2718 * It may return an error in h2c or h2s. The caller must consider that the
2719 * return value is the new h2s in case one was allocated (most common case).
2720 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002721 * errors here are reported as connection errors since it's impossible to
2722 * recover from such errors after the compression context has been altered.
2723 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002724static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002725{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002726 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002727 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002728 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002729 int error;
2730
Willy Tarreau7838a792019-08-12 18:42:03 +02002731 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2732
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002733 if (!b_size(&h2c->dbuf)) {
2734 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002735 goto out; // empty buffer
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002736 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002737
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002738 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2739 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002740 goto out; // incomplete frame
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002741 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002742
2743 /* now either the frame is complete or the buffer is complete */
2744 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002745 /* The stream exists/existed, this must be a trailers frame */
2746 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002747 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len, NULL);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002748 /* unrecoverable error ? */
2749 if (h2c->st0 >= H2_CS_ERROR)
2750 goto out;
2751
Christopher Faulet0de3f552021-10-08 08:56:00 +02002752 if (error == 0) {
2753 /* Demux not blocked because of the stream, it is an incomplete frame */
2754 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2755 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002756 goto out; // missing data
Christopher Faulet0de3f552021-10-08 08:56:00 +02002757 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002758
2759 if (error < 0) {
2760 /* Failed to decode this frame (e.g. too large request)
2761 * but the HPACK decompressor is still synchronized.
2762 */
2763 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2764 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002765 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002766 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002767 goto done;
2768 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002769 /* the connection was already killed by an RST, let's consume
2770 * the data and send another RST.
2771 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002772 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau1f035502019-01-30 11:44:07 +01002773 h2s = (struct h2s*)h2_error_stream;
2774 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002775 }
2776 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2777 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2778 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002779 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau4781b152021-04-06 13:53:36 +02002780 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002781 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002782 goto conn_err;
2783 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002784 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2785 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002786
Amaury Denoyelle74162742020-12-11 17:53:05 +01002787 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002788
Willy Tarreau25919232019-01-03 14:48:18 +01002789 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002790 if (h2c->st0 >= H2_CS_ERROR)
2791 goto out;
2792
Willy Tarreau25919232019-01-03 14:48:18 +01002793 if (error <= 0) {
Christopher Faulet0de3f552021-10-08 08:56:00 +02002794 if (error == 0) {
2795 /* Demux not blocked because of the stream, it is an incomplete frame */
2796 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2797 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau25919232019-01-03 14:48:18 +01002798 goto out; // missing data
Christopher Faulet0de3f552021-10-08 08:56:00 +02002799 }
Willy Tarreau25919232019-01-03 14:48:18 +01002800
2801 /* Failed to decode this stream (e.g. too large request)
2802 * but the HPACK decompressor is still synchronized.
2803 */
2804 h2s = (struct h2s*)h2_error_stream;
2805 goto send_rst;
2806 }
2807
Willy Tarreau3c10d512021-06-17 08:29:14 +02002808 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn, 0, &rxbuf);
2809
Willy Tarreau22de8d32018-09-05 19:55:58 +02002810 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002811 * positively from h2c_frt_stream_new(), the stream will report the error,
2812 * and if we return in error, h2c_frt_stream_new() will emit the error.
Christopher Faulet7d013e72020-12-15 16:56:50 +01002813 *
2814 * Xfer the rxbuf to the stream. On success, the new stream owns the
2815 * rxbuf. On error, it is released here.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002816 */
Amaury Denoyelleee7fcd52021-10-18 14:45:49 +02002817 h2s = h2c_frt_stream_new(h2c, h2c->dsi, &rxbuf, flags);
Willy Tarreau13278b42017-10-13 19:23:14 +02002818 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002819 h2s = (struct h2s*)h2_refused_stream;
2820 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002821 }
2822
2823 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002824 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002825 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002826
Willy Tarreau88d138e2019-01-02 19:38:14 +01002827 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002828 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002829 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002830
2831 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002832 if (h2s->st == H2_SS_OPEN)
2833 h2s->st = H2_SS_HREM;
2834 else
2835 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002836 }
2837
Willy Tarreau3a429f02019-01-03 11:41:50 +01002838 /* update the max stream ID if the request is being processed */
2839 if (h2s->id > h2c->max_id)
2840 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002841
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002842 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002843
2844 conn_err:
2845 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002846 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002847
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002848 out:
2849 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002850 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 +01002851 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002852
2853 send_rst:
2854 /* make the demux send an RST for the current stream. We may only
2855 * do this if we're certain that the HEADERS frame was properly
2856 * decompressed so that the HPACK decoder is still kept up to date.
2857 */
2858 h2_release_buf(h2c, &rxbuf);
2859 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002860
Willy Tarreau022e5e52020-09-10 09:33:15 +02002861 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 +02002862 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002863 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002864}
2865
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002866/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2867 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2868 * errors here are reported as connection errors since it's impossible to
2869 * recover from such errors after the compression context has been altered.
2870 */
2871static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2872{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002873 struct buffer rxbuf = BUF_NULL;
2874 unsigned long long body_len = 0;
2875 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002876 int error;
2877
Willy Tarreau7838a792019-08-12 18:42:03 +02002878 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2879
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002880 if (!b_size(&h2c->dbuf)) {
2881 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002882 goto fail; // empty buffer
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002883 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002884
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002885 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2886 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002887 goto fail; // incomplete frame
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002888 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002889
Christopher Faulet6884aa32019-09-23 15:28:20 +02002890 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002891 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len, h2s->upgrade_protocol);
Christopher Faulet6884aa32019-09-23 15:28:20 +02002892 }
2893 else {
2894 /* the connection was already killed by an RST, let's consume
2895 * the data and send another RST.
2896 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002897 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002898 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002899 h2c->st0 = H2_CS_FRAME_E;
2900 goto send_rst;
2901 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002902
Willy Tarreau25919232019-01-03 14:48:18 +01002903 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002904 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002905 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002906
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002907 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2908 /* RFC7540#5.1 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002909 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 +01002910 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2911 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002912 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002913 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002914 }
2915
Willy Tarreau25919232019-01-03 14:48:18 +01002916 if (error <= 0) {
Christopher Faulet0de3f552021-10-08 08:56:00 +02002917 if (error == 0) {
2918 /* Demux not blocked because of the stream, it is an incomplete frame */
2919 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2920 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002921 goto fail; // missing data
Christopher Faulet0de3f552021-10-08 08:56:00 +02002922 }
Willy Tarreau25919232019-01-03 14:48:18 +01002923
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002924 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002925 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 +01002926 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002927 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002928 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002929 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002930 }
2931
Christopher Fauletfa922f02019-05-07 10:55:17 +02002932 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002933 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002934
Willy Tarreau927b88b2019-03-04 08:03:25 +01002935 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002936 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002937 else if (h2s->flags & H2_SF_ES_RCVD) {
2938 if (h2s->st == H2_SS_OPEN)
2939 h2s->st = H2_SS_HREM;
2940 else if (h2s->st == H2_SS_HLOC)
2941 h2s_close(h2s);
2942 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002943
Christopher Fauletf95f8762021-01-22 11:59:07 +01002944 /* Unblock busy server h2s waiting for the response headers to validate
2945 * the tunnel establishment or the end of the response of an oborted
2946 * tunnel
2947 */
2948 if ((h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY)) == (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY) ||
2949 (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)) {
2950 TRACE_STATE("Unblock h2s blocked on tunnel establishment/abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2951 h2s->flags &= ~H2_SF_BLK_MBUSY;
2952 }
2953
Willy Tarreaucbd37e02021-06-16 18:32:42 +02002954 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 +02002955 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002956 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002957 fail:
2958 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2959 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002960
2961 send_rst:
2962 /* make the demux send an RST for the current stream. We may only
2963 * do this if we're certain that the HEADERS frame was properly
2964 * decompressed so that the HPACK decoder is still kept up to date.
2965 */
2966 h2_release_buf(h2c, &rxbuf);
2967 h2c->st0 = H2_CS_FRAME_E;
2968
Willy Tarreau022e5e52020-09-10 09:33:15 +02002969 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 +02002970 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2971 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002972}
2973
Willy Tarreau454f9052017-10-26 19:40:35 +02002974/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2975 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2976 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01002977static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02002978{
2979 int error;
2980
Willy Tarreau7838a792019-08-12 18:42:03 +02002981 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2982
Willy Tarreau454f9052017-10-26 19:40:35 +02002983 /* note that empty DATA frames are perfectly valid and sometimes used
2984 * to signal an end of stream (with the ES flag).
2985 */
2986
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002987 if (!b_size(&h2c->dbuf) && h2c->dfl) {
2988 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002989 goto fail; // empty buffer
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002990 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002991
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002992 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2993 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002994 goto fail; // incomplete frame
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002995 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002996
2997 /* now either the frame is complete or the buffer is complete */
2998
Willy Tarreau454f9052017-10-26 19:40:35 +02002999 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
3000 /* RFC7540#6.1 */
3001 error = H2_ERR_STREAM_CLOSED;
3002 goto strm_err;
3003 }
3004
Christopher Faulet4f09ec82019-06-19 09:25:58 +02003005 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01003006 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003007 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 +01003008 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02003009 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01003010 goto strm_err;
3011 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01003012 if (!(h2c->flags & H2_CF_IS_BACK) &&
3013 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT) &&
3014 ((h2c->dfl - h2c->dpl) || !(h2c->dff & H2_F_DATA_END_STREAM))) {
3015 /* a tunnel attempt was aborted but the client still try to send some raw data.
3016 * Thus the stream is closed with the CANCEL error. Here we take care it is not
3017 * an empty DATA Frame with the ES flag. The error is only handled if ES was
3018 * already sent to the client because depending on the scheduling, these data may
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003019 * have been sent before the server response but not handle here.
Christopher Faulet91b21dc2021-01-22 12:13:15 +01003020 */
3021 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3022 error = H2_ERR_CANCEL;
3023 goto strm_err;
3024 }
Willy Tarreau1915ca22019-01-24 11:49:37 +01003025
Willy Tarreaua56a6de2018-02-26 15:59:07 +01003026 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02003027 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01003028
Willy Tarreau454f9052017-10-26 19:40:35 +02003029 /* call the upper layers to process the frame, then let the upper layer
3030 * notify the stream about any change.
3031 */
3032 if (!h2s->cs) {
Willy Tarreau082c4572019-08-06 10:11:02 +02003033 /* The upper layer has already closed, this may happen on
3034 * 4xx/redirects during POST, or when receiving a response
3035 * from an H2 server after the client has aborted.
3036 */
3037 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02003038 goto strm_err;
3039 }
3040
Willy Tarreau8f650c32017-11-21 19:36:21 +01003041 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003042 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01003043
Willy Tarreau721c9742017-11-07 11:05:42 +01003044 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02003045 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01003046 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02003047 }
3048
3049 /* check for completion : the callee will change this to FRAME_A or
3050 * FRAME_H once done.
3051 */
3052 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02003053 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02003054
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003055 /* last frame */
3056 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02003057 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01003058 if (h2s->st == H2_SS_OPEN)
3059 h2s->st = H2_SS_HREM;
3060 else
3061 h2s_close(h2s);
3062
Willy Tarreau1915ca22019-01-24 11:49:37 +01003063 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
3064 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003065 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 +01003066 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02003067 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01003068 goto strm_err;
3069 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003070 }
3071
Christopher Fauletf95f8762021-01-22 11:59:07 +01003072 /* Unblock busy server h2s waiting for the end of the response for an
3073 * aborted tunnel
3074 */
3075 if ((h2c->flags & H2_CF_IS_BACK) &&
3076 (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)) {
3077 TRACE_STATE("Unblock h2s blocked on tunnel abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3078 h2s->flags &= ~H2_SF_BLK_MBUSY;
3079 }
3080
Willy Tarreau7838a792019-08-12 18:42:03 +02003081 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003082 return 1;
3083
Willy Tarreau454f9052017-10-26 19:40:35 +02003084 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01003085 h2s_error(h2s, error);
3086 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003087 fail:
3088 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 +02003089 return 0;
3090}
3091
Willy Tarreau63864812019-08-07 14:25:20 +02003092/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
3093 * valid for the current stream state. This is needed only after parsing the
3094 * frame header but in practice it can be performed at any time during
3095 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
3096 * or 0 in case of error, in which case either h2s or h2c will carry an error.
3097 */
3098static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
3099{
Willy Tarreau7838a792019-08-12 18:42:03 +02003100 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
3101
Willy Tarreau63864812019-08-07 14:25:20 +02003102 if (h2s->st == H2_SS_IDLE &&
3103 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
3104 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
3105 * this state MUST be treated as a connection error
3106 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003107 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 +02003108 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003109 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02003110 /* only log if no other stream can report the error */
3111 sess_log(h2c->conn->owner);
3112 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003113 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02003114 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 +02003115 return 0;
3116 }
3117
Willy Tarreau57a18162019-11-24 14:57:53 +01003118 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
3119 /* only PUSH_PROMISE would be permitted here */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003120 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 +01003121 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003122 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau57a18162019-11-24 14:57:53 +01003123 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
3124 return 0;
3125 }
3126
Willy Tarreau63864812019-08-07 14:25:20 +02003127 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
3128 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
3129 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
3130 * this state MUST be treated as a stream error.
3131 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
3132 * PUSH_PROMISE/CONTINUATION cause connection errors.
3133 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01003134 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003135 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 +02003136 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003137 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003138 }
3139 else {
Willy Tarreau63864812019-08-07 14:25:20 +02003140 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003141 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003142 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 +02003143 return 0;
3144 }
3145
3146 /* Below the management of frames received in closed state is a
3147 * bit hackish because the spec makes strong differences between
3148 * streams closed by receiving RST, sending RST, and seeing ES
3149 * in both directions. In addition to this, the creation of a
3150 * new stream reusing the identifier of a closed one will be
3151 * detected here. Given that we cannot keep track of all closed
3152 * streams forever, we consider that unknown closed streams were
3153 * closed on RST received, which allows us to respond with an
3154 * RST without breaking the connection (eg: to abort a transfer).
3155 * Some frames have to be silently ignored as well.
3156 */
3157 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
3158 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
3159 /* #5.1.1: The identifier of a newly
3160 * established stream MUST be numerically
3161 * greater than all streams that the initiating
3162 * endpoint has opened or reserved. This
3163 * governs streams that are opened using a
3164 * HEADERS frame and streams that are reserved
3165 * using PUSH_PROMISE. An endpoint that
3166 * receives an unexpected stream identifier
3167 * MUST respond with a connection error.
3168 */
3169 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003170 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 +02003171 return 0;
3172 }
3173
Willy Tarreau4c08f122019-09-26 08:47:15 +02003174 if (h2s->flags & H2_SF_RST_RCVD &&
3175 !(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 +02003176 /* RFC7540#5.1:closed: an endpoint that
3177 * receives any frame other than PRIORITY after
3178 * receiving a RST_STREAM MUST treat that as a
3179 * stream error of type STREAM_CLOSED.
3180 *
3181 * Note that old streams fall into this category
3182 * and will lead to an RST being sent.
3183 *
3184 * However, we cannot generalize this to all frame types. Those
3185 * carrying compression state must still be processed before
3186 * being dropped or we'll desynchronize the decoder. This can
3187 * happen with request trailers received after sending an
3188 * RST_STREAM, or with header/trailers responses received after
3189 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02003190 *
3191 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003192 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003193 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003194 */
3195 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3196 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003197 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 +02003198 return 0;
3199 }
3200
3201 /* RFC7540#5.1:closed: if this state is reached as a
3202 * result of sending a RST_STREAM frame, the peer that
3203 * receives the RST_STREAM might have already sent
3204 * frames on the stream that cannot be withdrawn. An
3205 * endpoint MUST ignore frames that it receives on
3206 * closed streams after it has sent a RST_STREAM
3207 * frame. An endpoint MAY choose to limit the period
3208 * over which it ignores frames and treat frames that
3209 * arrive after this time as being in error.
3210 */
3211 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3212 /* RFC7540#5.1:closed: any frame other than
3213 * PRIO/WU/RST in this state MUST be treated as
3214 * a connection error
3215 */
3216 if (h2c->dft != H2_FT_RST_STREAM &&
3217 h2c->dft != H2_FT_PRIORITY &&
3218 h2c->dft != H2_FT_WINDOW_UPDATE) {
3219 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003220 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 +02003221 return 0;
3222 }
3223 }
3224 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003225 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003226 return 1;
3227}
3228
Willy Tarreaubc933932017-10-09 16:21:43 +02003229/* process Rx frames to be demultiplexed */
3230static void h2_process_demux(struct h2c *h2c)
3231{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003232 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003233 struct h2_fh hdr;
3234 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003235 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003236
Willy Tarreau7838a792019-08-12 18:42:03 +02003237 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3238
Willy Tarreau081d4722017-05-16 21:51:05 +02003239 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003240 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003241
3242 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3243 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003244 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003245 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003246 goto out;
3247
Willy Tarreau52eed752017-09-22 15:05:09 +02003248 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3249 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003250 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003251 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003252 h2c->st0 = H2_CS_ERROR2;
Willy Tarreauc23d6d12021-06-17 08:08:48 +02003253 if (b_data(&h2c->dbuf) ||
Christopher Faulet79b347d2021-07-26 10:18:35 +02003254 !(((const struct session *)h2c->conn->owner)->fe->options & (PR_O_NULLNOLOG|PR_O_IGNORE_PRB)))
Willy Tarreauc23d6d12021-06-17 08:08:48 +02003255 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003256 }
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003257 goto done;
Willy Tarreau52eed752017-09-22 15:05:09 +02003258 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003259 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003260
3261 h2c->max_id = 0;
3262 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003263 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003264 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003265
3266 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003267 /* ensure that what is pending is a valid SETTINGS frame
3268 * without an ACK.
3269 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003270 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 +02003271 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003272 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003273 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003274 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003275 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 +02003276 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003277 if (!(h2c->flags & H2_CF_IS_BACK))
3278 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003279 }
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003280 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003281 }
3282
3283 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3284 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003285 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 +02003286 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3287 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003288 if (!(h2c->flags & H2_CF_IS_BACK))
3289 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003290 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003291 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003292 }
3293
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003294 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003295 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003296 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 +02003297 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3298 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003299 if (!(h2c->flags & H2_CF_IS_BACK))
3300 sess_log(h2c->conn->owner);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003301 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003302 }
3303
Willy Tarreau3bf69182018-12-21 15:34:50 +01003304 /* that's OK, switch to FRAME_P to process it. This is
3305 * a SETTINGS frame whose header has already been
3306 * deleted above.
3307 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003308 padlen = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +02003309 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003310 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003311 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003312 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003313
3314 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003315 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003316 int ret = 0;
3317
Willy Tarreau7838a792019-08-12 18:42:03 +02003318 if (!b_data(&h2c->dbuf)) {
3319 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003320 h2c->flags |= H2_CF_DEM_SHORT_READ;
3321 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003322 }
3323
3324 if (h2c->st0 >= H2_CS_ERROR) {
3325 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003326 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003327 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003328
3329 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau30d05f32019-08-06 15:49:51 +02003330 h2c->rcvd_s = 0;
3331
Willy Tarreau7838a792019-08-12 18:42:03 +02003332 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003333 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr)) {
3334 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003335 break;
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003336 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003337
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003338 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003339 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 +02003340 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003341 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003342 /* only log if no other stream can report the error */
3343 sess_log(h2c->conn->owner);
3344 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003345 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003346 break;
3347 }
3348
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003349 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003350 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3351 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3352 * we read the pad length and drop it from the remaining
3353 * payload (one byte + the 9 remaining ones = 10 total
3354 * removed), so we have a frame payload starting after the
3355 * pad len. Flow controlled frames (DATA) also count the
3356 * padlen in the flow control, so it must be adjusted.
3357 */
3358 if (hdr.len < 1) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003359 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 +01003360 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003361 if (!(h2c->flags & H2_CF_IS_BACK))
3362 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003363 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003364 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003365 }
3366 hdr.len--;
3367
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003368 if (b_data(&h2c->dbuf) < 10) {
3369 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003370 break; // missing padlen
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003371 }
Willy Tarreau3bf69182018-12-21 15:34:50 +01003372
3373 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3374
3375 if (padlen > hdr.len) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003376 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 +01003377 /* RFC7540#6.1 : pad length = length of
3378 * frame payload or greater => error.
3379 */
3380 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003381 if (!(h2c->flags & H2_CF_IS_BACK))
3382 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003383 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003384 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003385 }
3386
3387 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3388 h2c->rcvd_c++;
3389 h2c->rcvd_s++;
3390 }
3391 b_del(&h2c->dbuf, 1);
3392 }
3393 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003394
3395 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003396 h2c->dfl = hdr.len;
3397 h2c->dsi = hdr.sid;
3398 h2c->dft = hdr.ft;
3399 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003400 h2c->dpl = padlen;
Willy Tarreau73db4342019-09-25 07:28:44 +02003401 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 +02003402 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003403
3404 /* check for minimum basic frame format validity */
3405 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3406 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003407 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 +01003408 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003409 if (!(h2c->flags & H2_CF_IS_BACK))
3410 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003411 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003412 goto done;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003413 }
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +01003414
3415 /* transition to HEADERS frame ends the keep-alive idle
3416 * timer and starts the http-request idle delay.
3417 */
3418 if (hdr.ft == H2_FT_HEADERS)
3419 h2c->idle_start = now_ms;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003420 }
3421
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003422 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3423 * H2_CS_FRAME_P indicates an incomplete previous operation
3424 * (most often the first attempt) and requires some validity
3425 * checks for the frame and the current state. The two other
3426 * ones are set after completion (or abortion) and must skip
3427 * validity checks.
3428 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003429 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3430
Willy Tarreau567beb82018-12-18 16:52:44 +01003431 if (tmp_h2s != h2s && h2s && h2s->cs &&
3432 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003433 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003434 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003435 (h2s->flags & H2_SF_ES_RCVD) ||
3436 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003437 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003438 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 +01003439 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003440 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003441 }
3442 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003443
Willy Tarreau63864812019-08-07 14:25:20 +02003444 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003445 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3446 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003447 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003448 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003449
Willy Tarreau7e98c052017-10-10 15:56:59 +02003450 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003451 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003452 if (h2c->st0 == H2_CS_FRAME_P) {
3453 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003454 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003455 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003456 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003457
Willy Tarreau7838a792019-08-12 18:42:03 +02003458 if (h2c->st0 == H2_CS_FRAME_A) {
3459 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 +02003460 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003461 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003462 break;
3463
Willy Tarreaucf68c782017-10-10 17:11:41 +02003464 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003465 if (h2c->st0 == H2_CS_FRAME_P) {
3466 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003467 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003468 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003469
Willy Tarreau7838a792019-08-12 18:42:03 +02003470 if (h2c->st0 == H2_CS_FRAME_A) {
3471 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 +02003472 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003473 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003474 break;
3475
Willy Tarreau26f95952017-07-27 17:18:30 +02003476 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003477 if (h2c->st0 == H2_CS_FRAME_P) {
3478 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 +02003479 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003480 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003481 break;
3482
Willy Tarreau61290ec2017-10-17 08:19:21 +02003483 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003484 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003485 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3486 * frames' parsers consume all following CONTINUATION
3487 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003488 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003489 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 +01003490 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003491 if (!(h2c->flags & H2_CF_IS_BACK))
3492 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003493 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003494 goto done;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003495
Willy Tarreau13278b42017-10-13 19:23:14 +02003496 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003497 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003498 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003499 if (h2c->flags & H2_CF_IS_BACK)
3500 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3501 else
3502 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003503 if (tmp_h2s) {
3504 h2s = tmp_h2s;
3505 ret = 1;
3506 }
3507 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003508 HA_ATOMIC_INC(&h2c->px_counters->headers_rcvd);
Willy Tarreau13278b42017-10-13 19:23:14 +02003509 break;
3510
Willy Tarreau454f9052017-10-26 19:40:35 +02003511 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003512 if (h2c->st0 == H2_CS_FRAME_P) {
3513 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003514 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003515 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003516 HA_ATOMIC_INC(&h2c->px_counters->data_rcvd);
Willy Tarreau454f9052017-10-26 19:40:35 +02003517
Willy Tarreau7838a792019-08-12 18:42:03 +02003518 if (h2c->st0 == H2_CS_FRAME_A) {
3519 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 +02003520 ret = h2c_send_strm_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003521 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003522 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003523
Willy Tarreau92153fc2017-12-03 19:46:19 +01003524 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003525 if (h2c->st0 == H2_CS_FRAME_P) {
3526 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003527 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003528 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003529 break;
3530
Willy Tarreaucd234e92017-08-18 10:59:39 +02003531 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003532 if (h2c->st0 == H2_CS_FRAME_P) {
3533 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 +02003534 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003535 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003536 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_rcvd);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003537 break;
3538
Willy Tarreaue96b0922017-10-30 00:28:29 +01003539 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003540 if (h2c->st0 == H2_CS_FRAME_P) {
3541 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003542 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003543 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003544 HA_ATOMIC_INC(&h2c->px_counters->goaway_rcvd);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003545 break;
3546
Willy Tarreau1c661982017-10-30 13:52:01 +01003547 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003548 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003549 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003550 /* drop frames that we ignore. They may be larger than
3551 * the buffer so we drain all of their contents until
3552 * we reach the end.
3553 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003554 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3555 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003556 h2c->dfl -= ret;
3557 ret = h2c->dfl == 0;
3558 }
3559
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003560 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003561 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003562 if (h2s->st == H2_SS_ERROR) {
3563 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 +01003564 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003565 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003566
Willy Tarreau7838a792019-08-12 18:42:03 +02003567 if (h2c->st0 == H2_CS_FRAME_E) {
3568 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 +01003569 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003570 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003571
Willy Tarreau7e98c052017-10-10 15:56:59 +02003572 /* error or missing data condition met above ? */
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003573 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02003574 break;
3575
3576 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003577 if (h2c->dfl)
3578 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003579 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3580 b_del(&h2c->dbuf, ret);
3581 h2c->dfl -= ret;
3582 if (!h2c->dfl) {
3583 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3584 h2c->st0 = H2_CS_FRAME_H;
3585 h2c->dsi = -1;
3586 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003587 }
3588 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003589
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003590 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003591 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3592 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003593 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003594 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003595
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003596 done:
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003597 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_DEM_SHORT_READ)) {
3598 if (h2c->flags & H2_CF_RCVD_SHUT)
3599 h2c->flags |= H2_CF_END_REACHED;
3600 }
3601
Willy Tarreau567beb82018-12-18 16:52:44 +01003602 if (h2s && h2s->cs &&
3603 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003604 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003605 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003606 (h2s->flags & H2_SF_ES_RCVD) ||
3607 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003608 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003609 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 +01003610 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003611 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003612 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003613
Willy Tarreau7838a792019-08-12 18:42:03 +02003614 if (old_iw != h2c->miw) {
3615 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003616 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003617 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003618
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003619 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003620 out:
3621 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003622 return;
Willy Tarreaubc933932017-10-09 16:21:43 +02003623}
3624
Willy Tarreau989539b2020-01-10 17:01:29 +01003625/* resume each h2s eligible for sending in list head <head> */
3626static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3627{
3628 struct h2s *h2s, *h2s_back;
3629
3630 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3631
3632 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3633 if (h2c->mws <= 0 ||
3634 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3635 h2c->st0 >= H2_CS_ERROR)
3636 break;
3637
3638 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003639
Willy Tarreaud9464162020-01-10 18:25:07 +01003640 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003641 continue;
3642
Willy Tarreau5723f292020-01-10 15:16:57 +01003643 /* If the sender changed his mind and unsubscribed, let's just
3644 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003645 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003646 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3647 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003648 LIST_DEL_INIT(&h2s->list);
3649 continue;
3650 }
3651
Willy Tarreauf96508a2020-01-10 11:12:48 +01003652 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003653 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003654 tasklet_wakeup(h2s->subs->tasklet);
3655 h2s->subs->events &= ~SUB_RETRY_SEND;
3656 if (!h2s->subs->events)
3657 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003658 }
3659 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3660 tasklet_wakeup(h2s->shut_tl);
3661 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003662 }
3663
3664 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3665}
3666
Willy Tarreaubc933932017-10-09 16:21:43 +02003667/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3668 * the end.
3669 */
3670static int h2_process_mux(struct h2c *h2c)
3671{
Willy Tarreau7838a792019-08-12 18:42:03 +02003672 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3673
Willy Tarreau01b44822018-10-03 14:26:37 +02003674 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3675 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3676 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3677 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003678 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003679 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003680 goto fail;
3681 }
3682 h2c->st0 = H2_CS_SETTINGS1;
3683 }
3684 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003685 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003686 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003687 }
3688
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003689 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003690 if (h2c->rcvd_s > 0 &&
3691 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3692 h2c_send_strm_wu(h2c) < 0)
3693 goto fail;
3694
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003695 if (h2c->rcvd_c > 0 &&
3696 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3697 h2c_send_conn_wu(h2c) < 0)
3698 goto fail;
3699
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003700 /* First we always process the flow control list because the streams
3701 * waiting there were already elected for immediate emission but were
3702 * blocked just on this.
3703 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003704 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3705 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003706
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003707 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003708 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003709 if (h2c->st0 == H2_CS_ERROR) {
3710 if (h2c->max_id >= 0) {
3711 h2c_send_goaway_error(h2c, NULL);
3712 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003713 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003714 }
3715
3716 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3717 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003718 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003719 done:
3720 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3721 return 1;
3722 out0:
3723 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3724 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003725}
3726
Willy Tarreau62f52692017-10-08 23:01:42 +02003727
Willy Tarreau479998a2018-11-18 06:30:59 +01003728/* Attempt to read data, and subscribe if none available.
3729 * The function returns 1 if data has been received, otherwise zero.
3730 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003731static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003732{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003733 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003734 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003735 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003736 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003737
Willy Tarreau7838a792019-08-12 18:42:03 +02003738 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3739
3740 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3741 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003742 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003743 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003744
Willy Tarreau7838a792019-08-12 18:42:03 +02003745 if (!h2_recv_allowed(h2c)) {
3746 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003747 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003748 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003749
Willy Tarreau44e973f2018-03-01 17:49:30 +01003750 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003751 if (!buf) {
3752 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003753 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003754 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003755 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003756
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003757 if (h2c->flags & H2_CF_RCVD_SHUT) {
3758 TRACE_DEVEL("leaving on rcvd_shut", H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau49acac02021-11-19 11:41:10 +01003759 return 1;
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003760 }
3761
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003762 if (!b_data(buf)) {
3763 /* try to pre-align the buffer like the
3764 * rxbufs will be to optimize memory copies. We'll make
3765 * sure that the frame header lands at the end of the
3766 * HTX block to alias it upon recv. We cannot use the
3767 * head because rcv_buf() will realign the buffer if
3768 * it's empty. Thus we cheat and pretend we already
3769 * have a few bytes there.
3770 */
3771 max = buf_room_for_htx_data(buf) + 9;
3772 buf->head = sizeof(struct htx) - 9;
3773 }
3774 else
3775 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003776
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003777 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003778
Christopher Fauletde9d6052021-04-23 12:25:18 +02003779 if (max && !ret && h2_recv_allowed(h2c)) {
3780 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
3781 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003782 } else if (ret) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02003783 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003784 h2c->flags &= ~H2_CF_DEM_SHORT_READ;
3785 }
Olivier Houchard81a15af2018-10-19 17:26:49 +02003786
Christopher Fauletde9d6052021-04-23 12:25:18 +02003787 if (conn_xprt_read0_pending(h2c->conn)) {
3788 TRACE_DATA("received read0", H2_EV_H2C_RECV, h2c->conn);
3789 h2c->flags |= H2_CF_RCVD_SHUT;
3790 }
3791
Olivier Houcharda1411e62018-08-17 18:42:48 +02003792 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003793 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003794 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003795 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003796 }
3797
Willy Tarreau7838a792019-08-12 18:42:03 +02003798 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003799 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003800 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003801 }
3802
3803 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003804 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003805}
3806
Willy Tarreau479998a2018-11-18 06:30:59 +01003807/* Try to send data if possible.
3808 * The function returns 1 if data have been sent, otherwise zero.
3809 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003810static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003811{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003812 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003813 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003814 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003815
Willy Tarreau7838a792019-08-12 18:42:03 +02003816 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003817
Willy Tarreau7838a792019-08-12 18:42:03 +02003818 if (conn->flags & CO_FL_ERROR) {
3819 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3820 return 1;
3821 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003822
Willy Tarreau911db9b2020-01-23 16:27:54 +01003823 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003824 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003825 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003826 }
3827
Willy Tarreaubc933932017-10-09 16:21:43 +02003828 /* This loop is quite simple : it tries to fill as much as it can from
3829 * pending streams into the existing buffer until it's reportedly full
3830 * or the end of send requests is reached. Then it tries to send this
3831 * buffer's contents out, marks it not full if at least one byte could
3832 * be sent, and tries again.
3833 *
3834 * The snd_buf() function normally takes a "flags" argument which may
3835 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3836 * data immediately comes and CO_SFL_STREAMER to indicate that the
3837 * connection is streaming lots of data (used to increase TLS record
3838 * size at the expense of latency). The former can be sent any time
3839 * there's a buffer full flag, as it indicates at least one stream
3840 * attempted to send and failed so there are pending data. An
3841 * alternative would be to set it as long as there's an active stream
3842 * but that would be problematic for ACKs until we have an absolute
3843 * guarantee that all waiters have at least one byte to send. The
3844 * latter should possibly not be set for now.
3845 */
3846
3847 done = 0;
3848 while (!done) {
3849 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003850 unsigned int released = 0;
3851 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003852
3853 /* fill as much as we can into the current buffer */
3854 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3855 done = h2_process_mux(h2c);
3856
Olivier Houchard2b094432019-01-29 18:28:36 +01003857 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003858 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003859
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003860 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
Willy Tarreaue90653b2021-10-21 17:30:06 +02003861 (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003862 break;
3863
3864 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3865 flags |= CO_SFL_MSG_MORE;
3866
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003867 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3868 if (b_data(buf)) {
3869 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003870 if (!ret) {
3871 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003872 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003873 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003874 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003875 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003876 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003877 if (b_data(buf)) {
3878 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003879 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003880 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003881 }
3882 b_free(buf);
3883 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003884 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003885
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003886 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01003887 offer_buffers(NULL, released);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003888
Willy Tarreaubc933932017-10-09 16:21:43 +02003889 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003890 if (sent)
3891 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003892 }
3893
Willy Tarreaua2af5122017-10-09 11:56:46 +02003894 if (conn->flags & CO_FL_SOCK_WR_SH) {
3895 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003896 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003897 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003898 /* We're not full anymore, so we can wake any task that are waiting
3899 * for us.
3900 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003901 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3902 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003903
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003904 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003905 if (!br_data(h2c->mbuf)) {
3906 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003907 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003908 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003909schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003910 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3911 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003912 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003913 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003914
Willy Tarreau7838a792019-08-12 18:42:03 +02003915 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003916 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003917}
3918
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003919/* this is the tasklet referenced in h2c->wait_event.tasklet */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003920struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state)
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003921{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003922 struct connection *conn;
3923 struct tasklet *tl = (struct tasklet *)t;
3924 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003925 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003926 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003927
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003928 if (state & TASK_F_USR1) {
3929 /* the tasklet was idling on an idle connection, it might have
3930 * been stolen, let's be careful!
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003931 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003932 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3933 if (t->context == NULL) {
3934 /* The connection has been taken over by another thread,
3935 * we're no longer responsible for it, so just free the
3936 * tasklet, and do nothing.
3937 */
3938 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3939 tasklet_free(tl);
Willy Tarreau74163142021-03-13 11:30:19 +01003940 t = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003941 goto leave;
3942 }
3943 conn = h2c->conn;
3944 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003945
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003946 conn_in_list = conn->flags & CO_FL_LIST_MASK;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003947
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003948 /* Remove the connection from the list, to be sure nobody attempts
3949 * to use it while we handle the I/O events
3950 */
3951 if (conn_in_list)
3952 conn_delete_from_tree(&conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003953
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003954 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3955 } else {
3956 /* we're certain the connection was not in an idle list */
3957 conn = h2c->conn;
3958 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3959 conn_in_list = 0;
3960 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003961
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003962 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003963 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003964 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003965 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003966 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003967 ret = h2_process(h2c);
3968
3969 /* If we were in an idle list, we want to add it back into it,
3970 * unless h2_process() returned -1, which mean it has destroyed
3971 * the connection (testing !ret is enough, if h2_process() wasn't
3972 * called then ret will be 0 anyway.
3973 */
Willy Tarreau74163142021-03-13 11:30:19 +01003974 if (ret < 0)
3975 t = NULL;
3976
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003977 if (!ret && conn_in_list) {
3978 struct server *srv = objt_server(conn->target);
3979
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003980 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003981 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003982 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003983 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003984 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003985 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003986 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003987
Willy Tarreau38468772020-06-28 00:31:13 +02003988leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02003989 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreau74163142021-03-13 11:30:19 +01003990 return t;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003991}
Willy Tarreaua2af5122017-10-09 11:56:46 +02003992
Willy Tarreau62f52692017-10-08 23:01:42 +02003993/* callback called on any event by the connection handler.
3994 * It applies changes and returns zero, or < 0 if it wants immediate
3995 * destruction of the connection (which normally doesn not happen in h2).
3996 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003997static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003998{
Olivier Houchard7505f942018-08-21 18:10:44 +02003999 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02004000
Willy Tarreau7838a792019-08-12 18:42:03 +02004001 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4002
Willy Tarreauf0961222021-02-05 11:41:46 +01004003 if (!(h2c->flags & H2_CF_DEM_BLOCK_ANY) &&
4004 (b_data(&h2c->dbuf) || (h2c->flags & H2_CF_RCVD_SHUT))) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01004005 h2_process_demux(h2c);
4006
4007 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004008 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01004009
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004010 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01004011 h2c->flags &= ~H2_CF_DEM_DFULL;
4012 }
Olivier Houchard7505f942018-08-21 18:10:44 +02004013 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01004014
Willy Tarreaub1e600c2020-10-13 18:09:15 +02004015 if (unlikely(h2c->proxy->disabled) && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01004016 /* frontend is stopping, reload likely in progress, let's try
4017 * to announce a graceful shutdown if not yet done. We don't
4018 * care if it fails, it will be tried again later.
4019 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004020 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
Willy Tarreau8ec14062017-12-30 18:08:13 +01004021 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
4022 if (h2c->last_sid < 0)
4023 h2c->last_sid = (1U << 31) - 1;
4024 h2c_send_goaway_error(h2c, NULL);
4025 }
4026 }
4027
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004028 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004029 * If we received early data, and the handshake is done, wake
4030 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004031 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004032 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01004033 (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 +01004034 struct eb32_node *node;
4035 struct h2s *h2s;
4036
4037 h2c->flags |= H2_CF_WAIT_FOR_HS;
4038 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
4039
4040 while (node) {
4041 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01004042 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01004043 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004044 node = eb32_next(node);
4045 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004046 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004047
Christopher Fauletaade4ed2020-10-08 15:38:41 +02004048 if (conn->flags & CO_FL_ERROR || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01004049 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
4050 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
4051 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02004052 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004053
4054 if (eb_is_empty(&h2c->streams_by_id)) {
4055 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02004056 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004057 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004058 return -1;
4059 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004060
4061 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004062 if (conn->flags & CO_FL_LIST_MASK) {
4063 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004064 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004065 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4066 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004067 }
4068 else if (h2c->st0 == H2_CS_ERROR) {
4069 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004070 if (conn->flags & CO_FL_LIST_MASK) {
4071 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004072 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004073 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4074 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004075 }
4076
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004077 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01004078 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004079
Olivier Houchard53216e72018-10-10 15:46:36 +02004080 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
4081 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
4082 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02004083 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02004084 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
4085 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02004086 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02004087
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +01004088 h2c_update_timeout(h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +02004089 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004090 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004091 return 0;
4092}
4093
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004094/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004095static int h2_wake(struct connection *conn)
4096{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004097 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02004098 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004099
Willy Tarreau7838a792019-08-12 18:42:03 +02004100 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4101 ret = h2_process(h2c);
Willy Tarreau508f9892020-02-11 04:38:56 +01004102 if (ret >= 0)
4103 h2_wake_some_streams(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02004104 TRACE_LEAVE(H2_EV_H2C_WAKE);
4105 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004106}
4107
Willy Tarreauea392822017-10-31 10:02:25 +01004108/* Connection timeout management. The principle is that if there's no receipt
4109 * nor sending for a certain amount of time, the connection is closed. If the
4110 * MUX buffer still has lying data or is not allocatable, the connection is
4111 * immediately killed. If it's allocatable and empty, we attempt to send a
4112 * GOAWAY frame.
4113 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004114struct task *h2_timeout_task(struct task *t, void *context, unsigned int state)
Willy Tarreauea392822017-10-31 10:02:25 +01004115{
Olivier Houchard9f6af332018-05-25 14:04:04 +02004116 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01004117 int expired = tick_is_expired(t->expire, now_ms);
4118
Willy Tarreau7838a792019-08-12 18:42:03 +02004119 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
4120
Willy Tarreaubd42e922020-06-30 11:19:23 +02004121 if (h2c) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004122 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004123 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004124
4125 /* Somebody already stole the connection from us, so we should not
4126 * free it, we just have to free the task.
4127 */
4128 if (!t->context) {
4129 h2c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004130 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004131 goto do_leave;
4132 }
4133
4134
Willy Tarreaubd42e922020-06-30 11:19:23 +02004135 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004136 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004137 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
4138 return t;
4139 }
Willy Tarreauea392822017-10-31 10:02:25 +01004140
Willy Tarreaubd42e922020-06-30 11:19:23 +02004141 if (!h2c_may_expire(h2c)) {
4142 /* we do still have streams but all of them are idle, waiting
4143 * for the data layer, so we must not enforce the timeout here.
4144 */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004145 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004146 t->expire = TICK_ETERNITY;
4147 return t;
4148 }
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004149
Willy Tarreaubd42e922020-06-30 11:19:23 +02004150 /* We're about to destroy the connection, so make sure nobody attempts
4151 * to steal it from us.
4152 */
Willy Tarreaubd42e922020-06-30 11:19:23 +02004153 if (h2c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004154 conn_delete_from_tree(&h2c->conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004155
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004156 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004157 }
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004158
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004159do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02004160 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02004161
4162 if (!h2c) {
4163 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02004164 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02004165 return NULL;
4166 }
4167
4168 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01004169 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02004170 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01004171
Willy Tarreau662fafc2019-05-26 09:43:07 +02004172 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01004173 /* don't even try to send a GOAWAY, the buffer is stuck */
4174 h2c->flags |= H2_CF_GOAWAY_FAILED;
4175 }
4176
4177 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01004178 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01004179 if (h2c_send_goaway_error(h2c, NULL) <= 0)
4180 h2c->flags |= H2_CF_GOAWAY_FAILED;
4181
Willy Tarreau662fafc2019-05-26 09:43:07 +02004182 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004183 unsigned int released = 0;
4184 struct buffer *buf;
4185
4186 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
4187 if (b_data(buf)) {
4188 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
4189 if (!ret)
4190 break;
4191 b_del(buf, ret);
4192 if (b_data(buf))
4193 break;
4194 b_free(buf);
4195 released++;
4196 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02004197 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004198
4199 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01004200 offer_buffers(NULL, released);
Willy Tarreau787db9a2018-06-14 18:31:46 +02004201 }
Willy Tarreauea392822017-10-31 10:02:25 +01004202
Willy Tarreau4481e262019-10-31 15:36:30 +01004203 /* in any case this connection must not be considered idle anymore */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004204 if (h2c->conn->flags & CO_FL_LIST_MASK) {
4205 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004206 conn_delete_from_tree(&h2c->conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004207 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4208 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004209
Willy Tarreau0975f112018-03-29 15:22:59 +02004210 /* either we can release everything now or it will be done later once
4211 * the last stream closes.
4212 */
4213 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02004214 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01004215
Willy Tarreau7838a792019-08-12 18:42:03 +02004216 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01004217 return NULL;
4218}
4219
4220
Willy Tarreau62f52692017-10-08 23:01:42 +02004221/*******************************************/
4222/* functions below are used by the streams */
4223/*******************************************/
4224
4225/*
4226 * Attach a new stream to a connection
4227 * (Used for outgoing connections)
4228 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01004229static struct conn_stream *h2_attach(struct connection *conn, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02004230{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004231 struct conn_stream *cs;
4232 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004233 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004234
Willy Tarreau7838a792019-08-12 18:42:03 +02004235 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Christopher Faulet236c93b2020-07-02 09:19:54 +02004236 cs = cs_new(conn, conn->target);
Willy Tarreau7838a792019-08-12 18:42:03 +02004237 if (!cs) {
4238 TRACE_DEVEL("leaving on CS allocation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004239 return NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004240 }
Olivier Houchardf502aca2018-12-14 19:42:40 +01004241 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004242 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004243 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004244 cs_free(cs);
4245 return NULL;
4246 }
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004247
4248 /* the connection is not idle anymore, let's mark this */
4249 HA_ATOMIC_AND(&h2c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004250 xprt_set_used(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004251
Willy Tarreau7838a792019-08-12 18:42:03 +02004252 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004253 return cs;
Willy Tarreau62f52692017-10-08 23:01:42 +02004254}
4255
Willy Tarreaufafd3982018-11-18 21:29:20 +01004256/* Retrieves the first valid conn_stream from this connection, or returns NULL.
4257 * We have to scan because we may have some orphan streams. It might be
4258 * beneficial to scan backwards from the end to reduce the likeliness to find
4259 * orphans.
4260 */
4261static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
4262{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004263 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004264 struct h2s *h2s;
4265 struct eb32_node *node;
4266
4267 node = eb32_first(&h2c->streams_by_id);
4268 while (node) {
4269 h2s = container_of(node, struct h2s, by_id);
4270 if (h2s->cs)
4271 return h2s->cs;
4272 node = eb32_next(node);
4273 }
4274 return NULL;
4275}
4276
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004277static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4278{
4279 int ret = 0;
4280 struct h2c *h2c = conn->ctx;
4281
4282 switch (mux_ctl) {
4283 case MUX_STATUS:
4284 /* Only consider the mux to be ready if we're done with
4285 * the preface and settings, and we had no error.
4286 */
4287 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4288 ret |= MUX_STATUS_READY;
4289 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02004290 case MUX_EXIT_STATUS:
4291 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004292 default:
4293 return -1;
4294 }
4295}
4296
Willy Tarreau62f52692017-10-08 23:01:42 +02004297/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004298 * Destroy the mux and the associated connection, if it is no longer used
4299 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004300static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004301{
Christopher Faulet73c12072019-04-08 11:23:22 +02004302 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004303
Willy Tarreau7838a792019-08-12 18:42:03 +02004304 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02004305 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02004306 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004307 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004308}
4309
4310/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004311 * Detach the stream from the connection and possibly release the connection.
4312 */
4313static void h2_detach(struct conn_stream *cs)
4314{
Willy Tarreau60935142017-10-16 18:11:19 +02004315 struct h2s *h2s = cs->ctx;
4316 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004317 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004318
Willy Tarreau7838a792019-08-12 18:42:03 +02004319 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4320
Willy Tarreau60935142017-10-16 18:11:19 +02004321 cs->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004322 if (!h2s) {
4323 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004324 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004325 }
Willy Tarreau60935142017-10-16 18:11:19 +02004326
Willy Tarreaud9464162020-01-10 18:25:07 +01004327 /* there's no txbuf so we're certain not to be able to send anything */
4328 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004329
Olivier Houchardf502aca2018-12-14 19:42:40 +01004330 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004331 h2c = h2s->h2c;
4332 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02004333 h2c->nb_cs--;
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +01004334 if (!h2c->nb_cs)
4335 h2c->idle_start = now_ms;
4336
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004337 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
4338 !h2_frt_has_too_many_cs(h2c)) {
4339 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004340 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004341 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004342 }
Willy Tarreau60935142017-10-16 18:11:19 +02004343
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004344 /* this stream may be blocked waiting for some data to leave (possibly
4345 * an ES or RST frame), so orphan it in this case.
4346 */
Willy Tarreau3041fcc2018-03-29 15:41:32 +02004347 if (!(cs->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004348 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004349 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004350 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004351 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +01004352 /* refresh the timeout if none was active, so that the last
4353 * leaving stream may arm it.
4354 */
4355 if (!tick_isset(h2c->task->expire))
4356 h2c_update_timeout(h2c);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004357 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004358 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004359
Willy Tarreau45f752e2017-10-30 15:44:59 +01004360 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
4361 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
4362 /* unblock the connection if it was blocked on this
4363 * stream.
4364 */
4365 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4366 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004367 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004368 }
4369
Willy Tarreau71049cc2018-03-28 13:56:39 +02004370 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004371
Christopher Faulet9b79a102019-07-15 11:22:56 +02004372 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01004373 if (!(h2c->conn->flags &
4374 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004375 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004376 /* Add the connection in the session server list, if not already done */
4377 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4378 h2c->conn->owner = NULL;
4379 if (eb_is_empty(&h2c->streams_by_id)) {
4380 h2c->conn->mux->destroy(h2c);
4381 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4382 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004383 }
4384 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004385 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004386 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4387 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4388 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004389 return;
4390 }
4391 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004392 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004393 else {
4394 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004395 /* If the connection is owned by the session, first remove it
4396 * from its list
4397 */
4398 if (h2c->conn->owner) {
4399 session_unown_conn(h2c->conn->owner, h2c->conn);
4400 h2c->conn->owner = NULL;
4401 }
4402
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004403 /* mark that the tasklet may lose its context to another thread and
4404 * that the handler needs to check it under the idle conns lock.
4405 */
4406 HA_ATOMIC_OR(&h2c->wait_event.tasklet->state, TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004407 xprt_set_idle(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
4408
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004409 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004410 /* The server doesn't want it, let's kill the connection right away */
4411 h2c->conn->mux->destroy(h2c);
4412 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4413 return;
4414 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004415 /* At this point, the connection has been added to the
4416 * server idle list, so another thread may already have
4417 * hijacked it, so we can't do anything with it.
4418 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004419 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4420 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004421
Olivier Houchard8a786902018-12-15 16:05:40 +01004422 }
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004423 else if (!h2c->conn->hash_node->node.node.leaf_p &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004424 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02004425 !LIST_INLIST(&h2c->conn->session_list)) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004426 ebmb_insert(&__objt_server(h2c->conn->target)->per_thr[tid].avail_conns,
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004427 &h2c->conn->hash_node->node,
4428 sizeof(h2c->conn->hash_node->hash));
Christopher Fauletc5579d12020-07-01 15:45:41 +02004429 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004430 }
4431 }
4432 }
4433
Willy Tarreaue323f342018-03-28 13:51:45 +02004434 /* We don't want to close right now unless we're removing the
4435 * last stream, and either the connection is in error, or it
4436 * reached the ID already specified in a GOAWAY frame received
4437 * or sent (as seen by last_sid >= 0).
4438 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004439 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004440 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004441 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004442 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004443 }
4444 else if (h2c->task) {
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +01004445 h2c_update_timeout(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004446 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004447 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004448 else
4449 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004450}
4451
Willy Tarreau88bdba32019-05-13 18:17:53 +02004452/* Performs a synchronous or asynchronous shutr(). */
4453static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004454{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004455 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004456
Willy Tarreauf983d002019-05-14 10:40:21 +02004457 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004458 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004459
Willy Tarreau7838a792019-08-12 18:42:03 +02004460 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4461
Willy Tarreau18059042019-01-31 19:12:48 +01004462 /* a connstream may require us to immediately kill the whole connection
4463 * for example because of a "tcp-request content reject" rule that is
4464 * normally used to limit abuse. In this case we schedule a goaway to
4465 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004466 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004467 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004468 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004469 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004470 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4471 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4472 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004473 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4474 /* Nothing was never sent for this stream, so reset with
4475 * REFUSED_STREAM error to let the client retry the
4476 * request.
4477 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004478 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004479 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4480 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004481 else {
4482 /* a final response was already provided, we don't want this
4483 * stream anymore. This may happen when the server responds
4484 * before the end of an upload and closes quickly (redirect,
4485 * deny, ...)
4486 */
4487 h2s_error(h2s, H2_ERR_CANCEL);
4488 }
Willy Tarreau18059042019-01-31 19:12:48 +01004489
Willy Tarreau90c32322017-11-24 08:00:30 +01004490 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004491 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004492 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004493
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004494 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004495 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004496 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004497 done:
4498 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004499 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004500 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004501add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004502 /* Let the handler know we want to shutr, and add ourselves to the
4503 * most relevant list if not yet done. h2_deferred_shut() will be
4504 * automatically called via the shut_tl tasklet when there's room
4505 * again.
4506 */
4507 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau2b718102021-04-21 07:32:39 +02004508 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004509 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004510 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004511 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004512 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004513 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004514 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004515 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004516}
4517
Willy Tarreau88bdba32019-05-13 18:17:53 +02004518/* Performs a synchronous or asynchronous shutw(). */
4519static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004520{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004521 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004522
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004523 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004524 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004525
Willy Tarreau7838a792019-08-12 18:42:03 +02004526 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4527
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004528 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01004529 /* we can cleanly close using an empty data frame only after headers */
4530
4531 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4532 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004533 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004534
4535 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004536 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004537 else
4538 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004539 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004540 /* a connstream may require us to immediately kill the whole connection
4541 * for example because of a "tcp-request content reject" rule that is
4542 * normally used to limit abuse. In this case we schedule a goaway to
4543 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004544 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004545 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004546 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004547 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004548 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4549 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4550 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004551 else {
4552 /* Nothing was never sent for this stream, so reset with
4553 * REFUSED_STREAM error to let the client retry the
4554 * request.
4555 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004556 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004557 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4558 }
Willy Tarreau18059042019-01-31 19:12:48 +01004559
Willy Tarreau90c32322017-11-24 08:00:30 +01004560 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004561 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004562 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004563
Willy Tarreau00dd0782018-03-01 16:31:34 +01004564 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004565 }
4566
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004567 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004568 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004569
4570 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4571
Willy Tarreau88bdba32019-05-13 18:17:53 +02004572 done:
4573 h2s->flags &= ~H2_SF_WANT_SHUTW;
4574 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004575
4576 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004577 /* Let the handler know we want to shutw, and add ourselves to the
4578 * most relevant list if not yet done. h2_deferred_shut() will be
4579 * automatically called via the shut_tl tasklet when there's room
4580 * again.
4581 */
4582 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau2b718102021-04-21 07:32:39 +02004583 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004584 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004585 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004586 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004587 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004588 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004589 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004590 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004591}
4592
Willy Tarreau5723f292020-01-10 15:16:57 +01004593/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004594 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4595 * and prevented the last frame from being emitted.
4596 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004597struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004598{
4599 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004600 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004601
Willy Tarreau7838a792019-08-12 18:42:03 +02004602 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4603
Willy Tarreau5723f292020-01-10 15:16:57 +01004604 if (h2s->flags & H2_SF_NOTIFIED) {
4605 /* some data processing remains to be done first */
4606 goto end;
4607 }
4608
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004609 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004610 h2_do_shutw(h2s);
4611
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004612 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004613 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004614
Willy Tarreau88bdba32019-05-13 18:17:53 +02004615 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004616 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004617 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004618
Willy Tarreau88bdba32019-05-13 18:17:53 +02004619 if (!h2s->cs) {
4620 h2s_destroy(h2s);
Willy Tarreau74163142021-03-13 11:30:19 +01004621 if (h2c_is_dead(h2c)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004622 h2_release(h2c);
Willy Tarreau74163142021-03-13 11:30:19 +01004623 t = NULL;
4624 }
Willy Tarreau88bdba32019-05-13 18:17:53 +02004625 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004626 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004627 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004628 TRACE_LEAVE(H2_EV_STRM_SHUT);
Willy Tarreau74163142021-03-13 11:30:19 +01004629 return t;
Willy Tarreau62f52692017-10-08 23:01:42 +02004630}
4631
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004632/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004633static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
4634{
4635 struct h2s *h2s = cs->ctx;
4636
Willy Tarreau7838a792019-08-12 18:42:03 +02004637 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004638 if (cs->flags & CS_FL_KILL_CONN)
4639 h2s->flags |= H2_SF_KILL_CONN;
4640
Willy Tarreau7838a792019-08-12 18:42:03 +02004641 if (mode)
4642 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004643
Willy Tarreau7838a792019-08-12 18:42:03 +02004644 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004645}
4646
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004647/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004648static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
4649{
4650 struct h2s *h2s = cs->ctx;
4651
Willy Tarreau7838a792019-08-12 18:42:03 +02004652 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004653 if (cs->flags & CS_FL_KILL_CONN)
4654 h2s->flags |= H2_SF_KILL_CONN;
4655
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004656 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004657 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004658}
4659
Christopher Faulet9b79a102019-07-15 11:22:56 +02004660/* Decode the payload of a HEADERS frame and produce the HTX request or response
4661 * depending on the connection's side. Returns a positive value on success, a
4662 * negative value on failure, or 0 if it couldn't proceed. May report connection
4663 * errors in h2c->errcode if the frame is non-decodable and the connection
4664 * unrecoverable. In absence of connection error when a failure is reported, the
4665 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004666 *
4667 * The function may fold CONTINUATION frames into the initial HEADERS frame
4668 * by removing padding and next frame header, then moving the CONTINUATION
4669 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4670 * leaving a hole between the main frame and the beginning of the next one.
4671 * The possibly remaining incomplete or next frame at the end may be moved
4672 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4673 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4674 *
4675 * A buffer at the beginning of processing may look like this :
4676 *
4677 * ,---.---------.-----.--------------.--------------.------.---.
4678 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4679 * `---^---------^-----^--------------^--------------^------^---'
4680 * | | <-----> | |
4681 * area | dpl | wrap
4682 * |<--------------> |
4683 * | dfl |
4684 * |<-------------------------------------------------->|
4685 * head data
4686 *
4687 * Padding is automatically overwritten when folding, participating to the
4688 * hole size after dfl :
4689 *
4690 * ,---.------------------------.-----.--------------.------.---.
4691 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4692 * `---^------------------------^-----^--------------^------^---'
4693 * | | <-----> | |
4694 * area | hole | wrap
4695 * |<-----------------------> |
4696 * | dfl |
4697 * |<-------------------------------------------------->|
4698 * head data
4699 *
4700 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4701 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4702 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004703 *
4704 * The <flags> field must point to either the stream's flags or to a copy of it
4705 * so that the function can update the following flags :
4706 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004707 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004708 *
4709 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4710 * decoding, in order to detect if we're dealing with a headers or a trailers
4711 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004712 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004713static 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 +02004714{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004715 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004716 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004717 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004718 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004719 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004720 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004721 int flen; // header frame len
4722 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004723 int ret = 0;
4724 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004725 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004726
Willy Tarreau7838a792019-08-12 18:42:03 +02004727 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4728
Willy Tarreauea18f862018-12-22 20:19:26 +01004729next_frame:
4730 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4731 goto leave; // incomplete input frame
4732
4733 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4734 * this case, we'll try to paste it immediately after the initial
4735 * HEADERS frame payload and kill any possible padding. The initial
4736 * frame's length will be increased to represent the concatenation
4737 * of the two frames. The next frame is read from position <tlen>
4738 * and written at position <flen> (minus padding if some is present).
4739 */
4740 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4741 struct h2_fh hdr;
4742 int clen; // CONTINUATION frame's payload length
4743
Willy Tarreau7838a792019-08-12 18:42:03 +02004744 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 +01004745 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4746 /* no more data, the buffer may be full, either due to
4747 * too large a frame or because of too large a hole that
4748 * we're going to compact at the end.
4749 */
4750 goto leave;
4751 }
4752
4753 if (hdr.ft != H2_FT_CONTINUATION) {
4754 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004755 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 +01004756 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004757 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004758 goto fail;
4759 }
4760
4761 if (hdr.sid != h2c->dsi) {
4762 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004763 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 +01004764 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004765 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004766 goto fail;
4767 }
4768
4769 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4770 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004771 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 +01004772 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4773 goto fail;
4774 }
4775
4776 /* detect when we must stop aggragating frames */
4777 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4778
4779 /* Take as much as we can of the CONTINUATION frame's payload */
4780 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4781 if (clen > hdr.len)
4782 clen = hdr.len;
4783
4784 /* Move the frame's payload over the padding, hole and frame
4785 * header. At least one of hole or dpl is null (see diagrams
4786 * above). The hole moves after the new aggragated frame.
4787 */
4788 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 +02004789 h2c->dfl += hdr.len - h2c->dpl;
Willy Tarreauea18f862018-12-22 20:19:26 +01004790 hole += h2c->dpl + 9;
4791 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004792 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 +01004793 goto next_frame;
4794 }
4795
4796 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004797
Willy Tarreau13278b42017-10-13 19:23:14 +02004798 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004799 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004800 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004801 copy = alloc_trash_chunk();
4802 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004803 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 +02004804 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4805 goto fail;
4806 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004807 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4808 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4809 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004810 }
4811
Willy Tarreau13278b42017-10-13 19:23:14 +02004812 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4813 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004814 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004815 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004816 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 +01004817 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004818 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004819 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004820 }
4821
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004822 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004823 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 +01004824 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4825 goto fail;
4826 }
4827
Willy Tarreau13278b42017-10-13 19:23:14 +02004828 hdrs += 5; // stream dep = 4, weight = 1
4829 flen -= 5;
4830 }
4831
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004832 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004833 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 +01004834 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004835 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004836 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004837
Willy Tarreau937f7602018-02-26 15:22:17 +01004838 /* we can't retry a failed decompression operation so we must be very
4839 * careful not to take any risks. In practice the output buffer is
4840 * always empty except maybe for trailers, in which case we simply have
4841 * to wait for the upper layer to finish consuming what is available.
4842 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004843 htx = htx_from_buf(rxbuf);
4844 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004845 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 +02004846 h2c->flags |= H2_CF_DEM_SFULL;
4847 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004848 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004849
Willy Tarreau25919232019-01-03 14:48:18 +01004850 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004851 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4852 sizeof(list)/sizeof(list[0]), tmp);
4853 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004854 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 +01004855 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4856 goto fail;
4857 }
4858
Willy Tarreau25919232019-01-03 14:48:18 +01004859 /* The PACK decompressor was updated, let's update the input buffer and
4860 * the parser's state to commit these changes and allow us to later
4861 * fail solely on the stream if needed.
4862 */
4863 b_del(&h2c->dbuf, h2c->dfl + hole);
4864 h2c->dfl = hole = 0;
4865 h2c->st0 = H2_CS_FRAME_H;
4866
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004867 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004868 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Christopher Fauletd0db4232021-01-22 11:46:30 +01004869 msgf |= (*flags & H2_SF_BODY_TUNNEL) ? H2_MSGF_BODY_TUNNEL: 0;
Amaury Denoyelle74162742020-12-11 17:53:05 +01004870 /* If an Extended CONNECT has been sent on this stream, set message flag
Ilya Shipitsinacf84592021-02-06 22:29:08 +05004871 * to convert 200 response to 101 htx response */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004872 msgf |= (*flags & H2_SF_EXT_CONNECT_SENT) ? H2_MSGF_EXT_CONNECT: 0;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004873
Willy Tarreau88d138e2019-01-02 19:38:14 +01004874 if (*flags & H2_SF_HEADERS_RCVD)
4875 goto trailers;
4876
4877 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004878 if (h2c->flags & H2_CF_IS_BACK)
Amaury Denoyelle74162742020-12-11 17:53:05 +01004879 outlen = h2_make_htx_response(list, htx, &msgf, body_len, upgrade_protocol);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004880 else
4881 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004882
Christopher Faulet3d875582021-04-26 17:46:13 +02004883 if (outlen < 0 || htx_free_space(htx) < global.tune.maxrewrite) {
Willy Tarreau25919232019-01-03 14:48:18 +01004884 /* too large headers? this is a stream error only */
Christopher Faulet3d875582021-04-26 17:46:13 +02004885 TRACE_STATE("message headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
4886 htx->flags |= HTX_FL_PARSING_ERROR;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004887 goto fail;
4888 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004889
Willy Tarreau174b06a2018-04-25 18:13:58 +02004890 if (msgf & H2_MSGF_BODY) {
4891 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004892 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004893 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004894 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004895 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004896 }
Christopher Faulet7d247f02020-12-02 14:26:36 +01004897 if (msgf & H2_MSGF_BODYLESS_RSP)
4898 *flags |= H2_SF_BODYLESS_RESP;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004899
Christopher Fauletd0db4232021-01-22 11:46:30 +01004900 if (msgf & H2_MSGF_BODY_TUNNEL)
4901 *flags |= H2_SF_BODY_TUNNEL;
4902 else {
4903 /* Abort the tunnel attempt, if any */
4904 if (*flags & H2_SF_BODY_TUNNEL)
4905 *flags |= H2_SF_TUNNEL_ABRT;
4906 *flags &= ~H2_SF_BODY_TUNNEL;
4907 }
4908
Willy Tarreau88d138e2019-01-02 19:38:14 +01004909 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004910 /* indicate that a HEADERS frame was received for this stream, except
4911 * for 1xx responses. For 1xx responses, another HEADERS frame is
4912 * expected.
4913 */
4914 if (!(msgf & H2_MSGF_RSP_1XX))
4915 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004916
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004917 if (h2c->dff & H2_F_HEADERS_END_STREAM) {
4918 /* no more data are expected for this message */
4919 htx->flags |= HTX_FL_EOM;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004920 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004921
Amaury Denoyelleefe22762020-12-11 17:53:08 +01004922 if (msgf & H2_MSGF_EXT_CONNECT)
4923 *flags |= H2_SF_EXT_CONNECT_RCVD;
4924
Willy Tarreau86277d42019-01-02 15:36:11 +01004925 /* success */
4926 ret = 1;
4927
Willy Tarreau68dd9852017-07-03 14:44:26 +02004928 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004929 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004930 * move the remaining data over it.
4931 */
4932 if (hole) {
4933 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4934 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4935 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4936 b_sub(&h2c->dbuf, hole);
4937 }
4938
Christopher Faulet07f88d72021-04-21 10:39:53 +02004939 if (b_full(&h2c->dbuf) && h2c->dfl) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004940 /* too large frames */
4941 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004942 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004943 }
4944
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004945 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004946 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004947 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004948 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004949 return ret;
4950
Willy Tarreau68dd9852017-07-03 14:44:26 +02004951 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004952 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004953 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004954
4955 trailers:
4956 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004957 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4958 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004959 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 +01004960 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004961 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau88d138e2019-01-02 19:38:14 +01004962 goto fail;
4963 }
4964
Christopher Faulet9b79a102019-07-15 11:22:56 +02004965 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02004966 if (h2_make_htx_trailers(list, htx) <= 0) {
4967 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 +02004968 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004969 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004970 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02004971}
4972
Christopher Faulet9b79a102019-07-15 11:22:56 +02004973/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004974 * parser state is automatically updated. Returns > 0 if it could completely
4975 * send the current frame, 0 if it couldn't complete, in which case
4976 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
4977 * DATA frame can return 0 as a valid result). Stream errors are reported in
4978 * h2s->errcode and connection errors in h2c->errcode. The caller must already
4979 * have checked the frame header and ensured that the frame was complete or the
4980 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02004981 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01004982static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02004983{
4984 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004985 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004986 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004987 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004988 struct buffer *csbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004989 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02004990
Willy Tarreau7838a792019-08-12 18:42:03 +02004991 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
4992
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004993 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02004994
Olivier Houchard638b7992018-08-16 15:41:52 +02004995 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004996 if (!csbuf) {
4997 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02004998 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 +01004999 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005000 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005001 htx = htx_from_buf(csbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01005002
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005003try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005004 flen = h2c->dfl - h2c->dpl;
5005 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01005006 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005007
Willy Tarreauc9fa0482018-07-10 17:43:27 +02005008 if (flen > b_data(&h2c->dbuf)) {
5009 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005010 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01005011 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005012 }
5013
Christopher Faulet9b79a102019-07-15 11:22:56 +02005014 block = htx_free_data_space(htx);
5015 if (!block) {
5016 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005017 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 +02005018 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005019 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005020 if (flen > block)
5021 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005022
Christopher Faulet9b79a102019-07-15 11:22:56 +02005023 /* here, flen is the max we can copy into the output buffer */
5024 block = b_contig_data(&h2c->dbuf, 0);
5025 if (flen > block)
5026 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005027
Christopher Faulet9b79a102019-07-15 11:22:56 +02005028 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02005029 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 +02005030
Christopher Faulet9b79a102019-07-15 11:22:56 +02005031 b_del(&h2c->dbuf, sent);
5032 h2c->dfl -= sent;
5033 h2c->rcvd_c += sent;
5034 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02005035
Christopher Faulet9b79a102019-07-15 11:22:56 +02005036 if (h2s->flags & H2_SF_DATA_CLEN) {
5037 h2s->body_len -= sent;
5038 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005039 }
5040
Christopher Faulet9b79a102019-07-15 11:22:56 +02005041 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01005042 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005043 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 +01005044 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005045 }
5046
Christopher Faulet9b79a102019-07-15 11:22:56 +02005047 goto try_again;
5048
Willy Tarreau4a28da12018-01-04 14:41:00 +01005049 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005050 /* here we're done with the frame, all the payload (except padding) was
5051 * transferred.
5052 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02005053
Christopher Faulet5be651d2021-01-22 15:28:03 +01005054 if (!(h2s->flags & H2_SF_BODY_TUNNEL) && (h2c->dff & H2_F_DATA_END_STREAM)) {
5055 /* no more data are expected for this message. This add the EOM
5056 * flag but only on the response path or if no tunnel attempt
5057 * was aborted. Otherwise (request path + tunnel abrted), the
5058 * EOM was already reported.
5059 */
Christopher Faulet33724322021-02-10 09:04:59 +01005060 if ((h2c->flags & H2_CF_IS_BACK) || !(h2s->flags & H2_SF_TUNNEL_ABRT)) {
5061 /* If we receive an empty DATA frame with ES flag while the HTX
5062 * message is empty, we must be sure to push a block to be sure
5063 * the HTX EOM flag will be handled on the other side. It is a
5064 * workaround because for now it is not possible to push empty
5065 * HTX DATA block. And without this block, there is no way to
5066 * "commit" the end of the message.
5067 */
5068 if (htx_is_empty(htx)) {
5069 if (!htx_add_endof(htx, HTX_BLK_EOT))
5070 goto fail;
5071 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005072 htx->flags |= HTX_FL_EOM;
Christopher Faulet33724322021-02-10 09:04:59 +01005073 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02005074 }
5075
Willy Tarreaud1023bb2018-03-22 16:53:12 +01005076 h2c->rcvd_c += h2c->dpl;
5077 h2c->rcvd_s += h2c->dpl;
5078 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005079 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet9b79a102019-07-15 11:22:56 +02005080 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005081 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005082 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01005083 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005084 if (htx)
5085 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005086 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01005087 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005088}
5089
Willy Tarreau115e83b2018-12-01 19:17:53 +01005090/* Try to send a HEADERS frame matching HTX response present in HTX message
5091 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5092 * must check the stream's status to detect any error which might have happened
5093 * subsequently to a successful send. The htx blocks are automatically removed
5094 * from the message. The htx message is assumed to be valid since produced from
5095 * the internal code, hence it contains a start line, an optional series of
5096 * header blocks and an end of header, otherwise an invalid frame could be
5097 * emitted and the resulting htx message could be left in an inconsistent state.
5098 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005099static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005100{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005101 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01005102 struct h2c *h2c = h2s->h2c;
5103 struct htx_blk *blk;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005104 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005105 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005106 struct htx_sl *sl;
5107 enum htx_blk_type type;
5108 int es_now = 0;
5109 int ret = 0;
5110 int hdr;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005111
Willy Tarreau7838a792019-08-12 18:42:03 +02005112 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5113
Willy Tarreau115e83b2018-12-01 19:17:53 +01005114 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005115 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005116 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005117 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005118 return 0;
5119 }
5120
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005121 /* get the start line (we do have one) and the rest of the headers,
5122 * that we dump starting at header 0 */
5123 sl = NULL;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005124 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005125 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005126 type = htx_get_blk_type(blk);
5127
5128 if (type == HTX_BLK_UNUSED)
5129 continue;
5130
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005131 if (type == HTX_BLK_EOH)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005132 break;
5133
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005134 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005135 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005136 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5137 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5138 goto fail;
5139 }
5140
5141 list[hdr].n = htx_get_blk_name(htx, blk);
5142 list[hdr].v = htx_get_blk_value(htx, blk);
5143 hdr++;
5144 }
5145 else if (type == HTX_BLK_RES_SL) {
Christopher Faulet56498132021-01-29 11:39:43 +01005146 BUG_ON(sl); /* Only one start-line expected */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005147 sl = htx_get_blk_ptr(htx, blk);
5148 h2s->status = sl->info.res.status;
Christopher Faulet7d247f02020-12-02 14:26:36 +01005149 if (h2s->status == 204 || h2s->status == 304)
5150 h2s->flags |= H2_SF_BODYLESS_RESP;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005151 if (h2s->status < 100 || h2s->status > 999) {
5152 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5153 goto fail;
5154 }
5155 else if (h2s->status == 101) {
Amaury Denoyelleefe22762020-12-11 17:53:08 +01005156 if (unlikely(h2s->flags & H2_SF_EXT_CONNECT_RCVD)) {
5157 /* If an Extended CONNECT has been received, we need to convert 101 to 200 */
5158 h2s->status = 200;
5159 h2s->flags &= ~H2_SF_EXT_CONNECT_RCVD;
5160 }
5161 else {
5162 /* Otherwise, 101 responses are not supported in H2, so return a error (RFC7540#8.1.1) */
5163 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5164 goto fail;
5165 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005166 }
5167 else if ((h2s->flags & H2_SF_BODY_TUNNEL) && h2s->status >= 300) {
5168 /* Abort the tunnel attempt */
5169 h2s->flags &= ~H2_SF_BODY_TUNNEL;
5170 h2s->flags |= H2_SF_TUNNEL_ABRT;
5171 }
5172 }
5173 else {
5174 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 +01005175 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005176 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005177 }
5178
Christopher Faulet56498132021-01-29 11:39:43 +01005179 /* The start-line me be defined */
5180 BUG_ON(!sl);
5181
Willy Tarreau115e83b2018-12-01 19:17:53 +01005182 /* marker for end of headers */
5183 list[hdr].n = ist("");
5184
Willy Tarreau9c218e72019-05-26 10:08:28 +02005185 mbuf = br_tail(h2c->mbuf);
5186 retry:
5187 if (!h2_get_buf(h2c, mbuf)) {
5188 h2c->flags |= H2_CF_MUX_MALLOC;
5189 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005190 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 +02005191 return 0;
5192 }
5193
Willy Tarreau115e83b2018-12-01 19:17:53 +01005194 chunk_reset(&outbuf);
5195
5196 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005197 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5198 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005199 break;
5200 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005201 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01005202 }
5203
5204 if (outbuf.size < 9)
5205 goto full;
5206
5207 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5208 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5209 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5210 outbuf.data = 9;
5211
Willy Tarreau8a4dca02022-01-13 16:00:12 +01005212 if ((h2c->flags & (H2_CF_SHTS_UPDATED|H2_CF_DTSU_EMITTED)) == H2_CF_SHTS_UPDATED) {
5213 /* SETTINGS_HEADER_TABLE_SIZE changed, we must send an HPACK
5214 * dynamic table size update so that some clients are not
5215 * confused. In practice we only need to send the DTSU when the
5216 * advertised size is lower than the current one, and since we
5217 * don't use it and don't care about the default 4096 bytes,
5218 * we only ack it with a zero size thus we at most have to deal
5219 * with this once. See RFC7541#4.2 and #6.3 for the spec, and
5220 * below for the whole context and interoperability risks:
5221 * https://lists.w3.org/Archives/Public/ietf-http-wg/2021OctDec/0235.html
5222 */
5223 if (b_room(&outbuf) < 1)
5224 goto full;
5225 outbuf.area[outbuf.data++] = 0x20; // HPACK DTSU 0 bytes
5226
5227 /* let's not update the flags now but only once the buffer is
5228 * really committed.
5229 */
5230 }
5231
Willy Tarreau115e83b2018-12-01 19:17:53 +01005232 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01005233 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005234 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005235 goto realign_again;
5236 goto full;
5237 }
5238
5239 /* encode all headers, stop at empty name */
5240 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5241 /* these ones do not exist in H2 and must be dropped. */
5242 if (isteq(list[hdr].n, ist("connection")) ||
5243 isteq(list[hdr].n, ist("proxy-connection")) ||
5244 isteq(list[hdr].n, ist("keep-alive")) ||
5245 isteq(list[hdr].n, ist("upgrade")) ||
5246 isteq(list[hdr].n, ist("transfer-encoding")))
5247 continue;
5248
Christopher Faulet86d144c2019-08-14 16:32:25 +02005249 /* Skip all pseudo-headers */
5250 if (*(list[hdr].n.ptr) == ':')
5251 continue;
5252
Willy Tarreau115e83b2018-12-01 19:17:53 +01005253 if (isteq(list[hdr].n, ist("")))
5254 break; // end
5255
5256 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
5257 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005258 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005259 goto realign_again;
5260 goto full;
5261 }
5262 }
5263
Willy Tarreaucb985a42019-10-07 16:56:34 +02005264 /* update the frame's size */
5265 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5266
5267 if (outbuf.data > h2c->mfs + 9) {
5268 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5269 /* output full */
5270 if (b_space_wraps(mbuf))
5271 goto realign_again;
5272 goto full;
5273 }
5274 }
5275
Willy Tarreau38b5bec2021-06-17 08:40:04 +02005276 TRACE_USER("sent H2 response ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5277
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005278 /* remove all header blocks including the EOH and compute the
5279 * corresponding size.
Willy Tarreau115e83b2018-12-01 19:17:53 +01005280 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005281 ret = 0;
5282 blk = htx_get_head_blk(htx);
5283 while (blk) {
5284 type = htx_get_blk_type(blk);
5285 ret += htx_get_blksz(blk);
5286 blk = htx_remove_blk(htx, blk);
5287 /* The removed block is the EOH */
5288 if (type == HTX_BLK_EOH)
5289 break;
Christopher Faulet5be651d2021-01-22 15:28:03 +01005290 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005291
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005292 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) {
5293 /* Response already closed: add END_STREAM */
5294 es_now = 1;
5295 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005296 else if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && h2s->status >= 200) {
5297 /* EOM+empty: we may need to add END_STREAM except for 1xx
Christopher Faulet991febd2020-12-02 15:17:31 +01005298 * responses and tunneled response.
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005299 */
Christopher Faulet991febd2020-12-02 15:17:31 +01005300 if (!(h2s->flags & H2_SF_BODY_TUNNEL) || h2s->status >= 300)
5301 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005302 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005303
Willy Tarreau115e83b2018-12-01 19:17:53 +01005304 if (es_now)
5305 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5306
5307 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005308 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01005309
5310 /* indicates the HEADERS frame was sent, except for 1xx responses. For
5311 * 1xx responses, another HEADERS frame is expected.
5312 */
Christopher Faulet89899422020-12-07 18:24:43 +01005313 if (h2s->status >= 200)
Christopher Faulet0b465482019-02-19 15:14:23 +01005314 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005315
Willy Tarreau8a4dca02022-01-13 16:00:12 +01005316 if (h2c->flags & H2_CF_SHTS_UPDATED) {
5317 /* was sent above */
5318 h2c->flags |= H2_CF_DTSU_EMITTED;
Willy Tarreaub05f4dd2022-02-16 14:28:14 +01005319 h2c->flags &= ~H2_CF_SHTS_UPDATED;
Willy Tarreau8a4dca02022-01-13 16:00:12 +01005320 }
5321
Willy Tarreau115e83b2018-12-01 19:17:53 +01005322 if (es_now) {
5323 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005324 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 +01005325 if (h2s->st == H2_SS_OPEN)
5326 h2s->st = H2_SS_HLOC;
5327 else
5328 h2s_close(h2s);
5329 }
5330
5331 /* OK we could properly deliver the response */
Willy Tarreau115e83b2018-12-01 19:17:53 +01005332 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005333 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005334 return ret;
5335 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005336 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5337 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005338 h2c->flags |= H2_CF_MUX_MFULL;
5339 h2s->flags |= H2_SF_BLK_MROOM;
5340 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005341 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 +01005342 goto end;
5343 fail:
5344 /* unparsable HTX messages, too large ones to be produced in the local
5345 * list etc go here (unrecoverable errors).
5346 */
5347 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5348 ret = 0;
5349 goto end;
5350}
5351
Willy Tarreau80739692018-10-05 11:35:57 +02005352/* Try to send a HEADERS frame matching HTX request present in HTX message
5353 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5354 * must check the stream's status to detect any error which might have happened
5355 * subsequently to a successful send. The htx blocks are automatically removed
5356 * from the message. The htx message is assumed to be valid since produced from
5357 * the internal code, hence it contains a start line, an optional series of
5358 * header blocks and an end of header, otherwise an invalid frame could be
5359 * emitted and the resulting htx message could be left in an inconsistent state.
5360 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005361static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005362{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005363 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005364 struct h2c *h2c = h2s->h2c;
5365 struct htx_blk *blk;
Willy Tarreau80739692018-10-05 11:35:57 +02005366 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005367 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005368 struct htx_sl *sl;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005369 struct ist meth, uri, auth, host = IST_NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005370 enum htx_blk_type type;
5371 int es_now = 0;
5372 int ret = 0;
5373 int hdr;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005374 int extended_connect = 0;
Willy Tarreau80739692018-10-05 11:35:57 +02005375
Willy Tarreau7838a792019-08-12 18:42:03 +02005376 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5377
Willy Tarreau80739692018-10-05 11:35:57 +02005378 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005379 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005380 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005381 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005382 return 0;
5383 }
5384
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005385 /* get the start line (we do have one) and the rest of the headers,
5386 * that we dump starting at header 0 */
5387 sl = NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005388 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005389 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005390 type = htx_get_blk_type(blk);
5391
5392 if (type == HTX_BLK_UNUSED)
5393 continue;
5394
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005395 if (type == HTX_BLK_EOH)
Willy Tarreau80739692018-10-05 11:35:57 +02005396 break;
5397
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005398 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005399 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005400 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5401 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5402 goto fail;
5403 }
Willy Tarreau80739692018-10-05 11:35:57 +02005404
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005405 list[hdr].n = htx_get_blk_name(htx, blk);
5406 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005407
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005408 /* Skip header if same name is used to add the server name */
5409 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name &&
5410 isteq(list[hdr].n, ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len)))
5411 continue;
Christopher Faulet67d58092019-10-02 10:51:38 +02005412
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005413 /* Convert connection: upgrade to Extended connect from rfc 8441 */
Christopher Faulet673504a2021-09-09 09:52:51 +02005414 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteqi(list[hdr].n, ist("connection"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005415 /* rfc 7230 #6.1 Connection = list of tokens */
5416 struct ist connection_ist = list[hdr].v;
5417 do {
5418 if (isteqi(iststop(connection_ist, ','),
5419 ist("upgrade"))) {
Amaury Denoyelle68993a12021-10-18 09:43:29 +02005420 if (!(h2c->flags & H2_CF_RCVD_RFC8441)) {
5421 TRACE_STATE("reject upgrade because of no RFC8441 support", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5422 goto fail;
5423 }
5424
Amaury Denoyellea1fa1542021-10-18 10:05:16 +02005425 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 +01005426 h2s->flags |= (H2_SF_BODY_TUNNEL|H2_SF_EXT_CONNECT_SENT);
5427 sl->info.req.meth = HTTP_METH_CONNECT;
5428 meth = ist("CONNECT");
5429
5430 extended_connect = 1;
5431 break;
5432 }
5433
5434 connection_ist = istadv(istfind(connection_ist, ','), 1);
5435 } while (istlen(connection_ist));
5436 }
5437
Christopher Faulet673504a2021-09-09 09:52:51 +02005438 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteq(list[hdr].n, ist("upgrade"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005439 /* rfc 7230 #6.7 Upgrade = list of protocols
5440 * rfc 8441 #4 Extended connect = :protocol is single-valued
5441 *
5442 * only first HTTP/1 protocol is preserved
5443 */
5444 const struct ist protocol = iststop(list[hdr].v, ',');
5445 /* upgrade_protocol field is 16 bytes long in h2s */
5446 istpad(h2s->upgrade_protocol, isttrim(protocol, 15));
5447 }
5448
5449 if (isteq(list[hdr].n, ist("host")))
5450 host = list[hdr].v;
5451
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005452 hdr++;
5453 }
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005454 else if (type == HTX_BLK_REQ_SL) {
5455 BUG_ON(sl); /* Only one start-line expected */
5456 sl = htx_get_blk_ptr(htx, blk);
5457 meth = htx_sl_req_meth(sl);
5458 uri = htx_sl_req_uri(sl);
5459 if (sl->info.req.meth == HTTP_METH_HEAD)
5460 h2s->flags |= H2_SF_BODYLESS_RESP;
5461 if (unlikely(uri.len == 0)) {
5462 TRACE_ERROR("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5463 goto fail;
5464 }
5465 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005466 else {
5467 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5468 goto fail;
5469 }
Willy Tarreau80739692018-10-05 11:35:57 +02005470 }
5471
Christopher Faulet56498132021-01-29 11:39:43 +01005472 /* The start-line me be defined */
5473 BUG_ON(!sl);
5474
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005475 /* Now add the server name to a header (if requested) */
5476 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name) {
5477 struct server *srv = objt_server(h2c->conn->target);
5478
5479 if (srv) {
5480 list[hdr].n = ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len);
5481 list[hdr].v = ist(srv->id);
5482 hdr++;
5483 }
5484 }
5485
Willy Tarreau80739692018-10-05 11:35:57 +02005486 /* marker for end of headers */
5487 list[hdr].n = ist("");
5488
Willy Tarreau9c218e72019-05-26 10:08:28 +02005489 mbuf = br_tail(h2c->mbuf);
5490 retry:
5491 if (!h2_get_buf(h2c, mbuf)) {
5492 h2c->flags |= H2_CF_MUX_MALLOC;
5493 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005494 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 +02005495 return 0;
5496 }
5497
Willy Tarreau80739692018-10-05 11:35:57 +02005498 chunk_reset(&outbuf);
5499
5500 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005501 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5502 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005503 break;
5504 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005505 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005506 }
5507
5508 if (outbuf.size < 9)
5509 goto full;
5510
5511 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5512 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5513 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5514 outbuf.data = 9;
5515
5516 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005517 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005518 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005519 goto realign_again;
5520 goto full;
5521 }
5522
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005523 auth = ist(NULL);
5524
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005525 /* RFC7540 #8.3: the CONNECT method must have :
5526 * - :authority set to the URI part (host:port)
5527 * - :method set to CONNECT
5528 * - :scheme and :path omitted
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005529 *
5530 * Note that this is not applicable in case of the Extended CONNECT
5531 * protocol from rfc 8441.
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005532 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005533 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT) && !extended_connect) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005534 auth = uri;
5535
5536 if (!hpack_encode_header(&outbuf, ist(":authority"), auth)) {
5537 /* output full */
5538 if (b_space_wraps(mbuf))
5539 goto realign_again;
5540 goto full;
5541 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005542 h2s->flags |= H2_SF_BODY_TUNNEL;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005543 } else {
5544 /* other methods need a :scheme. If an authority is known from
5545 * the request line, it must be sent, otherwise only host is
5546 * sent. Host is never sent as the authority.
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005547 *
5548 * This code is also applicable for Extended CONNECT protocol
5549 * from rfc 8441.
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005550 */
5551 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005552
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005553 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5554 /* the URI seems to start with a scheme */
5555 int len = 1;
5556
5557 while (len < uri.len && uri.ptr[len] != ':')
5558 len++;
5559
5560 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5561 /* make the uri start at the authority now */
Tim Duesterhus9f75ed12021-03-02 18:57:26 +01005562 scheme = ist2(uri.ptr, len);
Tim Duesterhus154374c2021-03-02 18:57:27 +01005563 uri = istadv(uri, len + 3);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005564
5565 /* find the auth part of the URI */
Tim Duesterhus92c696e2021-02-28 16:11:36 +01005566 auth = ist2(uri.ptr, 0);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005567 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5568 auth.len++;
5569
Tim Duesterhus154374c2021-03-02 18:57:27 +01005570 uri = istadv(uri, auth.len);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005571 }
5572 }
5573
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005574 /* For Extended CONNECT, the :authority must be present.
5575 * Use host value for it.
5576 */
5577 if (unlikely(extended_connect) && isttest(host))
5578 auth = host;
5579
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005580 if (!scheme.len) {
5581 /* no explicit scheme, we're using an origin-form URI,
5582 * probably from an H1 request transcoded to H2 via an
5583 * external layer, then received as H2 without authority.
5584 * So we have to look up the scheme from the HTX flags.
5585 * In such a case only http and https are possible, and
5586 * https is the default (sent by browsers).
5587 */
5588 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5589 scheme = ist("http");
5590 else
5591 scheme = ist("https");
5592 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005593
5594 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005595 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005596 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005597 goto realign_again;
5598 goto full;
5599 }
Willy Tarreau80739692018-10-05 11:35:57 +02005600
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005601 if (auth.len && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005602 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005603 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005604 goto realign_again;
5605 goto full;
5606 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005607
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005608 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5609 * be sent as '/' or '*'.
5610 */
5611 if (unlikely(!uri.len)) {
5612 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5613 uri = ist("*");
5614 else
5615 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005616 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005617
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005618 if (!hpack_encode_path(&outbuf, uri)) {
5619 /* output full */
5620 if (b_space_wraps(mbuf))
5621 goto realign_again;
5622 goto full;
5623 }
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005624
5625 /* encode the pseudo-header protocol from rfc8441 if using
5626 * Extended CONNECT method.
5627 */
5628 if (unlikely(extended_connect)) {
5629 const struct ist protocol = ist(h2s->upgrade_protocol);
5630 if (isttest(protocol)) {
5631 if (!hpack_encode_header(&outbuf,
5632 ist(":protocol"),
5633 protocol)) {
5634 /* output full */
5635 if (b_space_wraps(mbuf))
5636 goto realign_again;
5637 goto full;
5638 }
5639 }
5640 }
Willy Tarreau80739692018-10-05 11:35:57 +02005641 }
5642
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005643 /* encode all headers, stop at empty name. Host is only sent if we
5644 * do not provide an authority.
5645 */
Willy Tarreau80739692018-10-05 11:35:57 +02005646 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005647 struct ist n = list[hdr].n;
5648 struct ist v = list[hdr].v;
5649
Willy Tarreau80739692018-10-05 11:35:57 +02005650 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005651 if (isteq(n, ist("connection")) ||
5652 (auth.len && isteq(n, ist("host"))) ||
5653 isteq(n, ist("proxy-connection")) ||
5654 isteq(n, ist("keep-alive")) ||
5655 isteq(n, ist("upgrade")) ||
5656 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005657 continue;
5658
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005659 if (isteq(n, ist("te"))) {
5660 /* "te" may only be sent with "trailers" if this value
5661 * is present, otherwise it must be deleted.
5662 */
5663 v = istist(v, ist("trailers"));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01005664 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005665 continue;
5666 v = ist("trailers");
5667 }
5668
Christopher Faulet86d144c2019-08-14 16:32:25 +02005669 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005670 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005671 continue;
5672
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005673 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005674 break; // end
5675
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005676 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005677 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005678 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005679 goto realign_again;
5680 goto full;
5681 }
5682 }
5683
Willy Tarreaucb985a42019-10-07 16:56:34 +02005684 /* update the frame's size */
5685 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5686
5687 if (outbuf.data > h2c->mfs + 9) {
5688 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5689 /* output full */
5690 if (b_space_wraps(mbuf))
5691 goto realign_again;
5692 goto full;
5693 }
5694 }
5695
Willy Tarreau38b5bec2021-06-17 08:40:04 +02005696 TRACE_USER("sent H2 request ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5697
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005698 /* remove all header blocks including the EOH and compute the
5699 * corresponding size.
Willy Tarreau80739692018-10-05 11:35:57 +02005700 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005701 ret = 0;
5702 blk = htx_get_head_blk(htx);
5703 while (blk) {
5704 type = htx_get_blk_type(blk);
5705 ret += htx_get_blksz(blk);
5706 blk = htx_remove_blk(htx, blk);
5707 /* The removed block is the EOH */
5708 if (type == HTX_BLK_EOH)
5709 break;
Christopher Fauletd0db4232021-01-22 11:46:30 +01005710 }
Willy Tarreau80739692018-10-05 11:35:57 +02005711
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005712 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) {
5713 /* Request already closed: add END_STREAM */
Willy Tarreau80739692018-10-05 11:35:57 +02005714 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005715 }
5716 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5717 /* EOM+empty: we may need to add END_STREAM (except for CONNECT
5718 * request)
5719 */
5720 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5721 es_now = 1;
5722 }
Willy Tarreau80739692018-10-05 11:35:57 +02005723
Willy Tarreau80739692018-10-05 11:35:57 +02005724 if (es_now)
5725 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5726
5727 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005728 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005729 h2s->flags |= H2_SF_HEADERS_SENT;
5730 h2s->st = H2_SS_OPEN;
5731
Willy Tarreau80739692018-10-05 11:35:57 +02005732 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005733 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 +02005734 // trim any possibly pending data (eg: inconsistent content-length)
5735 h2s->flags |= H2_SF_ES_SENT;
5736 h2s->st = H2_SS_HLOC;
5737 }
5738
Willy Tarreau80739692018-10-05 11:35:57 +02005739 end:
5740 return ret;
5741 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005742 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5743 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005744 h2c->flags |= H2_CF_MUX_MFULL;
5745 h2s->flags |= H2_SF_BLK_MROOM;
5746 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005747 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 +02005748 goto end;
5749 fail:
5750 /* unparsable HTX messages, too large ones to be produced in the local
5751 * list etc go here (unrecoverable errors).
5752 */
5753 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5754 ret = 0;
5755 goto end;
5756}
5757
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005758/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005759 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5760 * caller must check the stream's status to detect any error which might have
5761 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005762 * consumed, or zero if nothing done.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005763 */
Christopher Faulet142854b2020-12-02 15:12:40 +01005764static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005765{
5766 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005767 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005768 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005769 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005770 size_t total = 0;
5771 int es_now = 0;
5772 int bsize; /* htx block size */
5773 int fsize; /* h2 frame size */
5774 struct htx_blk *blk;
5775 enum htx_blk_type type;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005776 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005777
Willy Tarreau7838a792019-08-12 18:42:03 +02005778 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5779
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005780 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005781 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005782 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005783 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005784 goto end;
5785 }
5786
Willy Tarreau98de12a2018-12-12 07:03:00 +01005787 htx = htx_from_buf(buf);
5788
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005789 /* We only come here with HTX_BLK_DATA blocks */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005790
5791 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005792 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005793 goto end;
5794
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005795 if ((h2c->flags & H2_CF_IS_BACK) &&
Christopher Fauletf95f8762021-01-22 11:59:07 +01005796 (h2s->flags & (H2_SF_HEADERS_RCVD|H2_SF_BODY_TUNNEL)) == H2_SF_BODY_TUNNEL) {
5797 /* The response HEADERS frame not received yet. Thus the tunnel
5798 * is not fully established yet. In this situation, we block
5799 * data sending.
5800 */
5801 h2s->flags |= H2_SF_BLK_MBUSY;
5802 TRACE_STATE("Request DATA frame blocked waiting for tunnel establishment", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5803 goto end;
5804 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01005805 else if ((h2c->flags & H2_CF_IS_BACK) && (h2s->flags & H2_SF_TUNNEL_ABRT)) {
5806 /* a tunnel attempt was aborted but the is pending raw data to xfer to the server.
5807 * Thus the stream is closed with the CANCEL error. The error will be reported to
5808 * the upper layer as aserver abort. But at this stage there is nothing more we can
5809 * do. We just wait for the end of the response to be sure to not truncate it.
5810 */
5811 if (!(h2s->flags & H2_SF_ES_RCVD)) {
5812 TRACE_STATE("Request DATA frame blocked waiting end of aborted tunnel", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5813 h2s->flags |= H2_SF_BLK_MBUSY;
5814 }
5815 else {
5816 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5817 h2s_error(h2s, H2_ERR_CANCEL);
5818 }
5819 goto end;
5820 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005821
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005822 blk = htx_get_head_blk(htx);
5823 type = htx_get_blk_type(blk);
5824 bsize = htx_get_blksz(blk);
5825 fsize = bsize;
5826 trunc_out = 0;
5827 if (type != HTX_BLK_DATA)
5828 goto end;
5829
Willy Tarreau9c218e72019-05-26 10:08:28 +02005830 mbuf = br_tail(h2c->mbuf);
5831 retry:
5832 if (!h2_get_buf(h2c, mbuf)) {
5833 h2c->flags |= H2_CF_MUX_MALLOC;
5834 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005835 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 +02005836 goto end;
5837 }
5838
Willy Tarreau98de12a2018-12-12 07:03:00 +01005839 /* Perform some optimizations to reduce the number of buffer copies.
5840 * First, if the mux's buffer is empty and the htx area contains
5841 * exactly one data block of the same size as the requested count, and
5842 * this count fits within the frame size, the stream's window size, and
5843 * the connection's window size, then it's possible to simply swap the
5844 * caller's buffer with the mux's output buffer and adjust offsets and
5845 * length to match the entire DATA HTX block in the middle. In this
5846 * case we perform a true zero-copy operation from end-to-end. This is
5847 * the situation that happens all the time with large files. Second, if
5848 * this is not possible, but the mux's output buffer is empty, we still
5849 * have an opportunity to avoid the copy to the intermediary buffer, by
5850 * making the intermediary buffer's area point to the output buffer's
5851 * area. In this case we want to skip the HTX header to make sure that
5852 * copies remain aligned and that this operation remains possible all
5853 * the time. This goes for headers, data blocks and any data extracted
5854 * from the HTX blocks.
5855 */
5856 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005857 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005858 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005859 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005860
Willy Tarreaubcc45952019-05-26 10:05:50 +02005861 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005862 /* Too bad there are data left there. We're willing to memcpy/memmove
5863 * up to 1/4 of the buffer, which means that it's OK to copy a large
5864 * frame into a buffer containing few data if it needs to be realigned,
5865 * and that it's also OK to copy few data without realigning. Otherwise
5866 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005867 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005868 if (fsize + 9 <= b_room(mbuf) &&
5869 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005870 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5871 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 +01005872 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005873 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005874
Willy Tarreau9c218e72019-05-26 10:08:28 +02005875 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5876 goto retry;
5877
Willy Tarreau98de12a2018-12-12 07:03:00 +01005878 h2c->flags |= H2_CF_MUX_MFULL;
5879 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005880 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 +01005881 goto end;
5882 }
5883
Christopher Faulet925abdf2021-04-27 22:51:07 +02005884 if (htx->flags & HTX_FL_EOM) {
5885 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5886 * message)
5887 */
5888 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5889 es_now = 1;
5890 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005891 /* map an H2 frame to the HTX block so that we can put the
5892 * frame header there.
5893 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005894 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5895 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005896
5897 /* prepend an H2 DATA frame header just before the DATA block */
5898 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5899 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
Christopher Faulet925abdf2021-04-27 22:51:07 +02005900 if (es_now)
5901 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005902 h2_set_frame_size(outbuf.area, fsize);
5903
5904 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005905 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005906 h2c->mws -= fsize;
5907
5908 /* and exchange with our old area */
5909 buf->area = old_area;
5910 buf->data = buf->head = 0;
5911 total += fsize;
Christopher Faulet925abdf2021-04-27 22:51:07 +02005912 fsize = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005913
5914 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 +02005915 goto out;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005916 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005917
Willy Tarreau98de12a2018-12-12 07:03:00 +01005918 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005919 /* for DATA and EOM we'll have to emit a frame, even if empty */
5920
5921 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005922 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5923 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005924 break;
5925 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005926 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005927 }
5928
5929 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005930 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5931 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005932 h2c->flags |= H2_CF_MUX_MFULL;
5933 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005934 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005935 goto end;
5936 }
5937
5938 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5939 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5940 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5941 outbuf.data = 9;
5942
5943 /* we have in <fsize> the exact number of bytes we need to copy from
5944 * the HTX buffer. We need to check this against the connection's and
5945 * the stream's send windows, and to ensure that this fits in the max
5946 * frame size and in the buffer's available space minus 9 bytes (for
5947 * the frame header). The connection's flow control is applied last so
5948 * that we can use a separate list of streams which are immediately
5949 * unblocked on window opening. Note: we don't implement padding.
5950 */
5951
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005952 if (!fsize)
5953 goto send_empty;
5954
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005955 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005956 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreau2b718102021-04-21 07:32:39 +02005957 if (LIST_INLIST(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005958 LIST_DEL_INIT(&h2s->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02005959 LIST_APPEND(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005960 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 +01005961 goto end;
5962 }
5963
Willy Tarreauee573762018-12-04 15:25:57 +01005964 if (fsize > count)
5965 fsize = count;
5966
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005967 if (fsize > h2s_mws(h2s))
5968 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005969
5970 if (h2c->mfs && fsize > h2c->mfs)
5971 fsize = h2c->mfs; // >0
5972
5973 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005974 /* It doesn't fit at once. If it at least fits once split and
5975 * the amount of data to move is low, let's defragment the
5976 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005977 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005978 if (b_space_wraps(mbuf) &&
5979 (fsize + 9 <= b_room(mbuf)) &&
5980 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005981 goto realign_again;
5982 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005983 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005984
5985 if (fsize <= 0) {
5986 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005987 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5988 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005989 h2c->flags |= H2_CF_MUX_MFULL;
5990 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005991 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005992 goto end;
5993 }
5994 }
5995
5996 if (h2c->mws <= 0) {
5997 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005998 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 +01005999 goto end;
6000 }
6001
6002 if (fsize > h2c->mws)
6003 fsize = h2c->mws;
6004
6005 /* now let's copy this this into the output buffer */
6006 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02006007 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01006008 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01006009 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006010
6011 send_empty:
6012 /* update the frame's size */
6013 h2_set_frame_size(outbuf.area, fsize);
6014
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006015 /* consume incoming HTX block */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006016 total += fsize;
6017 if (fsize == bsize) {
6018 htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006019 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
6020 /* EOM+empty: we may need to add END_STREAM (except for tunneled
6021 * message)
6022 */
6023 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
6024 es_now = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02006025 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006026 }
6027 else {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006028 /* we've truncated this block */
6029 htx_cut_data_blk(htx, blk, fsize);
6030 }
6031
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006032 if (es_now)
6033 outbuf.area[4] |= H2_F_DATA_END_STREAM;
6034
6035 /* commit the H2 response */
6036 b_add(mbuf, fsize + 9);
6037
Christopher Faulet925abdf2021-04-27 22:51:07 +02006038 out:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006039 if (es_now) {
6040 if (h2s->st == H2_SS_OPEN)
6041 h2s->st = H2_SS_HLOC;
6042 else
6043 h2s_close(h2s);
6044
6045 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02006046 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 +01006047 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006048 else if (fsize) {
6049 if (fsize == bsize) {
6050 TRACE_DEVEL("more data may be available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6051 goto new_frame;
6052 }
6053 else if (trunc_out) {
6054 /* we've truncated this block */
6055 goto new_frame;
6056 }
6057 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006058
6059 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006060 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006061 return total;
6062}
6063
Christopher Faulet991febd2020-12-02 15:17:31 +01006064/* Skip the message payload (DATA blocks) and emit an empty DATA frame with the
6065 * ES flag set for stream <h2s>. This function is called for response known to
6066 * have no payload. Only DATA blocks are skipped. This means the trailers are
Ilya Shipitsinacf84592021-02-06 22:29:08 +05006067 * still emitted. The caller must check the stream's status to detect any error
Christopher Faulet991febd2020-12-02 15:17:31 +01006068 * which might have happened subsequently to a successful send. Returns the
6069 * number of data bytes consumed, or zero if nothing done.
6070 */
6071static size_t h2s_skip_data(struct h2s *h2s, struct buffer *buf, size_t count)
6072{
6073 struct h2c *h2c = h2s->h2c;
6074 struct htx *htx;
6075 int bsize; /* htx block size */
6076 int fsize; /* h2 frame size */
6077 struct htx_blk *blk;
6078 enum htx_blk_type type;
6079 size_t total = 0;
6080
6081 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6082
6083 if (h2c_mux_busy(h2c, h2s)) {
6084 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6085 h2s->flags |= H2_SF_BLK_MBUSY;
6086 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6087 goto end;
6088 }
6089
6090 htx = htx_from_buf(buf);
6091
6092 next_data:
6093 if (!count || htx_is_empty(htx))
6094 goto end;
6095 blk = htx_get_head_blk(htx);
6096 type = htx_get_blk_type(blk);
6097 bsize = htx_get_blksz(blk);
6098 fsize = bsize;
6099 if (type != HTX_BLK_DATA)
6100 goto end;
6101
6102 if (fsize > count)
6103 fsize = count;
6104
6105 if (fsize != bsize)
6106 goto skip_data;
6107
6108 if (!(htx->flags & HTX_FL_EOM) || !htx_is_unique_blk(htx, blk))
6109 goto skip_data;
6110
6111 /* Here, it is the last block and it is also the end of the message. So
6112 * we can emit an empty DATA frame with the ES flag set
6113 */
6114 if (h2_send_empty_data_es(h2s) <= 0)
6115 goto end;
6116
6117 if (h2s->st == H2_SS_OPEN)
6118 h2s->st = H2_SS_HLOC;
6119 else
6120 h2s_close(h2s);
6121
6122 skip_data:
6123 /* consume incoming HTX block */
6124 total += fsize;
6125 if (fsize == bsize) {
6126 TRACE_DEVEL("more data may be available, trying to skip another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6127 htx_remove_blk(htx, blk);
6128 goto next_data;
6129 }
6130 else {
6131 /* we've truncated this block */
6132 htx_cut_data_blk(htx, blk, fsize);
6133 }
6134
6135 end:
6136 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6137 return total;
6138}
6139
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006140/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
6141 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
6142 * processed. The caller must check the stream's status to detect any error
6143 * which might have happened subsequently to a successful send. The htx blocks
6144 * are automatically removed from the message. The htx message is assumed to be
6145 * valid since produced from the internal code. Processing stops when meeting
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006146 * the EOT, which *is* removed. All trailers are processed at once and sent as a
6147 * single frame. The ES flag is always set.
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006148 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006149static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006150{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02006151 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006152 struct h2c *h2c = h2s->h2c;
6153 struct htx_blk *blk;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006154 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02006155 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006156 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006157 int ret = 0;
6158 int hdr;
6159 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006160
Willy Tarreau7838a792019-08-12 18:42:03 +02006161 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
6162
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006163 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006164 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006165 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02006166 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006167 goto end;
6168 }
6169
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006170 /* get trailers. */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006171 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006172 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006173 type = htx_get_blk_type(blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006174
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006175 if (type == HTX_BLK_UNUSED)
6176 continue;
6177
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006178 if (type == HTX_BLK_EOT)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006179 break;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006180 if (type == HTX_BLK_TLR) {
6181 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
6182 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
6183 goto fail;
6184 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006185
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006186 list[hdr].n = htx_get_blk_name(htx, blk);
6187 list[hdr].v = htx_get_blk_value(htx, blk);
6188 hdr++;
6189 }
6190 else {
6191 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 +01006192 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02006193 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006194 }
6195
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006196 /* marker for end of trailers */
6197 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006198
Willy Tarreau9c218e72019-05-26 10:08:28 +02006199 mbuf = br_tail(h2c->mbuf);
6200 retry:
6201 if (!h2_get_buf(h2c, mbuf)) {
6202 h2c->flags |= H2_CF_MUX_MALLOC;
6203 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006204 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 +02006205 goto end;
6206 }
6207
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006208 chunk_reset(&outbuf);
6209
6210 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006211 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6212 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006213 break;
6214 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006215 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006216 }
6217
6218 if (outbuf.size < 9)
6219 goto full;
6220
6221 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
6222 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
6223 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6224 outbuf.data = 9;
6225
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006226 /* encode all headers */
6227 for (idx = 0; idx < hdr; idx++) {
6228 /* these ones do not exist in H2 or must not appear in
6229 * trailers and must be dropped.
6230 */
6231 if (isteq(list[idx].n, ist("host")) ||
6232 isteq(list[idx].n, ist("content-length")) ||
6233 isteq(list[idx].n, ist("connection")) ||
6234 isteq(list[idx].n, ist("proxy-connection")) ||
6235 isteq(list[idx].n, ist("keep-alive")) ||
6236 isteq(list[idx].n, ist("upgrade")) ||
6237 isteq(list[idx].n, ist("te")) ||
6238 isteq(list[idx].n, ist("transfer-encoding")))
6239 continue;
6240
Christopher Faulet86d144c2019-08-14 16:32:25 +02006241 /* Skip all pseudo-headers */
6242 if (*(list[idx].n.ptr) == ':')
6243 continue;
6244
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006245 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
6246 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006247 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006248 goto realign_again;
6249 goto full;
6250 }
6251 }
6252
Willy Tarreau5121e5d2019-05-06 15:13:41 +02006253 if (outbuf.data == 9) {
6254 /* here we have a problem, we have nothing to emit (either we
6255 * received an empty trailers block followed or we removed its
6256 * contents above). Because of this we can't send a HEADERS
6257 * frame, so we have to cheat and instead send an empty DATA
6258 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01006259 */
6260 outbuf.area[3] = H2_FT_DATA;
6261 outbuf.area[4] = H2_F_DATA_END_STREAM;
6262 }
6263
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006264 /* update the frame's size */
6265 h2_set_frame_size(outbuf.area, outbuf.data - 9);
6266
Willy Tarreau572d9f52019-10-11 16:58:37 +02006267 if (outbuf.data > h2c->mfs + 9) {
6268 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
6269 /* output full */
6270 if (b_space_wraps(mbuf))
6271 goto realign_again;
6272 goto full;
6273 }
6274 }
6275
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006276 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02006277 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 +02006278 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006279 h2s->flags |= H2_SF_ES_SENT;
6280
6281 if (h2s->st == H2_SS_OPEN)
6282 h2s->st = H2_SS_HLOC;
6283 else
6284 h2s_close(h2s);
6285
6286 /* OK we could properly deliver the response */
6287 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02006288 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006289 ret = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006290 blk = htx_get_head_blk(htx);
6291 while (blk) {
6292 type = htx_get_blk_type(blk);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006293 ret += htx_get_blksz(blk);
6294 blk = htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006295 /* The removed block is the EOT */
6296 if (type == HTX_BLK_EOT)
6297 break;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006298 }
6299
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006300 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006301 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006302 return ret;
6303 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02006304 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6305 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006306 h2c->flags |= H2_CF_MUX_MFULL;
6307 h2s->flags |= H2_SF_BLK_MROOM;
6308 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006309 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 +01006310 goto end;
6311 fail:
6312 /* unparsable HTX messages, too large ones to be produced in the local
6313 * list etc go here (unrecoverable errors).
6314 */
6315 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
6316 ret = 0;
6317 goto end;
6318}
6319
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006320/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6321 * event subscriber <es> is not allowed to change from a previous call as long
6322 * as at least one event is still subscribed. The <event_type> must only be a
6323 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006324 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006325static int h2_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02006326{
Olivier Houchard6ff20392018-07-17 18:46:31 +02006327 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02006328 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006329
Willy Tarreau7838a792019-08-12 18:42:03 +02006330 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006331
6332 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006333 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006334
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006335 es->events |= event_type;
6336 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006337
6338 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006339 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006340
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006341 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006342 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02006343 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02006344 !LIST_INLIST(&h2s->list)) {
Olivier Houchardf8338152019-05-14 17:50:32 +02006345 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02006346 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Olivier Houchardf8338152019-05-14 17:50:32 +02006347 else
Willy Tarreau2b718102021-04-21 07:32:39 +02006348 LIST_APPEND(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02006349 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02006350 }
Willy Tarreau7838a792019-08-12 18:42:03 +02006351 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006352 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006353}
6354
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006355/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6356 * The <es> pointer is not allowed to differ from the one passed to the
6357 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006358 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006359static int h2_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006360{
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006361 struct h2s *h2s = cs->ctx;
6362
Willy Tarreau7838a792019-08-12 18:42:03 +02006363 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006364
6365 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006366 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006367
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006368 es->events &= ~event_type;
6369 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01006370 h2s->subs = NULL;
6371
6372 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006373 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006374
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006375 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006376 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006377 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006378 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
6379 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02006380 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01006381
Willy Tarreau7838a792019-08-12 18:42:03 +02006382 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006383 return 0;
6384}
6385
6386
Christopher Faulet93a466b2021-09-21 15:50:55 +02006387/* Called from the upper layer, to receive data
6388 *
6389 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
6390 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
6391 * means the caller wants to flush input data (from the mux buffer and the
6392 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
6393 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
6394 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
6395 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
6396 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
6397 * copy as much data as possible.
6398 */
Olivier Houchard511efea2018-08-16 15:30:32 +02006399static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
6400{
Olivier Houchard638b7992018-08-16 15:41:52 +02006401 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01006402 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01006403 struct htx *h2s_htx = NULL;
6404 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02006405 size_t ret = 0;
6406
Willy Tarreau7838a792019-08-12 18:42:03 +02006407 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
6408
Olivier Houchard511efea2018-08-16 15:30:32 +02006409 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006410 h2s_htx = htx_from_buf(&h2s->rxbuf);
Christopher Faulet83f3d3d2022-02-21 15:12:54 +01006411 if (htx_is_empty(h2s_htx) && !(h2s_htx->flags & HTX_FL_PARSING_ERROR)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02006412 /* Here htx_to_buf() will set buffer data to 0 because
6413 * the HTX is empty.
6414 */
6415 htx_to_buf(h2s_htx, &h2s->rxbuf);
6416 goto end;
6417 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01006418
Christopher Faulet9b79a102019-07-15 11:22:56 +02006419 ret = h2s_htx->data;
6420 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01006421
Christopher Faulet9b79a102019-07-15 11:22:56 +02006422 /* <buf> is empty and the message is small enough, swap the
6423 * buffers. */
6424 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01006425 htx_to_buf(buf_htx, buf);
6426 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006427 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
6428 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01006429 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02006430
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006431 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_UNUSED);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006432
6433 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
6434 buf_htx->flags |= HTX_FL_PARSING_ERROR;
6435 if (htx_is_empty(buf_htx))
6436 cs->flags |= CS_FL_EOI;
Willy Tarreau86724e22018-12-01 23:19:43 +01006437 }
Christopher Faulet810df062020-07-22 16:20:34 +02006438 else if (htx_is_empty(h2s_htx))
Christopher Faulet42432f32020-11-20 17:43:16 +01006439 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006440
Christopher Faulet9b79a102019-07-15 11:22:56 +02006441 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
6442 htx_to_buf(buf_htx, buf);
6443 htx_to_buf(h2s_htx, &h2s->rxbuf);
6444 ret -= h2s_htx->data;
6445
Christopher Faulet37070b22019-02-14 15:12:14 +01006446 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02006447 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01006448 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006449 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01006450 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006451 if (h2s->flags & H2_SF_ES_RCVD) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02006452 cs->flags |= CS_FL_EOI;
Christopher Fauletd0db4232021-01-22 11:46:30 +01006453 /* Add EOS flag for tunnel */
6454 if (h2s->flags & H2_SF_BODY_TUNNEL)
6455 cs->flags |= CS_FL_EOS;
6456 }
Christopher Fauletaade4ed2020-10-08 15:38:41 +02006457 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02006458 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01006459 if (cs->flags & CS_FL_ERR_PENDING)
6460 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02006461 if (b_size(&h2s->rxbuf)) {
6462 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01006463 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02006464 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006465 }
6466
Willy Tarreau082f5592018-11-25 08:03:32 +01006467 if (ret && h2c->dsi == h2s->id) {
6468 /* demux is blocking on this stream's buffer */
6469 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006470 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006471 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006472
Willy Tarreau7838a792019-08-12 18:42:03 +02006473 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006474 return ret;
6475}
6476
Olivier Houchardd846c262018-10-19 17:24:29 +02006477
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006478/* Called from the upper layer, to send data from buffer <buf> for no more than
6479 * <count> bytes. Returns the number of bytes effectively sent. Some status
6480 * flags may be updated on the conn_stream.
6481 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02006482static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006483{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006484 struct h2s *h2s = cs->ctx;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006485 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006486 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006487 struct htx *htx;
6488 struct htx_blk *blk;
6489 enum htx_blk_type btype;
6490 uint32_t bsize;
6491 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006492
Willy Tarreau7838a792019-08-12 18:42:03 +02006493 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6494
Olivier Houchardd360ac62019-03-22 17:37:16 +01006495 /* If we were not just woken because we wanted to send but couldn't,
6496 * and there's somebody else that is waiting to send, do nothing,
6497 * we will subscribe later and be put at the end of the list
6498 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006499 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006500 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6501 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 +01006502 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006503 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006504 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006505
Willy Tarreau7838a792019-08-12 18:42:03 +02006506 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6507 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 +02006508 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006509 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006510
Willy Tarreaucab22952019-10-31 15:48:18 +01006511 if (h2s->h2c->st0 >= H2_CS_ERROR) {
6512 cs->flags |= CS_FL_ERROR;
6513 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);
6514 return 0;
6515 }
6516
Christopher Faulet9b79a102019-07-15 11:22:56 +02006517 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006518
Willy Tarreau0bad0432018-06-14 16:54:01 +02006519 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006520 h2s->flags |= H2_SF_OUTGOING_DATA;
6521
Willy Tarreau751f2d02018-10-05 09:35:00 +02006522 if (h2s->id == 0) {
6523 int32_t id = h2c_get_next_sid(h2s->h2c);
6524
6525 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02006526 cs->flags |= CS_FL_ERROR;
Willy Tarreau7838a792019-08-12 18:42:03 +02006527 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 +02006528 return 0;
6529 }
6530
6531 eb32_delete(&h2s->by_id);
6532 h2s->by_id.key = h2s->id = id;
6533 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006534 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006535 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6536 }
6537
Christopher Faulet9b79a102019-07-15 11:22:56 +02006538 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6539 count && !htx_is_empty(htx)) {
6540 idx = htx_get_head(htx);
6541 blk = htx_get_blk(htx, idx);
6542 btype = htx_get_blk_type(blk);
6543 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006544
Christopher Faulet9b79a102019-07-15 11:22:56 +02006545 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006546 case HTX_BLK_REQ_SL:
6547 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006548 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006549 if (ret > 0) {
6550 total += ret;
6551 count -= ret;
6552 if (ret < bsize)
6553 goto done;
6554 }
6555 break;
6556
Willy Tarreau115e83b2018-12-01 19:17:53 +01006557 case HTX_BLK_RES_SL:
6558 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006559 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006560 if (ret > 0) {
6561 total += ret;
6562 count -= ret;
6563 if (ret < bsize)
6564 goto done;
6565 }
6566 break;
6567
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006568 case HTX_BLK_DATA:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006569 /* all these cause the emission of a DATA frame (possibly empty) */
Christopher Faulet991febd2020-12-02 15:17:31 +01006570 if (!(h2s->h2c->flags & H2_CF_IS_BACK) &&
6571 (h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BODYLESS_RESP)) == H2_SF_BODYLESS_RESP)
6572 ret = h2s_skip_data(h2s, buf, count);
6573 else
6574 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006575 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006576 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006577 total += ret;
6578 count -= ret;
6579 if (ret < bsize)
6580 goto done;
6581 }
6582 break;
6583
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006584 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006585 case HTX_BLK_EOT:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006586 /* This is the first trailers block, all the subsequent ones */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006587 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006588 if (ret > 0) {
6589 total += ret;
6590 count -= ret;
6591 if (ret < bsize)
6592 goto done;
6593 }
6594 break;
6595
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006596 default:
6597 htx_remove_blk(htx, blk);
6598 total += bsize;
6599 count -= bsize;
6600 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006601 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006602 }
6603
Christopher Faulet9b79a102019-07-15 11:22:56 +02006604 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006605 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006606 /* trim any possibly pending data after we close (extra CR-LF,
6607 * unprocessed trailers, abnormal extra data, ...)
6608 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006609 total += count;
6610 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006611 }
6612
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006613 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006614 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006615 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 +01006616 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006617 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006618 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006619 }
6620
Christopher Faulet9b79a102019-07-15 11:22:56 +02006621 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006622
Olivier Houchard7505f942018-08-21 18:10:44 +02006623 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006624 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006625 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 +02006626 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006627 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006628
Olivier Houchard7505f942018-08-21 18:10:44 +02006629 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006630 /* If we're waiting for flow control, and we got a shutr on the
6631 * connection, we will never be unlocked, so add an error on
6632 * the conn_stream.
6633 */
6634 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
6635 !b_data(&h2s->h2c->dbuf) &&
6636 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006637 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 +01006638 if (cs->flags & CS_FL_EOS)
6639 cs->flags |= CS_FL_ERROR;
6640 else
6641 cs->flags |= CS_FL_ERR_PENDING;
6642 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006643
Willy Tarreau5723f292020-01-10 15:16:57 +01006644 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6645 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006646 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006647 LIST_DEL_INIT(&h2s->list);
6648 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006649
Willy Tarreau7838a792019-08-12 18:42:03 +02006650 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006651 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006652}
6653
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006654/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01006655static int h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006656{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01006657 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01006658 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006659 struct eb32_node *node;
6660 int fctl_cnt = 0;
6661 int send_cnt = 0;
6662 int tree_cnt = 0;
6663 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02006664 struct buffer *hmbuf, *tmbuf;
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006665 int ret = 0;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006666
6667 if (!h2c)
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006668 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006669
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006670 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006671 fctl_cnt++;
6672
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006673 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006674 send_cnt++;
6675
Willy Tarreau3af37712018-12-18 14:34:41 +01006676 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006677 node = eb32_first(&h2c->streams_by_id);
6678 while (node) {
6679 h2s = container_of(node, struct h2s, by_id);
6680 tree_cnt++;
6681 if (!h2s->cs)
6682 orph_cnt++;
6683 node = eb32_next(node);
6684 }
6685
Willy Tarreau60f62682019-05-26 11:32:27 +02006686 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006687 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006688 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau987c0632018-12-18 10:32:05 +01006689 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02006690 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
6691 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006692 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau616ac812018-07-24 14:12:42 +02006693 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006694 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006695 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
6696 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
6697 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02006698 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6699 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6700 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006701 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6702 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006703
6704 if (h2s) {
Willy Tarreaued4464e2021-01-20 15:50:03 +01006705 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 +02006706 h2s, h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
Willy Tarreau987c0632018-12-18 10:32:05 +01006707 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
6708 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
6709 h2s->cs);
6710 if (h2s->cs)
Willy Tarreau98e40b92021-01-20 16:27:01 +01006711 chunk_appendf(msg, "(.flg=0x%08x .data=%p)",
Willy Tarreau987c0632018-12-18 10:32:05 +01006712 h2s->cs->flags, h2s->cs->data);
Willy Tarreau98e40b92021-01-20 16:27:01 +01006713
6714 chunk_appendf(&trash, " .subs=%p", h2s->subs);
6715 if (h2s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01006716 chunk_appendf(&trash, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
6717 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
6718 h2s->subs->tasklet->calls,
6719 h2s->subs->tasklet->context);
6720 if (h2s->subs->tasklet->calls >= 1000000)
6721 ret = 1;
6722 resolve_sym_name(&trash, NULL, h2s->subs->tasklet->process);
6723 chunk_appendf(&trash, ")");
Willy Tarreau98e40b92021-01-20 16:27:01 +01006724 }
Willy Tarreau987c0632018-12-18 10:32:05 +01006725 }
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006726 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006727}
Willy Tarreau62f52692017-10-08 23:01:42 +02006728
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006729/* Migrate the the connection to the current thread.
6730 * Return 0 if successful, non-zero otherwise.
6731 * Expected to be called with the old thread lock held.
6732 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006733static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006734{
6735 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006736 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006737
6738 if (fd_takeover(conn->handle.fd, conn) != 0)
6739 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006740
6741 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6742 /* We failed to takeover the xprt, even if the connection may
6743 * still be valid, flag it as error'd, as we have already
6744 * taken over the fd, and wake the tasklet, so that it will
6745 * destroy it.
6746 */
6747 conn->flags |= CO_FL_ERROR;
6748 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6749 return -1;
6750 }
6751
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006752 if (h2c->wait_event.events)
6753 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6754 h2c->wait_event.events, &h2c->wait_event);
6755 /* To let the tasklet know it should free itself, and do nothing else,
6756 * set its context to NULL.
6757 */
6758 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006759 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006760
6761 task = h2c->task;
6762 if (task) {
6763 task->context = NULL;
6764 h2c->task = NULL;
6765 __ha_barrier_store();
6766 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006767
6768 h2c->task = task_new(tid_bit);
6769 if (!h2c->task) {
6770 h2_release(h2c);
6771 return -1;
6772 }
6773 h2c->task->process = h2_timeout_task;
6774 h2c->task->context = h2c;
6775 }
6776 h2c->wait_event.tasklet = tasklet_new();
6777 if (!h2c->wait_event.tasklet) {
6778 h2_release(h2c);
6779 return -1;
6780 }
6781 h2c->wait_event.tasklet->process = h2_io_cb;
6782 h2c->wait_event.tasklet->context = h2c;
6783 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6784 SUB_RETRY_RECV, &h2c->wait_event);
6785
6786 return 0;
6787}
6788
Willy Tarreau62f52692017-10-08 23:01:42 +02006789/*******************************************************/
6790/* functions below are dedicated to the config parsers */
6791/*******************************************************/
6792
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006793/* config parser for global "tune.h2.header-table-size" */
6794static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006795 const struct proxy *defpx, const char *file, int line,
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006796 char **err)
6797{
6798 if (too_many_args(1, args, err, NULL))
6799 return -1;
6800
6801 h2_settings_header_table_size = atoi(args[1]);
6802 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6803 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6804 return -1;
6805 }
6806 return 0;
6807}
Willy Tarreau62f52692017-10-08 23:01:42 +02006808
Willy Tarreaue6baec02017-07-27 11:45:11 +02006809/* config parser for global "tune.h2.initial-window-size" */
6810static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006811 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue6baec02017-07-27 11:45:11 +02006812 char **err)
6813{
6814 if (too_many_args(1, args, err, NULL))
6815 return -1;
6816
6817 h2_settings_initial_window_size = atoi(args[1]);
6818 if (h2_settings_initial_window_size < 0) {
6819 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6820 return -1;
6821 }
6822 return 0;
6823}
6824
Willy Tarreau5242ef82017-07-27 11:47:28 +02006825/* config parser for global "tune.h2.max-concurrent-streams" */
6826static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006827 const struct proxy *defpx, const char *file, int line,
Willy Tarreau5242ef82017-07-27 11:47:28 +02006828 char **err)
6829{
6830 if (too_many_args(1, args, err, NULL))
6831 return -1;
6832
6833 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006834 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006835 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6836 return -1;
6837 }
6838 return 0;
6839}
6840
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006841/* config parser for global "tune.h2.max-frame-size" */
6842static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006843 const struct proxy *defpx, const char *file, int line,
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006844 char **err)
6845{
6846 if (too_many_args(1, args, err, NULL))
6847 return -1;
6848
6849 h2_settings_max_frame_size = atoi(args[1]);
6850 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6851 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6852 return -1;
6853 }
6854 return 0;
6855}
6856
Willy Tarreau62f52692017-10-08 23:01:42 +02006857
6858/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006859/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006860/***************************************/
6861
6862/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006863static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006864 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006865 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006866 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006867 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006868 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006869 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006870 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01006871 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02006872 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006873 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006874 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006875 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006876 .shutr = h2_shutr,
6877 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006878 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006879 .show_fd = h2_show_fd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006880 .takeover = h2_takeover,
Christopher Fauleta4600572021-03-08 15:28:28 +01006881 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX|MX_FL_HOL_RISK|MX_FL_NO_UPG,
Willy Tarreau62f52692017-10-08 23:01:42 +02006882 .name = "H2",
6883};
6884
Christopher Faulet32f61c02018-04-10 14:33:41 +02006885static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006886 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006887
Willy Tarreau0108d902018-11-25 19:14:37 +01006888INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6889
Willy Tarreau62f52692017-10-08 23:01:42 +02006890/* config keyword parsers */
6891static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006892 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006893 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006894 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006895 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006896 { 0, NULL, NULL }
6897}};
6898
Willy Tarreau0108d902018-11-25 19:14:37 +01006899INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006900
6901/* initialize internal structs after the config is parsed.
6902 * Returns zero on success, non-zero on error.
6903 */
6904static int init_h2()
6905{
6906 pool_head_hpack_tbl = create_pool("hpack_tbl",
6907 h2_settings_header_table_size,
6908 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01006909 if (!pool_head_hpack_tbl) {
6910 ha_alert("failed to allocate hpack_tbl memory pool\n");
6911 return (ERR_ALERT | ERR_FATAL);
6912 }
6913 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006914}
6915
6916REGISTER_POST_CHECK(init_h2);