blob: aa0a7602952f70fb0df0bfcd475c51e0bfa5e5ac [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 Tarreau5413a872020-06-02 19:33:08 +020017#include <haproxy/h1.h>
Willy Tarreaubf073142020-06-03 12:04:01 +020018#include <haproxy/h2.h>
Willy Tarreaube327fa2020-06-03 09:09:57 +020019#include <haproxy/hpack-dec.h>
20#include <haproxy/hpack-enc.h>
21#include <haproxy/hpack-tbl.h>
Willy Tarreau87735332020-06-04 09:08:41 +020022#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020023#include <haproxy/htx.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020024#include <haproxy/istbuf.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020025#include <haproxy/log.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +020026#include <haproxy/net_helper.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020027#include <haproxy/session-t.h>
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +010028#include <haproxy/stats.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020029#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020030#include <haproxy/stream_interface.h>
Willy Tarreauc6d61d72020-06-04 19:02:42 +020031#include <haproxy/trace.h>
Willy Tarreau62f52692017-10-08 23:01:42 +020032
33
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010034/* dummy streams returned for closed, error, refused, idle and states */
Willy Tarreau2a856182017-05-16 15:20:39 +020035static const struct h2s *h2_closed_stream;
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010036static const struct h2s *h2_error_stream;
Willy Tarreau8d0d58b2018-12-23 18:29:12 +010037static const struct h2s *h2_refused_stream;
Willy Tarreau2a856182017-05-16 15:20:39 +020038static const struct h2s *h2_idle_stream;
39
Willy Tarreau5ab6b572017-09-22 08:05:00 +020040/* Connection flags (32 bit), in h2c->flags */
41#define H2_CF_NONE 0x00000000
42
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020043/* Flags indicating why writing to the mux is blocked. */
44#define H2_CF_MUX_MALLOC 0x00000001 // mux blocked on lack of connection's mux buffer
45#define H2_CF_MUX_MFULL 0x00000002 // mux blocked on connection's mux buffer full
46#define H2_CF_MUX_BLOCK_ANY 0x00000003 // aggregate of the mux flags above
47
Willy Tarreau315d8072017-12-10 22:17:57 +010048/* Flags indicating why writing to the demux is blocked.
49 * The first two ones directly affect the ability for the mux to receive data
50 * from the connection. The other ones affect the mux's ability to demux
51 * received data.
52 */
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020053#define H2_CF_DEM_DALLOC 0x00000004 // demux blocked on lack of connection's demux buffer
54#define H2_CF_DEM_DFULL 0x00000008 // demux blocked on connection's demux buffer full
Willy Tarreau315d8072017-12-10 22:17:57 +010055
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020056#define H2_CF_DEM_MBUSY 0x00000010 // demux blocked on connection's mux side busy
57#define H2_CF_DEM_MROOM 0x00000020 // demux blocked on lack of room in mux buffer
58#define H2_CF_DEM_SALLOC 0x00000040 // demux blocked on lack of stream's request buffer
59#define H2_CF_DEM_SFULL 0x00000080 // demux blocked on stream request buffer full
Willy Tarreauf2101912018-07-19 10:11:38 +020060#define H2_CF_DEM_TOOMANY 0x00000100 // demux blocked waiting for some conn_streams to leave
61#define H2_CF_DEM_BLOCK_ANY 0x000001F0 // aggregate of the demux flags above except DALLOC/DFULL
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020062
Willy Tarreau081d4722017-05-16 21:51:05 +020063/* other flags */
Willy Tarreauf2101912018-07-19 10:11:38 +020064#define H2_CF_GOAWAY_SENT 0x00001000 // a GOAWAY frame was successfully sent
65#define H2_CF_GOAWAY_FAILED 0x00002000 // a GOAWAY frame failed to be sent
66#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 +020067#define H2_CF_IS_BACK 0x00008000 // this is an outgoing connection
Willy Tarreau97aaa672018-12-23 09:49:04 +010068#define H2_CF_WINDOW_OPENED 0x00010000 // demux increased window already advertised
Willy Tarreau081d4722017-05-16 21:51:05 +020069
Willy Tarreau5ab6b572017-09-22 08:05:00 +020070/* H2 connection state, in h2c->st0 */
71enum h2_cs {
72 H2_CS_PREFACE, // init done, waiting for connection preface
73 H2_CS_SETTINGS1, // preface OK, waiting for first settings frame
74 H2_CS_FRAME_H, // first settings frame ok, waiting for frame header
75 H2_CS_FRAME_P, // frame header OK, waiting for frame payload
Willy Tarreaua20a5192017-12-27 11:02:06 +010076 H2_CS_FRAME_A, // frame payload OK, trying to send ACK frame
77 H2_CS_FRAME_E, // frame payload OK, trying to send RST frame
Willy Tarreau5ab6b572017-09-22 08:05:00 +020078 H2_CS_ERROR, // send GOAWAY(errcode) and close the connection ASAP
79 H2_CS_ERROR2, // GOAWAY(errcode) sent, close the connection ASAP
80 H2_CS_ENTRIES // must be last
81} __attribute__((packed));
82
Willy Tarreau51330962019-05-26 09:38:07 +020083
Willy Tarreau9c218e72019-05-26 10:08:28 +020084/* 32 buffers: one for the ring's root, rest for the mbuf itself */
85#define H2C_MBUF_CNT 32
Willy Tarreau51330962019-05-26 09:38:07 +020086
Willy Tarreau5ab6b572017-09-22 08:05:00 +020087/* H2 connection descriptor */
88struct h2c {
89 struct connection *conn;
90
91 enum h2_cs st0; /* mux state */
92 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
93
94 /* 16 bit hole here */
95 uint32_t flags; /* connection flags: H2_CF_* */
Willy Tarreau2e2083a2019-01-31 10:34:07 +010096 uint32_t streams_limit; /* maximum number of concurrent streams the peer supports */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020097 int32_t max_id; /* highest ID known on this connection, <0 before preface */
98 uint32_t rcvd_c; /* newly received data to ACK for the connection */
99 uint32_t rcvd_s; /* newly received data to ACK for the current stream (dsi) */
100
101 /* states for the demux direction */
102 struct hpack_dht *ddht; /* demux dynamic header table */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200103 struct buffer dbuf; /* demux buffer */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200104
105 int32_t dsi; /* demux stream ID (<0 = idle) */
106 int32_t dfl; /* demux frame length (if dsi >= 0) */
107 int8_t dft; /* demux frame type (if dsi >= 0) */
108 int8_t dff; /* demux frame flags (if dsi >= 0) */
Willy Tarreau05e5daf2017-12-11 15:17:36 +0100109 uint8_t dpl; /* demux pad length (part of dfl), init to 0 */
110 /* 8 bit hole here */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200111 int32_t last_sid; /* last processed stream ID for GOAWAY, <0 before preface */
112
113 /* states for the mux direction */
Willy Tarreau51330962019-05-26 09:38:07 +0200114 struct buffer mbuf[H2C_MBUF_CNT]; /* mux buffers (ring) */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200115 int32_t msi; /* mux stream ID (<0 = idle) */
116 int32_t mfl; /* mux frame length (if dsi >= 0) */
117 int8_t mft; /* mux frame type (if dsi >= 0) */
118 int8_t mff; /* mux frame flags (if dsi >= 0) */
119 /* 16 bit hole here */
120 int32_t miw; /* mux initial window size for all new streams */
121 int32_t mws; /* mux window size. Can be negative. */
122 int32_t mfs; /* mux's max frame size */
123
Willy Tarreauea392822017-10-31 10:02:25 +0100124 int timeout; /* idle timeout duration in ticks */
Willy Tarreau599391a2017-11-24 10:16:00 +0100125 int shut_timeout; /* idle timeout duration in ticks after GOAWAY was sent */
Willy Tarreau49745612017-12-03 18:56:02 +0100126 unsigned int nb_streams; /* number of streams in the tree */
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200127 unsigned int nb_cs; /* number of attached conn_streams */
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100128 unsigned int nb_reserved; /* number of reserved streams */
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100129 unsigned int stream_cnt; /* total number of streams seen */
Willy Tarreau0b37d652018-10-03 10:33:02 +0200130 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +0100131 struct task *task; /* timeout management task */
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100132 struct h2_counters *px_counters; /* h2 counters attached to proxy */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200133 struct eb_root streams_by_id; /* all active streams by their ID */
134 struct list send_list; /* list of blocked streams requesting to send */
135 struct list fctl_list; /* list of streams blocked by connection's fctl */
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200136 struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100137 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200138 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200139};
140
Willy Tarreau18312642017-10-11 07:57:07 +0200141/* H2 stream state, in h2s->st */
142enum h2_ss {
143 H2_SS_IDLE = 0, // idle
144 H2_SS_RLOC, // reserved(local)
145 H2_SS_RREM, // reserved(remote)
146 H2_SS_OPEN, // open
147 H2_SS_HREM, // half-closed(remote)
148 H2_SS_HLOC, // half-closed(local)
Willy Tarreau96060ba2017-10-16 18:34:34 +0200149 H2_SS_ERROR, // an error needs to be sent using RST_STREAM
Willy Tarreau18312642017-10-11 07:57:07 +0200150 H2_SS_CLOSED, // closed
151 H2_SS_ENTRIES // must be last
152} __attribute__((packed));
153
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200154#define H2_SS_MASK(state) (1UL << (state))
155#define H2_SS_IDLE_BIT (1UL << H2_SS_IDLE)
156#define H2_SS_RLOC_BIT (1UL << H2_SS_RLOC)
157#define H2_SS_RREM_BIT (1UL << H2_SS_RREM)
158#define H2_SS_OPEN_BIT (1UL << H2_SS_OPEN)
159#define H2_SS_HREM_BIT (1UL << H2_SS_HREM)
160#define H2_SS_HLOC_BIT (1UL << H2_SS_HLOC)
161#define H2_SS_ERROR_BIT (1UL << H2_SS_ERROR)
162#define H2_SS_CLOSED_BIT (1UL << H2_SS_CLOSED)
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200163
Willy Tarreau18312642017-10-11 07:57:07 +0200164/* HTTP/2 stream flags (32 bit), in h2s->flags */
165#define H2_SF_NONE 0x00000000
166#define H2_SF_ES_RCVD 0x00000001
167#define H2_SF_ES_SENT 0x00000002
168
169#define H2_SF_RST_RCVD 0x00000004 // received RST_STREAM
170#define H2_SF_RST_SENT 0x00000008 // sent RST_STREAM
171
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200172/* stream flags indicating the reason the stream is blocked */
173#define H2_SF_BLK_MBUSY 0x00000010 // blocked waiting for mux access (transient)
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200174#define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux (must be in send list)
175#define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl (must be in fctl list)
176#define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl (must be in blocked list)
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200177#define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above
178
Willy Tarreau454f9052017-10-26 19:40:35 +0200179/* stream flags indicating how data is supposed to be sent */
180#define H2_SF_DATA_CLEN 0x00000100 // data sent using content-length
Willy Tarreaud9464162020-01-10 18:25:07 +0100181/* unused flags: 0x00000200, 0x00000400 */
Willy Tarreau454f9052017-10-26 19:40:35 +0200182
Willy Tarreaud9464162020-01-10 18:25:07 +0100183#define H2_SF_NOTIFIED 0x00000800 // a paused stream was notified to try to send again
Willy Tarreau67434202017-11-06 20:20:51 +0100184#define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream
Willy Tarreauc4312d32017-11-07 12:01:53 +0100185#define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data
Willy Tarreau67434202017-11-06 20:20:51 +0100186
Willy Tarreau6cc85a52019-01-02 15:49:20 +0100187#define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream
188
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200189#define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy)
190#define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy)
Willy Tarreau3cf69fe2019-05-14 10:44:40 +0200191#define H2_SF_KILL_CONN 0x00020000 // kill the whole connection with this stream
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200192
193
Willy Tarreau18312642017-10-11 07:57:07 +0200194/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
195 * it is being processed in the internal HTTP representation (H1 for now).
196 */
197struct h2s {
198 struct conn_stream *cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100199 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200200 struct h2c *h2c;
Willy Tarreaua40704a2018-09-11 13:52:04 +0200201 struct h1m h1m; /* request or response parser state for H1 */
Willy Tarreau18312642017-10-11 07:57:07 +0200202 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200203 int32_t id; /* stream ID */
204 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200205 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200206 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
207 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200208 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100209 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200210 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Willy Tarreauf96508a2020-01-10 11:12:48 +0100211 struct wait_event *subs; /* recv wait_event the conn_stream associated is waiting on (via h2_subscribe) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200212 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Willy Tarreau5723f292020-01-10 15:16:57 +0100213 struct tasklet *shut_tl; /* deferred shutdown tasklet, to retry to send an RST after we failed to,
214 * in case there's no other subscription to do it */
Willy Tarreau18312642017-10-11 07:57:07 +0200215};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200216
Willy Tarreauc6405142017-09-21 20:23:50 +0200217/* descriptor for an h2 frame header */
218struct h2_fh {
219 uint32_t len; /* length, host order, 24 bits */
220 uint32_t sid; /* stream id, host order, 31 bits */
221 uint8_t ft; /* frame type */
222 uint8_t ff; /* frame flags */
223};
224
Willy Tarreau12ae2122019-08-08 18:23:12 +0200225/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200226static void h2_trace(enum trace_level level, uint64_t mask, \
227 const struct trace_source *src,
228 const struct ist where, const struct ist func,
229 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200230
231/* The event representation is split like this :
232 * strm - application layer
233 * h2s - internal H2 stream
234 * h2c - internal H2 connection
235 * conn - external connection
236 *
237 */
238static const struct trace_event h2_trace_events[] = {
239#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200240 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200241#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200242 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200243#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200244 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200245#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200246 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200247#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200248 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200249#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200250 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200251#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200252 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200253#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200254 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200255#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200256 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200257#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200258 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200259#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200260 { .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 +0200261#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200262 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200263#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200264 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200265#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200266 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200267#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200268 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200269#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200270 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200271#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200272 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200273#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200274 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200275#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200276 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200277#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200278 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200279#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200280 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200281#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200282 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200283#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200284 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200285#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200286 { .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 +0200287#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200288 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200289#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200290 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200291#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200292 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200293#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200294 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200295#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200296 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200297#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200298 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200299#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200300 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200301#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200302 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200303#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200304 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200305#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200306 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200307#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200308 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200309#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200310 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200311#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200312 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200313#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200314 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200315#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200316 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200317#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200318 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200319#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200320 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200321#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200322 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200323#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200324 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200325#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200326 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200327#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200328 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200329#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200330 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200331#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200332 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200333#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200334 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200335#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200336 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200337#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200338 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200339#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200340 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200341#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200342 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200343 { }
344};
345
346static const struct name_desc h2_trace_lockon_args[4] = {
347 /* arg1 */ { /* already used by the connection */ },
348 /* arg2 */ { .name="h2s", .desc="H2 stream" },
349 /* arg3 */ { },
350 /* arg4 */ { }
351};
352
353static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200354#define H2_VERB_CLEAN 1
355 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
356#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200357 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200358#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200359 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200360#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200361 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200362#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200363 { .name="complete", .desc="add full data dump when available" },
364 { /* end */ }
365};
366
367static struct trace_source trace_h2 = {
368 .name = IST("h2"),
369 .desc = "HTTP/2 multiplexer",
370 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200371 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200372 .known_events = h2_trace_events,
373 .lockon_args = h2_trace_lockon_args,
374 .decoding = h2_trace_decoding,
375 .report_events = ~0, // report everything by default
376};
377
378#define TRACE_SOURCE &trace_h2
379INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
380
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100381/* h2 stats module */
382enum {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100383 H2_ST_HEADERS_RCVD,
384 H2_ST_DATA_RCVD,
385 H2_ST_SETTINGS_RCVD,
386 H2_ST_RST_STREAM_RCVD,
387 H2_ST_GOAWAY_RCVD,
388
Amaury Denoyellea8879232020-10-27 17:16:03 +0100389 H2_ST_CONN_PROTO_ERR,
390 H2_ST_STRM_PROTO_ERR,
391 H2_ST_RST_STREAM_RESP,
392 H2_ST_GOAWAY_RESP,
393
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100394 H2_ST_OPEN_CONN,
395 H2_ST_OPEN_STREAM,
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100396 H2_ST_TOTAL_CONN,
397 H2_ST_TOTAL_STREAM,
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100398
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100399 H2_STATS_COUNT /* must be the last member of the enum */
400};
401
402static struct name_desc h2_stats[] = {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100403 [H2_ST_HEADERS_RCVD] = { .name = "h2_headers_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100404 .desc = "Total number of received HEADERS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100405 [H2_ST_DATA_RCVD] = { .name = "h2_data_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100406 .desc = "Total number of received DATA frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100407 [H2_ST_SETTINGS_RCVD] = { .name = "h2_settings_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100408 .desc = "Total number of received SETTINGS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100409 [H2_ST_RST_STREAM_RCVD] = { .name = "h2_rst_stream_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100410 .desc = "Total number of received RST_STREAM frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100411 [H2_ST_GOAWAY_RCVD] = { .name = "h2_goaway_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100412 .desc = "Total number of received GOAWAY frames" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100413
414 [H2_ST_CONN_PROTO_ERR] = { .name = "h2_detected_conn_protocol_errors",
415 .desc = "Total number of connection protocol errors" },
416 [H2_ST_STRM_PROTO_ERR] = { .name = "h2_detected_strm_protocol_errors",
417 .desc = "Total number of stream protocol errors" },
418 [H2_ST_RST_STREAM_RESP] = { .name = "h2_rst_stream_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100419 .desc = "Total number of RST_STREAM sent on detected error" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100420 [H2_ST_GOAWAY_RESP] = { .name = "h2_goaway_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100421 .desc = "Total number of GOAWAY sent on detected error" },
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100422
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100423 [H2_ST_OPEN_CONN] = { .name = "h2_open_connections",
424 .desc = "Count of currently open connections" },
425 [H2_ST_OPEN_STREAM] = { .name = "h2_backend_open_streams",
426 .desc = "Count of currently open streams" },
427 [H2_ST_TOTAL_CONN] = { .name = "h2_open_connections",
428 .desc = "Total number of connections" },
429 [H2_ST_TOTAL_STREAM] = { .name = "h2_backend_open_streams",
430 .desc = "Total number of streams" },
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100431};
432
433static struct h2_counters {
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100434 long long headers_rcvd; /* total number of HEADERS frame received */
435 long long data_rcvd; /* total number of DATA frame received */
436 long long settings_rcvd; /* total number of SETTINGS frame received */
437 long long rst_stream_rcvd; /* total number of RST_STREAM frame received */
438 long long goaway_rcvd; /* total number of GOAWAY frame received */
Amaury Denoyellea8879232020-10-27 17:16:03 +0100439
440 long long conn_proto_err; /* total number of protocol errors detected */
441 long long strm_proto_err; /* total number of protocol errors detected */
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100442 long long rst_stream_resp; /* total number of RST_STREAM frame sent on error */
443 long long goaway_resp; /* total number of GOAWAY frame sent on error */
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100444
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100445 long long open_conns; /* count of currently open connections */
446 long long open_streams; /* count of currently open streams */
447 long long total_conns; /* total number of connections */
448 long long total_streams; /* total number of streams */
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100449} h2_counters;
450
451static void h2_fill_stats(void *data, struct field *stats)
452{
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100453 struct h2_counters *counters = data;
454
455 stats[H2_ST_HEADERS_RCVD] = mkf_u64(FN_COUNTER, counters->headers_rcvd);
456 stats[H2_ST_DATA_RCVD] = mkf_u64(FN_COUNTER, counters->data_rcvd);
457 stats[H2_ST_SETTINGS_RCVD] = mkf_u64(FN_COUNTER, counters->settings_rcvd);
458 stats[H2_ST_RST_STREAM_RCVD] = mkf_u64(FN_COUNTER, counters->rst_stream_rcvd);
459 stats[H2_ST_GOAWAY_RCVD] = mkf_u64(FN_COUNTER, counters->goaway_rcvd);
Amaury Denoyellea8879232020-10-27 17:16:03 +0100460
461 stats[H2_ST_CONN_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->conn_proto_err);
462 stats[H2_ST_STRM_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->strm_proto_err);
463 stats[H2_ST_RST_STREAM_RESP] = mkf_u64(FN_COUNTER, counters->rst_stream_resp);
464 stats[H2_ST_GOAWAY_RESP] = mkf_u64(FN_COUNTER, counters->goaway_resp);
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100465
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100466 stats[H2_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
467 stats[H2_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
468 stats[H2_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
469 stats[H2_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100470}
471
472static struct stats_module h2_stats_module = {
473 .name = "h2",
474 .fill_stats = h2_fill_stats,
475 .stats = h2_stats,
476 .stats_count = H2_STATS_COUNT,
477 .counters = &h2_counters,
478 .counters_size = sizeof(h2_counters),
479 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
480 .clearable = 1,
481};
482
483INITCALL1(STG_REGISTER, stats_register_module, &h2_stats_module);
484
Willy Tarreau8ceae722018-11-26 11:58:30 +0100485/* the h2c connection pool */
486DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
487
488/* the h2s stream pool */
489DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
490
Willy Tarreaudc572362018-12-12 08:08:05 +0100491/* The default connection window size is 65535, it may only be enlarged using
492 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
493 * we'll pretend we already received the difference between the two to send
494 * an equivalent window update to enlarge it to 2G-1.
495 */
496#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
497
Willy Tarreau455d5682019-05-24 19:42:18 +0200498/* maximum amount of data we're OK with re-aligning for buffer optimizations */
499#define MAX_DATA_REALIGN 1024
500
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200501/* a few settings from the global section */
502static int h2_settings_header_table_size = 4096; /* initial value */
Willy Tarreaue6baec02017-07-27 11:45:11 +0200503static int h2_settings_initial_window_size = 65535; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100504static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100505static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200506
Willy Tarreau2a856182017-05-16 15:20:39 +0200507/* a dmumy closed stream */
508static const struct h2s *h2_closed_stream = &(const struct h2s){
509 .cs = NULL,
510 .h2c = NULL,
511 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100512 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100513 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200514 .id = 0,
515};
516
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100517/* a dmumy closed stream returning a PROTOCOL_ERROR error */
518static const struct h2s *h2_error_stream = &(const struct h2s){
519 .cs = NULL,
520 .h2c = NULL,
521 .st = H2_SS_CLOSED,
522 .errcode = H2_ERR_PROTOCOL_ERROR,
523 .flags = 0,
524 .id = 0,
525};
526
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100527/* a dmumy closed stream returning a REFUSED_STREAM error */
528static const struct h2s *h2_refused_stream = &(const struct h2s){
529 .cs = NULL,
530 .h2c = NULL,
531 .st = H2_SS_CLOSED,
532 .errcode = H2_ERR_REFUSED_STREAM,
533 .flags = 0,
534 .id = 0,
535};
536
Willy Tarreau2a856182017-05-16 15:20:39 +0200537/* and a dummy idle stream for use with any unannounced stream */
538static const struct h2s *h2_idle_stream = &(const struct h2s){
539 .cs = NULL,
540 .h2c = NULL,
541 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100542 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200543 .id = 0,
544};
545
Olivier Houchard9f6af332018-05-25 14:04:04 +0200546static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200547static int h2_send(struct h2c *h2c);
548static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200549static int h2_process(struct h2c *h2c);
Olivier Houchard29fb89d2018-08-02 18:56:36 +0200550static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100551static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Willy Tarreau4790f7c2019-01-24 11:33:02 +0100552static int h2c_decode_headers(struct h2c *h2c, struct buffer *rxbuf, uint32_t *flags, unsigned long long *body_len);
Willy Tarreaua56a6de2018-02-26 15:59:07 +0100553static int h2_frt_transfer_data(struct h2s *h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +0200554static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state);
Olivier Houchardf502aca2018-12-14 19:42:40 +0100555static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100556static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200557
Willy Tarreauab2ec452019-08-30 07:07:08 +0200558/* returns a h2c state as an abbreviated 3-letter string, or "???" if unknown */
559static inline const char *h2c_st_to_str(enum h2_cs st)
560{
561 switch (st) {
562 case H2_CS_PREFACE: return "PRF";
563 case H2_CS_SETTINGS1: return "STG";
564 case H2_CS_FRAME_H: return "FRH";
565 case H2_CS_FRAME_P: return "FRP";
566 case H2_CS_FRAME_A: return "FRA";
567 case H2_CS_FRAME_E: return "FRE";
568 case H2_CS_ERROR: return "ERR";
569 case H2_CS_ERROR2: return "ER2";
570 default: return "???";
571 }
572}
573
574/* returns a h2s state as an abbreviated 3-letter string, or "???" if unknown */
575static inline const char *h2s_st_to_str(enum h2_ss st)
576{
577 switch (st) {
578 case H2_SS_IDLE: return "IDL"; // idle
579 case H2_SS_RLOC: return "RSL"; // reserved local
580 case H2_SS_RREM: return "RSR"; // reserved remote
581 case H2_SS_OPEN: return "OPN"; // open
582 case H2_SS_HREM: return "HCR"; // half-closed remote
583 case H2_SS_HLOC: return "HCL"; // half-closed local
584 case H2_SS_ERROR : return "ERR"; // error
585 case H2_SS_CLOSED: return "CLO"; // closed
586 default: return "???";
587 }
588}
589
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200590/* the H2 traces always expect that arg1, if non-null, is of type connection
591 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
592 * that arg3, if non-null, is either of type htx for tx headers, or of type
593 * buffer for everything else.
594 */
595static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
596 const struct ist where, const struct ist func,
597 const void *a1, const void *a2, const void *a3, const void *a4)
598{
599 const struct connection *conn = a1;
600 const struct h2c *h2c = conn ? conn->ctx : NULL;
601 const struct h2s *h2s = a2;
602 const struct buffer *buf = a3;
603 const struct htx *htx;
604 int pos;
605
606 if (!h2c) // nothing to add
607 return;
608
Willy Tarreau17104d42019-08-30 07:12:55 +0200609 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200610 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
611
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100612 if (h2c->errcode)
613 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
614
Willy Tarreau73db4342019-09-25 07:28:44 +0200615 if (h2c->dsi >= 0 &&
616 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
Willy Tarreau8520d872020-09-18 07:39:29 +0200617 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 +0200618 }
619
620 if (h2s) {
621 if (h2s->id <= 0)
622 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
623 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100624 if (h2s->id && h2s->errcode)
625 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200626 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200627 }
628
629 /* Let's dump decoded requests and responses right after parsing. They
630 * are traced at level USER with a few recognizable flags.
631 */
632 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
633 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
634 htx = htxbuf(buf); // recv req/res
635 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
636 htx = a3; // send req/res
637 else
638 htx = NULL;
639
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200640 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200641 const struct htx_blk *blk = htx_get_blk(htx, pos);
642 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
643 enum htx_blk_type type = htx_get_blk_type(blk);
644
645 if (type == HTX_BLK_REQ_SL)
646 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200647 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200648 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
649 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
650 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
651 else if (type == HTX_BLK_RES_SL)
652 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200653 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200654 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
655 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
656 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
657 }
658}
659
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200660
661/* Detect a pending read0 for a H2 connection. It happens if a read0 is pending
662 * on the connection AND if there is no more data in the demux buffer. The
663 * function returns 1 to report a read0 or 0 otherwise.
664 */
665static int h2c_read0_pending(struct h2c *h2c)
666{
667 if (conn_xprt_read0_pending(h2c->conn) && !b_data(&h2c->dbuf))
668 return 1;
669 return 0;
670}
671
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200672/* returns true if the connection is allowed to expire, false otherwise. A
673 * connection may expire when:
674 * - it has no stream
675 * - it has data in the mux buffer
676 * - it has streams in the blocked list
677 * - it has streams in the fctl list
678 * - it has streams in the send list
679 * Otherwise it means some streams are waiting in the data layer and it should
680 * not expire.
681 */
682static inline int h2c_may_expire(const struct h2c *h2c)
683{
684 return eb_is_empty(&h2c->streams_by_id) ||
685 br_data(h2c->mbuf) ||
686 !LIST_ISEMPTY(&h2c->blocked_list) ||
687 !LIST_ISEMPTY(&h2c->fctl_list) ||
Willy Tarreaud9464162020-01-10 18:25:07 +0100688 !LIST_ISEMPTY(&h2c->send_list);
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200689}
690
Olivier Houchard7a977432019-03-21 15:47:13 +0100691static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200692h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100693{
694 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
695 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
696 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
697 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200698 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100699 (conn_xprt_read0_pending(h2c->conn) ||
700 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
701 return 1;
702
703 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100704}
705
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200706/*****************************************************/
707/* functions below are for dynamic buffer management */
708/*****************************************************/
709
Willy Tarreau315d8072017-12-10 22:17:57 +0100710/* indicates whether or not the we may call the h2_recv() function to attempt
711 * to receive data into the buffer and/or demux pending data. The condition is
712 * a bit complex due to some API limits for now. The rules are the following :
713 * - if an error or a shutdown was detected on the connection and the buffer
714 * is empty, we must not attempt to receive
715 * - if the demux buf failed to be allocated, we must not try to receive and
716 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100717 * - if no flag indicates a blocking condition, we may attempt to receive,
718 * regardless of whether the demux buffer is full or not, so that only
719 * de demux part decides whether or not to block. This is needed because
720 * the connection API indeed prevents us from re-enabling receipt that is
721 * already enabled in a polled state, so we must always immediately stop
722 * as soon as the demux can't proceed so as never to hit an end of read
723 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100724 * - otherwise must may not attempt
725 */
726static inline int h2_recv_allowed(const struct h2c *h2c)
727{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200728 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100729 (h2c->st0 >= H2_CS_ERROR ||
730 h2c->conn->flags & CO_FL_ERROR ||
731 conn_xprt_read0_pending(h2c->conn)))
732 return 0;
733
734 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100735 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100736 return 1;
737
738 return 0;
739}
740
Willy Tarreau47b515a2018-12-21 16:09:41 +0100741/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200742static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100743{
744 if (!h2_recv_allowed(h2c))
745 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200746 if ((!consider_buffer || !b_data(&h2c->dbuf))
747 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100748 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200749 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100750}
751
752
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100753/* returns true if the front connection has too many conn_streams attached */
754static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200755{
Willy Tarreaua8754662018-12-23 20:43:58 +0100756 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200757}
758
Willy Tarreau44e973f2018-03-01 17:49:30 +0100759/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
760 * flags are used to figure what buffer was requested. It returns 1 if the
761 * allocation succeeds, in which case the connection is woken up, or 0 if it's
762 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200763 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100764static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200765{
766 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100767 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200768
Willy Tarreau44e973f2018-03-01 17:49:30 +0100769 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc_margin(&h2c->dbuf, 0)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200770 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200771 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200772 return 1;
773 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200774
Willy Tarreau51330962019-05-26 09:38:07 +0200775 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc_margin(br_tail(h2c->mbuf), 0)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100776 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200777
778 if (h2c->flags & H2_CF_DEM_MROOM) {
779 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200780 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200781 }
Willy Tarreau14398122017-09-22 14:26:04 +0200782 return 1;
783 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100784
785 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
786 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Olivier Houchard638b7992018-08-16 15:41:52 +0200787 b_alloc_margin(&h2s->rxbuf, 0)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100788 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200789 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100790 return 1;
791 }
792
Willy Tarreau14398122017-09-22 14:26:04 +0200793 return 0;
794}
795
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200796static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200797{
798 struct buffer *buf = NULL;
799
Willy Tarreau21046592020-02-26 10:39:36 +0100800 if (likely(!MT_LIST_ADDED(&h2c->buf_wait.list)) &&
Willy Tarreau44e973f2018-03-01 17:49:30 +0100801 unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) {
802 h2c->buf_wait.target = h2c;
803 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreau86891272020-07-10 08:22:26 +0200804 MT_LIST_ADDQ(&buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200805 }
806 return buf;
807}
808
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200809static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200810{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200811 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100812 b_free(bptr);
Willy Tarreau201840a2019-05-29 17:50:48 +0200813 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau14398122017-09-22 14:26:04 +0200814 }
815}
816
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200817static inline void h2_release_mbuf(struct h2c *h2c)
818{
819 struct buffer *buf;
820 unsigned int count = 0;
821
822 while (b_size(buf = br_head_pick(h2c->mbuf))) {
823 b_free(buf);
824 count++;
825 }
826 if (count)
Willy Tarreau201840a2019-05-29 17:50:48 +0200827 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200828}
829
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100830/* returns the number of allocatable outgoing streams for the connection taking
831 * the last_sid and the reserved ones into account.
832 */
833static inline int h2_streams_left(const struct h2c *h2c)
834{
835 int ret;
836
837 /* consider the number of outgoing streams we're allowed to create before
838 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
839 * nb_reserved is the number of streams which don't yet have an ID.
840 */
841 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
842 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
843 if (ret < 0)
844 ret = 0;
845 return ret;
846}
847
Willy Tarreau00f18a32019-01-26 12:19:01 +0100848/* returns the number of streams in use on a connection to figure if it's
849 * idle or not. We check nb_cs and not nb_streams as the caller will want
850 * to know if it was the last one after a detach().
851 */
852static int h2_used_streams(struct connection *conn)
853{
854 struct h2c *h2c = conn->ctx;
855
856 return h2c->nb_cs;
857}
858
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100859/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100860static int h2_avail_streams(struct connection *conn)
861{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100862 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100863 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100864 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100865
Willy Tarreau6afec462019-01-28 06:40:19 +0100866 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
867 * streams on the connection.
868 */
869 if (h2c->last_sid >= 0)
870 return 0;
871
Willy Tarreauc61966f2019-10-31 15:10:03 +0100872 if (h2c->st0 >= H2_CS_ERROR)
873 return 0;
874
Willy Tarreau86949782019-01-31 10:42:05 +0100875 /* note: may be negative if a SETTINGS frame changes the limit */
876 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100877
878 /* we must also consider the limit imposed by stream IDs */
879 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100880 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100881 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100882 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
883 ret1 = MIN(ret1, ret2);
884 }
885 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100886}
887
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200888
Willy Tarreau62f52692017-10-08 23:01:42 +0200889/*****************************************************************/
890/* functions below are dedicated to the mux setup and management */
891/*****************************************************************/
892
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200893/* Initialize the mux once it's attached. For outgoing connections, the context
894 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200895 * connections from the fact that the context is still NULL (even during mux
896 * upgrades). <input> is always used as Input buffer and may contain data. It is
897 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200898 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200899static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
900 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200901{
902 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100903 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200904 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200905
Christopher Fauletf81ef032019-10-04 15:19:43 +0200906 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200907
Willy Tarreaubafbe012017-11-24 17:34:44 +0100908 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200909 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200910 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200911
Christopher Faulete9b70722019-04-08 10:46:02 +0200912 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200913 h2c->flags = H2_CF_IS_BACK;
914 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
915 if (tick_isset(prx->timeout.serverfin))
916 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100917
918 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
919 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200920 } else {
921 h2c->flags = H2_CF_NONE;
922 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
923 if (tick_isset(prx->timeout.clientfin))
924 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100925
926 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
927 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200928 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100929
Willy Tarreau0b37d652018-10-03 10:33:02 +0200930 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100931 h2c->task = NULL;
Willy Tarreau3f133572017-10-31 19:21:06 +0100932 if (tick_isset(h2c->timeout)) {
933 t = task_new(tid_bit);
934 if (!t)
935 goto fail;
936
937 h2c->task = t;
938 t->process = h2_timeout_task;
939 t->context = h2c;
940 t->expire = tick_add(now_ms, h2c->timeout);
941 }
Willy Tarreauea392822017-10-31 10:02:25 +0100942
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200943 h2c->wait_event.tasklet = tasklet_new();
944 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200945 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200946 h2c->wait_event.tasklet->process = h2_io_cb;
947 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100948 h2c->wait_event.events = 0;
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200949
Willy Tarreau2bdcc702020-05-19 11:31:11 +0200950 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +0200951 if (!h2c->ddht)
952 goto fail;
953
954 /* Initialise the context. */
955 h2c->st0 = H2_CS_PREFACE;
956 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100957 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200958 h2c->max_id = -1;
959 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100960 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200961 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +0100962 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200963 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100964 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100965 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200966
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200967 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200968 h2c->dsi = -1;
969 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100970
Willy Tarreau32218eb2017-09-22 08:07:25 +0200971 h2c->last_sid = -1;
972
Willy Tarreau51330962019-05-26 09:38:07 +0200973 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +0200974 h2c->miw = 65535; /* mux initial window size */
975 h2c->mws = 65535; /* mux window size */
976 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +0200977 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200978 LIST_INIT(&h2c->send_list);
979 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200980 LIST_INIT(&h2c->blocked_list);
Willy Tarreau21046592020-02-26 10:39:36 +0100981 MT_LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200982
Christopher Fauletf81ef032019-10-04 15:19:43 +0200983 conn->ctx = h2c;
984
Willy Tarreau3f133572017-10-31 19:21:06 +0100985 if (t)
986 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +0100987
Willy Tarreau01b44822018-10-03 14:26:37 +0200988 if (h2c->flags & H2_CF_IS_BACK) {
989 /* FIXME: this is temporary, for outgoing connections we need
990 * to immediately allocate a stream until the code is modified
991 * so that the caller calls ->attach(). For now the outgoing cs
Christopher Fauletf81ef032019-10-04 15:19:43 +0200992 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +0200993 */
994 struct h2s *h2s;
995
Christopher Fauletf81ef032019-10-04 15:19:43 +0200996 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +0200997 if (!h2s)
998 goto fail_stream;
999 }
1000
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001001 HA_ATOMIC_ADD(&h2c->px_counters->open_conns, 1);
Amaury Denoyellee7b891f2020-11-03 15:04:45 +01001002 HA_ATOMIC_ADD(&h2c->px_counters->total_conns, 1);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001003
Willy Tarreau0f383582018-10-03 14:22:21 +02001004 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02001005 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001006 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001007 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +02001008 fail_stream:
1009 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +02001010 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001011 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001012 if (h2c->wait_event.tasklet)
1013 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001014 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +02001015 fail_no_h2c:
Christopher Fauletf81ef032019-10-04 15:19:43 +02001016 conn->ctx = conn_ctx; /* restore saved ctx */
1017 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001018 return -1;
1019}
1020
Willy Tarreau751f2d02018-10-05 09:35:00 +02001021/* returns the next allocatable outgoing stream ID for the H2 connection, or
1022 * -1 if no more is allocatable.
1023 */
1024static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1025{
1026 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001027
1028 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001029 id = -1;
1030 return id;
1031}
1032
Willy Tarreau2373acc2017-10-12 17:35:14 +02001033/* returns the stream associated with id <id> or NULL if not found */
1034static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1035{
1036 struct eb32_node *node;
1037
Willy Tarreau751f2d02018-10-05 09:35:00 +02001038 if (id == 0)
1039 return (struct h2s *)h2_closed_stream;
1040
Willy Tarreau2a856182017-05-16 15:20:39 +02001041 if (id > h2c->max_id)
1042 return (struct h2s *)h2_idle_stream;
1043
Willy Tarreau2373acc2017-10-12 17:35:14 +02001044 node = eb32_lookup(&h2c->streams_by_id, id);
1045 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001046 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001047
1048 return container_of(node, struct h2s, by_id);
1049}
1050
Christopher Faulet73c12072019-04-08 11:23:22 +02001051/* release function. This one should be called to free all resources allocated
1052 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001053 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001054static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001055{
William Dauchy477757c2020-08-07 22:19:23 +02001056 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001057
Willy Tarreau7838a792019-08-12 18:42:03 +02001058 TRACE_ENTER(H2_EV_H2C_END);
1059
Willy Tarreau32218eb2017-09-22 08:07:25 +02001060 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +02001061 /* The connection must be aattached to this mux to be released */
1062 if (h2c->conn && h2c->conn->ctx == h2c)
1063 conn = h2c->conn;
1064
Willy Tarreau7838a792019-08-12 18:42:03 +02001065 TRACE_DEVEL("freeing h2c", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001066 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +02001067
Willy Tarreau21046592020-02-26 10:39:36 +01001068 if (MT_LIST_ADDED(&h2c->buf_wait.list))
1069 MT_LIST_DEL(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001070
Willy Tarreau44e973f2018-03-01 17:49:30 +01001071 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +02001072 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +01001073
Willy Tarreauea392822017-10-31 10:02:25 +01001074 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +02001075 h2c->task->context = NULL;
1076 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +01001077 h2c->task = NULL;
1078 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001079 if (h2c->wait_event.tasklet)
1080 tasklet_free(h2c->wait_event.tasklet);
Christopher Faulet21d849f2019-09-18 11:07:20 +02001081 if (conn && h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001082 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Christopher Faulet21d849f2019-09-18 11:07:20 +02001083 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001084
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001085 HA_ATOMIC_SUB(&h2c->px_counters->open_conns, 1);
1086
Willy Tarreaubafbe012017-11-24 17:34:44 +01001087 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001088 }
1089
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001090 if (conn) {
1091 conn->mux = NULL;
1092 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001093 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001094
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001095 conn_stop_tracking(conn);
1096 conn_full_close(conn);
1097 if (conn->destroy_cb)
1098 conn->destroy_cb(conn);
1099 conn_free(conn);
1100 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001101
1102 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001103}
1104
1105
Willy Tarreau71681172017-10-23 14:39:06 +02001106/******************************************************/
1107/* functions below are for the H2 protocol processing */
1108/******************************************************/
1109
1110/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001111static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001112{
1113 return h2s ? h2s->id : 0;
1114}
1115
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001116/* returns the sum of the stream's own window size and the mux's initial
1117 * window, which together form the stream's effective window size.
1118 */
1119static inline int h2s_mws(const struct h2s *h2s)
1120{
1121 return h2s->sws + h2s->h2c->miw;
1122}
1123
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001124/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001125static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001126{
1127 if (h2c->msi < 0)
1128 return 0;
1129
1130 if (h2c->msi == h2s_id(h2s))
1131 return 0;
1132
1133 return 1;
1134}
1135
Willy Tarreau741d6df2017-10-17 08:00:59 +02001136/* marks an error on the connection */
Willy Tarreau1f094672017-11-20 21:27:45 +01001137static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001138{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001139 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001140 h2c->errcode = err;
1141 h2c->st0 = H2_CS_ERROR;
1142}
1143
Willy Tarreau175cebb2019-01-24 10:02:24 +01001144/* marks an error on the stream. It may also update an already closed stream
1145 * (e.g. to report an error after an RST was received).
1146 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001147static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001148{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001149 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001150 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001151 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001152 if (h2s->st < H2_SS_ERROR)
1153 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +01001154 if (h2s->cs)
1155 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001156 }
1157}
1158
Willy Tarreau7e094452018-12-19 18:08:52 +01001159/* attempt to notify the data layer of recv availability */
1160static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1161{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001162 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001163 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001164 tasklet_wakeup(h2s->subs->tasklet);
1165 h2s->subs->events &= ~SUB_RETRY_RECV;
1166 if (!h2s->subs->events)
1167 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001168 }
1169}
1170
1171/* attempt to notify the data layer of send availability */
1172static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1173{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001174 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001175 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001176 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001177 tasklet_wakeup(h2s->subs->tasklet);
1178 h2s->subs->events &= ~SUB_RETRY_SEND;
1179 if (!h2s->subs->events)
1180 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001181 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001182 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1183 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1184 tasklet_wakeup(h2s->shut_tl);
1185 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001186}
1187
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001188/* alerts the data layer, trying to wake it up by all means, following
1189 * this sequence :
1190 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1191 * - if its subscribed to send, then it's woken up for send
1192 * - if it was subscribed to neither, its ->wake() callback is called
1193 * It is safe to call this function with a closed stream which doesn't have a
1194 * conn_stream anymore.
1195 */
1196static void __maybe_unused h2s_alert(struct h2s *h2s)
1197{
Willy Tarreau7838a792019-08-12 18:42:03 +02001198 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1199
Willy Tarreauf96508a2020-01-10 11:12:48 +01001200 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001201 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001202 h2s_notify_recv(h2s);
1203 h2s_notify_send(h2s);
1204 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001205 else if (h2s->cs && h2s->cs->data_cb->wake != NULL) {
1206 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001207 h2s->cs->data_cb->wake(h2s->cs);
Willy Tarreau7838a792019-08-12 18:42:03 +02001208 }
1209
1210 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001211}
1212
Willy Tarreaue4820742017-07-27 13:37:23 +02001213/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001214static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001215{
1216 uint8_t *out = frame;
1217
1218 *out = len >> 16;
1219 write_n16(out + 1, len);
1220}
1221
Willy Tarreau54c15062017-10-10 17:10:03 +02001222/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1223 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1224 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001225 * available in the buffer's input prior to calling this function. The buffer
1226 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001227 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001228static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001229 const struct buffer *b, int o)
1230{
Willy Tarreau591d4452018-06-15 17:21:00 +02001231 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 +02001232}
1233
Willy Tarreau1f094672017-11-20 21:27:45 +01001234static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001235{
Willy Tarreau591d4452018-06-15 17:21:00 +02001236 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001237}
1238
Willy Tarreau1f094672017-11-20 21:27:45 +01001239static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001240{
Willy Tarreau591d4452018-06-15 17:21:00 +02001241 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001242}
1243
Willy Tarreau1f094672017-11-20 21:27:45 +01001244static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001245{
Willy Tarreau591d4452018-06-15 17:21:00 +02001246 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001247}
1248
1249
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001250/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1251 * The algorithm is not obvious. It turns out that H2 headers are neither
1252 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1253 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001254 *
1255 * b0 b1 b2 b3 b4 b5..b8
1256 * +----------+---------+--------+----+----+----------------------+
1257 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1258 * +----------+---------+--------+----+----+----------------------+
1259 *
1260 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1261 * we get the sid properly aligned and ordered, and 16 bits of len properly
1262 * ordered as well. The type and flags can be extracted using bit shifts from
1263 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001264 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1265 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001266 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001267static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001268{
1269 uint64_t w;
1270
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001271 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001272 return 0;
1273
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001274 w = h2_get_n64(b, o + 1);
1275 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001276 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1277 h->ff = w >> 32;
1278 h->ft = w >> 40;
1279 h->len += w >> 48;
1280 return 1;
1281}
1282
1283/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1284 * h2_peek_frame_hdr() above.
1285 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001286static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001287{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001288 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001289}
1290
1291/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001292static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001293{
1294 int ret;
1295
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001296 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001297 if (ret > 0)
1298 h2_skip_frame_hdr(b);
1299 return ret;
1300}
1301
Willy Tarreaucb985a42019-10-07 16:56:34 +02001302
1303/* try to fragment the headers frame present at the beginning of buffer <b>,
1304 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1305 * success. Typical causes of failure include a buffer not large enough to
1306 * add extra frame headers. The existing frame size is read in the current
1307 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1308 * and its length will be adjusted. The stream ID for continuation frames will
1309 * be copied from the initial frame's.
1310 */
1311static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1312{
1313 size_t remain = b->data - 9;
1314 int extra_frames = (remain - 1) / mfs;
1315 size_t fsize;
1316 char *fptr;
1317 int frame;
1318
1319 if (b->data <= mfs + 9)
1320 return 1;
1321
1322 /* Too large a frame, we need to fragment it using CONTINUATION
1323 * frames. We start from the end and move tails as needed.
1324 */
1325 if (b->data + extra_frames * 9 > b->size)
1326 return 0;
1327
1328 for (frame = extra_frames; frame; frame--) {
1329 fsize = ((remain - 1) % mfs) + 1;
1330 remain -= fsize;
1331
1332 /* move data */
1333 fptr = b->area + 9 + remain + (frame - 1) * 9;
1334 memmove(fptr + 9, b->area + 9 + remain, fsize);
1335 b->data += 9;
1336
1337 /* write new frame header */
1338 h2_set_frame_size(fptr, fsize);
1339 fptr[3] = H2_FT_CONTINUATION;
1340 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1341 write_n32(fptr + 5, read_n32(b->area + 5));
1342 }
1343
1344 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1345 h2_set_frame_size(b->area, remain);
1346 return 1;
1347}
1348
1349
Willy Tarreau00dd0782018-03-01 16:31:34 +01001350/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1351 * its connection if the stream was not yet closed. Please use this exclusively
1352 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001353 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001354static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001355{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001356 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001357 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001358 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001359 if (!h2s->id)
1360 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +01001361 if (h2s->cs) {
Willy Tarreaua27db382019-03-25 18:13:16 +01001362 if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf))
1363 h2s_notify_recv(h2s);
1364 }
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001365 HA_ATOMIC_SUB(&h2s->h2c->px_counters->open_streams, 1);
1366
Willy Tarreau7838a792019-08-12 18:42:03 +02001367 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001368 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001369 h2s->st = H2_SS_CLOSED;
1370}
1371
Willy Tarreau71049cc2018-03-28 13:56:39 +02001372/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001373/* h2s_destroy should only ever be called by the thread that owns the stream,
1374 * that means that a tasklet should be used if we want to destroy the h2s
1375 * from another thread
1376 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001377static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001378{
Willy Tarreau7838a792019-08-12 18:42:03 +02001379 struct connection *conn = h2s->h2c->conn;
1380
1381 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1382
Willy Tarreau0a10de62018-03-01 16:27:53 +01001383 h2s_close(h2s);
1384 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001385 if (b_size(&h2s->rxbuf)) {
1386 b_free(&h2s->rxbuf);
1387 offer_buffers(NULL, tasks_run_queue);
1388 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001389
1390 if (h2s->subs)
1391 h2s->subs->events = 0;
1392
Joseph Herlantd77575d2018-11-25 10:54:45 -08001393 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001394 * reference left would be in the h2c send_list/fctl_list, and if
1395 * we're in it, we're getting out anyway
1396 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001397 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001398
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001399 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001400 tasklet_free(h2s->shut_tl);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001401 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001402
1403 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001404}
1405
Willy Tarreaua8e49542018-10-03 18:53:55 +02001406/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1407 * stream tree. In case of error, nothing is added and NULL is returned. The
1408 * causes of errors can be any failed memory allocation. The caller is
1409 * responsible for checking if the connection may support an extra stream
1410 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001411 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001412static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001413{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001414 struct h2s *h2s;
1415
Willy Tarreau7838a792019-08-12 18:42:03 +02001416 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1417
Willy Tarreaubafbe012017-11-24 17:34:44 +01001418 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001419 if (!h2s)
1420 goto out;
1421
Willy Tarreau5723f292020-01-10 15:16:57 +01001422 h2s->shut_tl = tasklet_new();
1423 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001424 pool_free(pool_head_h2s, h2s);
1425 goto out;
1426 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001427 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001428 h2s->shut_tl->process = h2_deferred_shut;
1429 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001430 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001431 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001432 h2s->cs = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001433 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001434 h2s->flags = H2_SF_NONE;
1435 h2s->errcode = H2_ERR_NO_ERROR;
1436 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001437 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001438 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001439 h2s->rxbuf = BUF_NULL;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001440
1441 if (h2c->flags & H2_CF_IS_BACK) {
1442 h1m_init_req(&h2s->h1m);
1443 h2s->h1m.err_pos = -1; // don't care about errors on the request path
1444 h2s->h1m.flags |= H1_MF_TOLOWER;
1445 } else {
1446 h1m_init_res(&h2s->h1m);
1447 h2s->h1m.err_pos = -1; // don't care about errors on the response path
1448 h2s->h1m.flags |= H1_MF_TOLOWER;
1449 }
1450
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001451 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001452 if (id > 0)
1453 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001454 else
1455 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001456
1457 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001458 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001459 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001460
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001461 HA_ATOMIC_ADD(&h2c->px_counters->open_streams, 1);
Amaury Denoyellee7b891f2020-11-03 15:04:45 +01001462 HA_ATOMIC_ADD(&h2c->px_counters->total_streams, 1);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001463
Willy Tarreau7838a792019-08-12 18:42:03 +02001464 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001465 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001466 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001467 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001468 return NULL;
1469}
1470
1471/* creates a new stream <id> on the h2c connection and returns it, or NULL in
1472 * case of memory allocation error.
1473 */
1474static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id)
1475{
1476 struct session *sess = h2c->conn->owner;
1477 struct conn_stream *cs;
1478 struct h2s *h2s;
1479
Willy Tarreau7838a792019-08-12 18:42:03 +02001480 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1481
Willy Tarreaua8e49542018-10-03 18:53:55 +02001482 if (h2c->nb_streams >= h2_settings_max_concurrent_streams)
1483 goto out;
1484
1485 h2s = h2s_new(h2c, id);
1486 if (!h2s)
1487 goto out;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001488
Christopher Faulet236c93b2020-07-02 09:19:54 +02001489 cs = cs_new(h2c->conn, h2c->conn->target);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001490 if (!cs)
1491 goto out_close;
1492
Olivier Houchard746fb772018-12-15 19:42:00 +01001493 cs->flags |= CS_FL_NOT_FIRST;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001494 h2s->cs = cs;
1495 cs->ctx = h2s;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001496 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001497
1498 if (stream_create_from_cs(cs) < 0)
1499 goto out_free_cs;
1500
Willy Tarreau590a0512018-09-05 11:56:48 +02001501 /* We want the accept date presented to the next stream to be the one
1502 * we have now, the handshake time to be null (since the next stream
1503 * is not delayed by a handshake), and the idle time to count since
1504 * right now.
1505 */
1506 sess->accept_date = date;
1507 sess->tv_accept = now;
1508 sess->t_handshake = 0;
1509
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001510 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001511 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001512 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001513 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001514 return h2s;
1515
1516 out_free_cs:
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001517 h2c->nb_cs--;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001518 cs_free(cs);
Olivier Houchard58d87f32019-05-29 16:44:17 +02001519 h2s->cs = NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001520 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001521 h2s_destroy(h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001522 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001523 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001524 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001525 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001526}
1527
Willy Tarreau751f2d02018-10-05 09:35:00 +02001528/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1529 * and returns it, or NULL in case of memory allocation error or if the highest
1530 * possible stream ID was reached.
1531 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001532static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001533{
1534 struct h2s *h2s = NULL;
1535
Willy Tarreau7838a792019-08-12 18:42:03 +02001536 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1537
Willy Tarreau86949782019-01-31 10:42:05 +01001538 if (h2c->nb_streams >= h2c->streams_limit)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001539 goto out;
1540
Willy Tarreaua80dca82019-01-24 17:08:28 +01001541 if (h2_streams_left(h2c) < 1)
1542 goto out;
1543
Willy Tarreau751f2d02018-10-05 09:35:00 +02001544 /* Defer choosing the ID until we send the first message to create the stream */
1545 h2s = h2s_new(h2c, 0);
1546 if (!h2s)
1547 goto out;
1548
1549 h2s->cs = cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001550 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001551 cs->ctx = h2s;
1552 h2c->nb_cs++;
1553
Willy Tarreau751f2d02018-10-05 09:35:00 +02001554 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001555 if (likely(h2s))
1556 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1557 else
1558 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001559 return h2s;
1560}
1561
Willy Tarreaube5b7152017-09-25 16:25:39 +02001562/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1563 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1564 * the various settings codes.
1565 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001566static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001567{
1568 struct buffer *res;
1569 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001570 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001571 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001572 int ret = 0;
1573
1574 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001575
1576 if (h2c_mux_busy(h2c, NULL)) {
1577 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001578 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001579 }
1580
Willy Tarreaube5b7152017-09-25 16:25:39 +02001581 chunk_init(&buf, buf_data, sizeof(buf_data));
1582 chunk_memcpy(&buf,
1583 "\x00\x00\x00" /* length : 0 for now */
1584 "\x04\x00" /* type : 4 (settings), flags : 0 */
1585 "\x00\x00\x00\x00", /* stream ID : 0 */
1586 9);
1587
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001588 if (h2c->flags & H2_CF_IS_BACK) {
1589 /* send settings_enable_push=0 */
1590 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1591 }
1592
Willy Tarreaube5b7152017-09-25 16:25:39 +02001593 if (h2_settings_header_table_size != 4096) {
1594 char str[6] = "\x00\x01"; /* header_table_size */
1595
1596 write_n32(str + 2, h2_settings_header_table_size);
1597 chunk_memcat(&buf, str, 6);
1598 }
1599
1600 if (h2_settings_initial_window_size != 65535) {
1601 char str[6] = "\x00\x04"; /* initial_window_size */
1602
1603 write_n32(str + 2, h2_settings_initial_window_size);
1604 chunk_memcat(&buf, str, 6);
1605 }
1606
1607 if (h2_settings_max_concurrent_streams != 0) {
1608 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1609
1610 /* Note: 0 means "unlimited" for haproxy's config but not for
1611 * the protocol, so never send this value!
1612 */
1613 write_n32(str + 2, h2_settings_max_concurrent_streams);
1614 chunk_memcat(&buf, str, 6);
1615 }
1616
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001617 mfs = h2_settings_max_frame_size;
1618 if (mfs > global.tune.bufsize)
1619 mfs = global.tune.bufsize;
1620
1621 if (!mfs)
1622 mfs = global.tune.bufsize;
1623
1624 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001625 char str[6] = "\x00\x05"; /* max_frame_size */
1626
1627 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1628 * match bufsize - rewrite size, but at the moment it seems
1629 * that clients don't take care of it.
1630 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001631 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001632 chunk_memcat(&buf, str, 6);
1633 }
1634
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001635 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001636
1637 res = br_tail(h2c->mbuf);
1638 retry:
1639 if (!h2_get_buf(h2c, res)) {
1640 h2c->flags |= H2_CF_MUX_MALLOC;
1641 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001642 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001643 }
1644
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001645 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001646 if (unlikely(ret <= 0)) {
1647 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001648 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1649 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001650 h2c->flags |= H2_CF_MUX_MFULL;
1651 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001652 }
1653 else {
1654 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001655 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001656 }
1657 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001658 out:
1659 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001660 return ret;
1661}
1662
Willy Tarreau52eed752017-09-22 15:05:09 +02001663/* Try to receive a connection preface, then upon success try to send our
1664 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1665 * missing data. It may return an error in h2c.
1666 */
1667static int h2c_frt_recv_preface(struct h2c *h2c)
1668{
1669 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001670 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001671
Willy Tarreau7838a792019-08-12 18:42:03 +02001672 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1673
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001674 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001675
1676 if (unlikely(ret1 <= 0)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02001677 if (ret1 < 0)
1678 sess_log(h2c->conn->owner);
1679
Amaury Denoyellea8879232020-10-27 17:16:03 +01001680 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn)) {
Willy Tarreau52eed752017-09-22 15:05:09 +02001681 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001682 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
1683 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001684 ret2 = 0;
1685 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001686 }
1687
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001688 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001689 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001690 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001691 out:
1692 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001693 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001694}
1695
Willy Tarreau01b44822018-10-03 14:26:37 +02001696/* Try to send a connection preface, then upon success try to send our
1697 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1698 * missing data. It may return an error in h2c.
1699 */
1700static int h2c_bck_send_preface(struct h2c *h2c)
1701{
1702 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001703 int ret = 0;
1704
1705 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001706
1707 if (h2c_mux_busy(h2c, NULL)) {
1708 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001709 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001710 }
1711
Willy Tarreaubcc45952019-05-26 10:05:50 +02001712 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001713 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001714 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001715 h2c->flags |= H2_CF_MUX_MALLOC;
1716 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001717 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001718 }
1719
1720 if (!b_data(res)) {
1721 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001722 ret = b_istput(res, ist(H2_CONN_PREFACE));
1723 if (unlikely(ret <= 0)) {
1724 if (!ret) {
1725 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1726 goto retry;
1727 h2c->flags |= H2_CF_MUX_MFULL;
1728 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001729 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001730 }
1731 else {
1732 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001733 ret = 0;
1734 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001735 }
1736 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001737 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001738 ret = h2c_send_settings(h2c);
1739 out:
1740 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1741 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001742}
1743
Willy Tarreau081d4722017-05-16 21:51:05 +02001744/* try to send a GOAWAY frame on the connection to report an error or a graceful
1745 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1746 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1747 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1748 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1749 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1750 * on unrecoverable failure. It will not attempt to send one again in this last
1751 * case so that it is safe to use h2c_error() to report such errors.
1752 */
1753static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1754{
1755 struct buffer *res;
1756 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001757 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001758
Willy Tarreau7838a792019-08-12 18:42:03 +02001759 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1760
1761 if (h2c->flags & H2_CF_GOAWAY_FAILED) {
1762 ret = 1; // claim that it worked
1763 goto out;
1764 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001765
1766 if (h2c_mux_busy(h2c, h2s)) {
1767 if (h2s)
1768 h2s->flags |= H2_SF_BLK_MBUSY;
1769 else
1770 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001771 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001772 }
1773
Willy Tarreau9c218e72019-05-26 10:08:28 +02001774 /* len: 8, type: 7, flags: none, sid: 0 */
1775 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1776
1777 if (h2c->last_sid < 0)
1778 h2c->last_sid = h2c->max_id;
1779
1780 write_n32(str + 9, h2c->last_sid);
1781 write_n32(str + 13, h2c->errcode);
1782
Willy Tarreaubcc45952019-05-26 10:05:50 +02001783 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001784 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001785 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001786 h2c->flags |= H2_CF_MUX_MALLOC;
1787 if (h2s)
1788 h2s->flags |= H2_SF_BLK_MROOM;
1789 else
1790 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001791 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001792 }
1793
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001794 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001795 if (unlikely(ret <= 0)) {
1796 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001797 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1798 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001799 h2c->flags |= H2_CF_MUX_MFULL;
1800 if (h2s)
1801 h2s->flags |= H2_SF_BLK_MROOM;
1802 else
1803 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001804 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001805 }
1806 else {
1807 /* we cannot report this error using GOAWAY, so we mark
1808 * it and claim a success.
1809 */
1810 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1811 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001812 ret = 1;
1813 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001814 }
1815 }
1816 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02001817 out:
Amaury Denoyellea8879232020-10-27 17:16:03 +01001818 HA_ATOMIC_ADD(&h2c->px_counters->goaway_resp, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001819 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001820 return ret;
1821}
1822
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001823/* Try to send an RST_STREAM frame on the connection for the indicated stream
1824 * during mux operations. This stream must be valid and cannot be closed
1825 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1826 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1827 * not yet.
1828 *
1829 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1830 * to write the message, it subscribes the stream to future notifications.
1831 */
1832static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1833{
1834 struct buffer *res;
1835 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001836 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001837
Willy Tarreau7838a792019-08-12 18:42:03 +02001838 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1839
1840 if (!h2s || h2s->st == H2_SS_CLOSED) {
1841 ret = 1;
1842 goto out;
1843 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001844
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001845 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1846 * RST_STREAM in response to a RST_STREAM frame.
1847 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001848 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001849 ret = 1;
1850 goto ignore;
1851 }
1852
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001853 if (h2c_mux_busy(h2c, h2s)) {
1854 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001855 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001856 }
1857
Willy Tarreau9c218e72019-05-26 10:08:28 +02001858 /* len: 4, type: 3, flags: none */
1859 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1860 write_n32(str + 5, h2s->id);
1861 write_n32(str + 9, h2s->errcode);
1862
Willy Tarreaubcc45952019-05-26 10:05:50 +02001863 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001864 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001865 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001866 h2c->flags |= H2_CF_MUX_MALLOC;
1867 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001868 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001869 }
1870
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001871 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001872 if (unlikely(ret <= 0)) {
1873 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001874 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1875 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001876 h2c->flags |= H2_CF_MUX_MFULL;
1877 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001878 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001879 }
1880 else {
1881 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001882 ret = 0;
1883 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001884 }
1885 }
1886
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001887 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001888 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001889 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001890 out:
1891 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001892 return ret;
1893}
1894
1895/* Try to send an RST_STREAM frame on the connection for the stream being
1896 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001897 * error code, even if the stream is one of the dummy ones, and will update
1898 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001899 *
1900 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1901 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001902 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001903 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001904 */
1905static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1906{
1907 struct buffer *res;
1908 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001909 int ret = 0;
1910
1911 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001912
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001913 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1914 * RST_STREAM in response to a RST_STREAM frame.
1915 */
1916 if (h2c->dft == H2_FT_RST_STREAM) {
1917 ret = 1;
1918 goto ignore;
1919 }
1920
Willy Tarreau27a84c92017-10-17 08:10:17 +02001921 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001922 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001923 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001924 }
1925
Willy Tarreau9c218e72019-05-26 10:08:28 +02001926 /* len: 4, type: 3, flags: none */
1927 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1928
1929 write_n32(str + 5, h2c->dsi);
1930 write_n32(str + 9, h2s->errcode);
1931
Willy Tarreaubcc45952019-05-26 10:05:50 +02001932 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001933 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001934 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001935 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001936 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001937 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001938 }
1939
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001940 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02001941 if (unlikely(ret <= 0)) {
1942 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001943 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1944 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001945 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001946 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001947 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001948 }
1949 else {
1950 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001951 ret = 0;
1952 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001953 }
1954 }
1955
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001956 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02001957 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001958 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001959 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001960 }
1961
Willy Tarreau7838a792019-08-12 18:42:03 +02001962 out:
Amaury Denoyellea8879232020-10-27 17:16:03 +01001963 HA_ATOMIC_ADD(&h2c->px_counters->rst_stream_resp, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001964 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001965 return ret;
1966}
1967
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001968/* try to send an empty DATA frame with the ES flag set to notify about the
1969 * end of stream and match a shutdown(write). If an ES was already sent as
1970 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
1971 * on success or zero if nothing was done. In case of lack of room to write the
1972 * message, it subscribes the requesting stream to future notifications.
1973 */
1974static int h2_send_empty_data_es(struct h2s *h2s)
1975{
1976 struct h2c *h2c = h2s->h2c;
1977 struct buffer *res;
1978 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02001979 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001980
Willy Tarreau7838a792019-08-12 18:42:03 +02001981 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
1982
1983 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
1984 ret = 1;
1985 goto out;
1986 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001987
1988 if (h2c_mux_busy(h2c, h2s)) {
1989 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001990 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001991 }
1992
Willy Tarreau9c218e72019-05-26 10:08:28 +02001993 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
1994 memcpy(str, "\x00\x00\x00\x00\x01", 5);
1995 write_n32(str + 5, h2s->id);
1996
Willy Tarreaubcc45952019-05-26 10:05:50 +02001997 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001998 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001999 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002000 h2c->flags |= H2_CF_MUX_MALLOC;
2001 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002002 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002003 }
2004
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002005 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002006 if (likely(ret > 0)) {
2007 h2s->flags |= H2_SF_ES_SENT;
2008 }
2009 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002010 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2011 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002012 h2c->flags |= H2_CF_MUX_MFULL;
2013 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002014 }
2015 else {
2016 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002017 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002018 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002019 out:
2020 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002021 return ret;
2022}
2023
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002024/* wake a specific stream and assign its conn_stream some CS_FL_* flags among
Willy Tarreau99ad1b32019-05-14 11:46:28 +02002025 * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002026 * is automatically updated accordingly. If the stream is orphaned, it is
2027 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002028 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002029static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002030{
Willy Tarreau7838a792019-08-12 18:42:03 +02002031 struct h2c *h2c = h2s->h2c;
2032
2033 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2034
Christopher Fauletf02ca002019-03-07 16:21:34 +01002035 if (!h2s->cs) {
2036 /* this stream was already orphaned */
2037 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002038 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002039 return;
2040 }
2041
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002042 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002043 if (h2s->st == H2_SS_OPEN)
2044 h2s->st = H2_SS_HREM;
2045 else if (h2s->st == H2_SS_HLOC)
2046 h2s_close(h2s);
2047 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002048
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002049 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
2050 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
2051 h2s->cs->flags |= CS_FL_ERR_PENDING;
2052 if (h2s->cs->flags & CS_FL_EOS)
2053 h2s->cs->flags |= CS_FL_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02002054
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002055 if (h2s->st < H2_SS_ERROR)
2056 h2s->st = H2_SS_ERROR;
2057 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002058
2059 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002060 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002061}
2062
2063/* wake the streams attached to the connection, whose id is greater than <last>
2064 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002065 */
Willy Tarreau23482912019-05-07 15:23:14 +02002066static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002067{
2068 struct eb32_node *node;
2069 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002070
Willy Tarreau7838a792019-08-12 18:42:03 +02002071 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2072
Christopher Fauletf02ca002019-03-07 16:21:34 +01002073 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002074 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2075 while (node) {
2076 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002077 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002078 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002079 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002080
Christopher Fauletf02ca002019-03-07 16:21:34 +01002081 /* Wake all streams with unassigned ID (ID == 0) */
2082 node = eb32_lookup(&h2c->streams_by_id, 0);
2083 while (node) {
2084 h2s = container_of(node, struct h2s, by_id);
2085 if (h2s->id > 0)
2086 break;
2087 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002088 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002089 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002090
2091 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002092}
2093
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002094/* Wake up all blocked streams whose window size has become positive after the
2095 * mux's initial window was adjusted. This should be done after having processed
2096 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002097 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002098static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002099{
2100 struct h2s *h2s;
2101 struct eb32_node *node;
2102
Willy Tarreau7838a792019-08-12 18:42:03 +02002103 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2104
Willy Tarreau3421aba2017-07-27 15:41:03 +02002105 node = eb32_first(&h2c->streams_by_id);
2106 while (node) {
2107 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002108 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002109 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002110 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002111 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2112 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002113 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002114 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002115 node = eb32_next(node);
2116 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002117
2118 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002119}
2120
2121/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2122 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002123 * return an error in h2c. The caller must have already verified frame length
2124 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002125 */
2126static int h2c_handle_settings(struct h2c *h2c)
2127{
2128 unsigned int offset;
2129 int error;
2130
Willy Tarreau7838a792019-08-12 18:42:03 +02002131 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2132
Willy Tarreau3421aba2017-07-27 15:41:03 +02002133 if (h2c->dff & H2_F_SETTINGS_ACK) {
2134 if (h2c->dfl) {
2135 error = H2_ERR_FRAME_SIZE_ERROR;
2136 goto fail;
2137 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002138 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002139 }
2140
Willy Tarreau3421aba2017-07-27 15:41:03 +02002141 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002142 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002143 goto out0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002144
2145 /* parse the frame */
2146 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002147 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2148 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002149
2150 switch (type) {
2151 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2152 /* we need to update all existing streams with the
2153 * difference from the previous iws.
2154 */
2155 if (arg < 0) { // RFC7540#6.5.2
2156 error = H2_ERR_FLOW_CONTROL_ERROR;
2157 goto fail;
2158 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002159 h2c->miw = arg;
2160 break;
2161 case H2_SETTINGS_MAX_FRAME_SIZE:
2162 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
2163 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002164 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002165 goto fail;
2166 }
2167 h2c->mfs = arg;
2168 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002169 case H2_SETTINGS_ENABLE_PUSH:
2170 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
2171 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002172 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002173 goto fail;
2174 }
2175 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002176 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2177 if (h2c->flags & H2_CF_IS_BACK) {
2178 /* the limit is only for the backend; for the frontend it is our limit */
2179 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2180 arg = h2_settings_max_concurrent_streams;
2181 h2c->streams_limit = arg;
2182 }
2183 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002184 }
2185 }
2186
2187 /* need to ACK this frame now */
2188 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002189 done:
2190 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002191 return 1;
2192 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002193 if (!(h2c->flags & H2_CF_IS_BACK))
2194 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002195 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002196 out0:
2197 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 +02002198 return 0;
2199}
2200
2201/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2202 * success or one of the h2_status values.
2203 */
2204static int h2c_ack_settings(struct h2c *h2c)
2205{
2206 struct buffer *res;
2207 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002208 int ret = 0;
2209
2210 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002211
2212 if (h2c_mux_busy(h2c, NULL)) {
2213 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002214 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002215 }
2216
Willy Tarreau9c218e72019-05-26 10:08:28 +02002217 memcpy(str,
2218 "\x00\x00\x00" /* length : 0 (no data) */
2219 "\x04" "\x01" /* type : 4, flags : ACK */
2220 "\x00\x00\x00\x00" /* stream ID */, 9);
2221
Willy Tarreaubcc45952019-05-26 10:05:50 +02002222 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002223 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002224 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002225 h2c->flags |= H2_CF_MUX_MALLOC;
2226 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002227 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002228 }
2229
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002230 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002231 if (unlikely(ret <= 0)) {
2232 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002233 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2234 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002235 h2c->flags |= H2_CF_MUX_MFULL;
2236 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002237 }
2238 else {
2239 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002240 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002241 }
2242 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002243 out:
2244 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002245 return ret;
2246}
2247
Willy Tarreaucf68c782017-10-10 17:11:41 +02002248/* processes a PING frame and schedules an ACK if needed. The caller must pass
2249 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002250 * missing data. The caller must have already verified frame length
2251 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002252 */
2253static int h2c_handle_ping(struct h2c *h2c)
2254{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002255 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002256 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002257 h2c->st0 = H2_CS_FRAME_A;
2258 return 1;
2259}
2260
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002261/* Try to send a window update for stream id <sid> and value <increment>.
2262 * Returns > 0 on success or zero on missing room or failure. It may return an
2263 * error in h2c.
2264 */
2265static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2266{
2267 struct buffer *res;
2268 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002269 int ret = 0;
2270
2271 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002272
2273 if (h2c_mux_busy(h2c, NULL)) {
2274 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002275 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002276 }
2277
Willy Tarreau9c218e72019-05-26 10:08:28 +02002278 /* length: 4, type: 8, flags: none */
2279 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2280 write_n32(str + 5, sid);
2281 write_n32(str + 9, increment);
2282
Willy Tarreaubcc45952019-05-26 10:05:50 +02002283 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002284 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002285 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002286 h2c->flags |= H2_CF_MUX_MALLOC;
2287 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002288 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002289 }
2290
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002291 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002292 if (unlikely(ret <= 0)) {
2293 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002294 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2295 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002296 h2c->flags |= H2_CF_MUX_MFULL;
2297 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002298 }
2299 else {
2300 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002301 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002302 }
2303 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002304 out:
2305 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002306 return ret;
2307}
2308
2309/* try to send pending window update for the connection. It's safe to call it
2310 * with no pending updates. Returns > 0 on success or zero on missing room or
2311 * failure. It may return an error in h2c.
2312 */
2313static int h2c_send_conn_wu(struct h2c *h2c)
2314{
2315 int ret = 1;
2316
Willy Tarreau7838a792019-08-12 18:42:03 +02002317 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2318
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002319 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002320 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002321
Willy Tarreau97aaa672018-12-23 09:49:04 +01002322 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2323 /* increase the advertised connection window to 2G on
2324 * first update.
2325 */
2326 h2c->flags |= H2_CF_WINDOW_OPENED;
2327 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2328 }
2329
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002330 /* send WU for the connection */
2331 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2332 if (ret > 0)
2333 h2c->rcvd_c = 0;
2334
Willy Tarreau7838a792019-08-12 18:42:03 +02002335 out:
2336 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002337 return ret;
2338}
2339
2340/* try to send pending window update for the current dmux stream. It's safe to
2341 * call it with no pending updates. Returns > 0 on success or zero on missing
2342 * room or failure. It may return an error in h2c.
2343 */
2344static int h2c_send_strm_wu(struct h2c *h2c)
2345{
2346 int ret = 1;
2347
Willy Tarreau7838a792019-08-12 18:42:03 +02002348 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2349
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002350 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002351 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002352
2353 /* send WU for the stream */
2354 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2355 if (ret > 0)
2356 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002357 out:
2358 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002359 return ret;
2360}
2361
Willy Tarreaucf68c782017-10-10 17:11:41 +02002362/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2363 * success, 0 on missing data or one of the h2_status values.
2364 */
2365static int h2c_ack_ping(struct h2c *h2c)
2366{
2367 struct buffer *res;
2368 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002369 int ret = 0;
2370
2371 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002372
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002373 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002374 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002375
2376 if (h2c_mux_busy(h2c, NULL)) {
2377 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002378 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002379 }
2380
Willy Tarreaucf68c782017-10-10 17:11:41 +02002381 memcpy(str,
2382 "\x00\x00\x08" /* length : 8 (same payload) */
2383 "\x06" "\x01" /* type : 6, flags : ACK */
2384 "\x00\x00\x00\x00" /* stream ID */, 9);
2385
2386 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002387 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002388
Willy Tarreau9c218e72019-05-26 10:08:28 +02002389 res = br_tail(h2c->mbuf);
2390 retry:
2391 if (!h2_get_buf(h2c, res)) {
2392 h2c->flags |= H2_CF_MUX_MALLOC;
2393 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002394 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002395 }
2396
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002397 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002398 if (unlikely(ret <= 0)) {
2399 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002400 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2401 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002402 h2c->flags |= H2_CF_MUX_MFULL;
2403 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002404 }
2405 else {
2406 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002407 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002408 }
2409 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002410 out:
2411 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002412 return ret;
2413}
2414
Willy Tarreau26f95952017-07-27 17:18:30 +02002415/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2416 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002417 * h2c or h2s. The caller must have already verified frame length and stream ID
2418 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002419 */
2420static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2421{
2422 int32_t inc;
2423 int error;
2424
Willy Tarreau7838a792019-08-12 18:42:03 +02002425 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2426
Willy Tarreau26f95952017-07-27 17:18:30 +02002427 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002428 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002429 goto out0;
Willy Tarreau26f95952017-07-27 17:18:30 +02002430
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002431 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002432
2433 if (h2c->dsi != 0) {
2434 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002435
2436 /* it's not an error to receive WU on a closed stream */
2437 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002438 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002439
2440 if (!inc) {
2441 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002442 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau26f95952017-07-27 17:18:30 +02002443 goto strm_err;
2444 }
2445
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002446 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002447 error = H2_ERR_FLOW_CONTROL_ERROR;
2448 goto strm_err;
2449 }
2450
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002451 h2s->sws += inc;
2452 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002453 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002454 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002455 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2456 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Olivier Houcharddddfe312018-10-10 18:51:00 +02002457 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002458 }
2459 }
2460 else {
2461 /* connection window update */
2462 if (!inc) {
2463 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002464 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau26f95952017-07-27 17:18:30 +02002465 goto conn_err;
2466 }
2467
2468 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2469 error = H2_ERR_FLOW_CONTROL_ERROR;
2470 goto conn_err;
2471 }
2472
2473 h2c->mws += inc;
2474 }
2475
Willy Tarreau7838a792019-08-12 18:42:03 +02002476 done:
2477 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002478 return 1;
2479
2480 conn_err:
2481 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002482 out0:
2483 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 +02002484 return 0;
2485
2486 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002487 h2s_error(h2s, error);
2488 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002489 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002490 return 0;
2491}
2492
Willy Tarreaue96b0922017-10-30 00:28:29 +01002493/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002494 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2495 * have already verified frame length and stream ID validity. Described in
2496 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002497 */
2498static int h2c_handle_goaway(struct h2c *h2c)
2499{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002500 int last;
2501
Willy Tarreau7838a792019-08-12 18:42:03 +02002502 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002503 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002504 if (b_data(&h2c->dbuf) < h2c->dfl) {
2505 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002506 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002507 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002508
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002509 last = h2_get_n32(&h2c->dbuf, 0);
2510 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002511 if (h2c->last_sid < 0)
2512 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002513 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002514 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002515 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002516}
2517
Willy Tarreau92153fc2017-12-03 19:46:19 +01002518/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002519 * invalid. Returns > 0 on success or zero on missing data. It may return an
2520 * error in h2c. The caller must have already verified frame length and stream
2521 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002522 */
2523static int h2c_handle_priority(struct h2c *h2c)
2524{
Willy Tarreau7838a792019-08-12 18:42:03 +02002525 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2526
Willy Tarreau92153fc2017-12-03 19:46:19 +01002527 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002528 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002529 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002530 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002531 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002532
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002533 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002534 /* 7540#5.3 : can't depend on itself */
Willy Tarreaub860c732019-01-30 15:39:55 +01002535 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Amaury Denoyellea8879232020-10-27 17:16:03 +01002536 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02002537 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002538 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002539 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002540 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002541 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002542}
2543
Willy Tarreaucd234e92017-08-18 10:59:39 +02002544/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002545 * Returns > 0 on success or zero on missing data. The caller must have already
2546 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002547 */
2548static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2549{
Willy Tarreau7838a792019-08-12 18:42:03 +02002550 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2551
Willy Tarreaucd234e92017-08-18 10:59:39 +02002552 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002553 if (b_data(&h2c->dbuf) < h2c->dfl) {
2554 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002555 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002556 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002557
2558 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002559 if (h2s->st == H2_SS_CLOSED) {
2560 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 +02002561 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002562 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002563
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002564 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002565 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002566
2567 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01002568 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01002569 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002570 }
2571
2572 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002573 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002574 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002575}
2576
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002577/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2578 * It may return an error in h2c or h2s. The caller must consider that the
2579 * return value is the new h2s in case one was allocated (most common case).
2580 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002581 * errors here are reported as connection errors since it's impossible to
2582 * recover from such errors after the compression context has been altered.
2583 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002584static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002585{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002586 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002587 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002588 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002589 int error;
2590
Willy Tarreau7838a792019-08-12 18:42:03 +02002591 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2592
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002593 if (!b_size(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002594 goto out; // empty buffer
Willy Tarreau13278b42017-10-13 19:23:14 +02002595
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002596 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002597 goto out; // incomplete frame
Willy Tarreau13278b42017-10-13 19:23:14 +02002598
2599 /* now either the frame is complete or the buffer is complete */
2600 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002601 /* The stream exists/existed, this must be a trailers frame */
2602 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreauaab1a602019-05-06 11:12:18 +02002603 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len);
2604 /* unrecoverable error ? */
2605 if (h2c->st0 >= H2_CS_ERROR)
2606 goto out;
2607
2608 if (error == 0)
2609 goto out; // missing data
2610
2611 if (error < 0) {
2612 /* Failed to decode this frame (e.g. too large request)
2613 * but the HPACK decompressor is still synchronized.
2614 */
2615 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2616 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002617 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002618 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002619 goto done;
2620 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002621 /* the connection was already killed by an RST, let's consume
2622 * the data and send another RST.
2623 */
2624 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
2625 h2s = (struct h2s*)h2_error_stream;
2626 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002627 }
2628 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2629 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2630 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002631 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002632 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002633 goto conn_err;
2634 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002635 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2636 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002637
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002638 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002639
Willy Tarreau25919232019-01-03 14:48:18 +01002640 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002641 if (h2c->st0 >= H2_CS_ERROR)
2642 goto out;
2643
Willy Tarreau25919232019-01-03 14:48:18 +01002644 if (error <= 0) {
2645 if (error == 0)
2646 goto out; // missing data
2647
2648 /* Failed to decode this stream (e.g. too large request)
2649 * but the HPACK decompressor is still synchronized.
2650 */
2651 h2s = (struct h2s*)h2_error_stream;
2652 goto send_rst;
2653 }
2654
Willy Tarreau22de8d32018-09-05 19:55:58 +02002655 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002656 * positively from h2c_frt_stream_new(), the stream will report the error,
2657 * and if we return in error, h2c_frt_stream_new() will emit the error.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002658 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02002659 h2s = h2c_frt_stream_new(h2c, h2c->dsi);
Willy Tarreau13278b42017-10-13 19:23:14 +02002660 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002661 h2s = (struct h2s*)h2_refused_stream;
2662 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002663 }
2664
2665 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002666 h2s->rxbuf = rxbuf;
2667 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002668 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002669
Willy Tarreau88d138e2019-01-02 19:38:14 +01002670 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002671 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002672 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002673
2674 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002675 if (h2s->st == H2_SS_OPEN)
2676 h2s->st = H2_SS_HREM;
2677 else
2678 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002679 }
2680
Willy Tarreau3a429f02019-01-03 11:41:50 +01002681 /* update the max stream ID if the request is being processed */
2682 if (h2s->id > h2c->max_id)
2683 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002684
Willy Tarreau022e5e52020-09-10 09:33:15 +02002685 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn, 0, &rxbuf);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002686 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002687
2688 conn_err:
2689 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002690 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002691
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002692 out:
2693 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002694 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 +01002695 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002696
2697 send_rst:
2698 /* make the demux send an RST for the current stream. We may only
2699 * do this if we're certain that the HEADERS frame was properly
2700 * decompressed so that the HPACK decoder is still kept up to date.
2701 */
2702 h2_release_buf(h2c, &rxbuf);
2703 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002704
Willy Tarreau022e5e52020-09-10 09:33:15 +02002705 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 +02002706 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002707 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002708}
2709
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002710/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2711 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2712 * errors here are reported as connection errors since it's impossible to
2713 * recover from such errors after the compression context has been altered.
2714 */
2715static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2716{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002717 struct buffer rxbuf = BUF_NULL;
2718 unsigned long long body_len = 0;
2719 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002720 int error;
2721
Willy Tarreau7838a792019-08-12 18:42:03 +02002722 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2723
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002724 if (!b_size(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002725 goto fail; // empty buffer
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002726
2727 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002728 goto fail; // incomplete frame
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002729
Christopher Faulet6884aa32019-09-23 15:28:20 +02002730 if (h2s->st != H2_SS_CLOSED) {
2731 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len);
2732 }
2733 else {
2734 /* the connection was already killed by an RST, let's consume
2735 * the data and send another RST.
2736 */
2737 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002738 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002739 h2c->st0 = H2_CS_FRAME_E;
2740 goto send_rst;
2741 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002742
Willy Tarreau25919232019-01-03 14:48:18 +01002743 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002744 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002745 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002746
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002747 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2748 /* RFC7540#5.1 */
2749 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2750 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002751 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002752 }
2753
Willy Tarreau25919232019-01-03 14:48:18 +01002754 if (error <= 0) {
2755 if (error == 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002756 goto fail; // missing data
Willy Tarreau25919232019-01-03 14:48:18 +01002757
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002758 /* stream error : send RST_STREAM */
Willy Tarreau25919232019-01-03 14:48:18 +01002759 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002760 h2c->st0 = H2_CS_FRAME_E;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002761 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02002762 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002763 }
2764
Christopher Fauletfa922f02019-05-07 10:55:17 +02002765 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002766 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002767
Willy Tarreau927b88b2019-03-04 08:03:25 +01002768 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002769 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002770 else if (h2s->flags & H2_SF_ES_RCVD) {
2771 if (h2s->st == H2_SS_OPEN)
2772 h2s->st = H2_SS_HREM;
2773 else if (h2s->st == H2_SS_HLOC)
2774 h2s_close(h2s);
2775 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002776
Willy Tarreau022e5e52020-09-10 09:33:15 +02002777 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 +02002778 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002779 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002780 fail:
2781 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2782 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002783
2784 send_rst:
2785 /* make the demux send an RST for the current stream. We may only
2786 * do this if we're certain that the HEADERS frame was properly
2787 * decompressed so that the HPACK decoder is still kept up to date.
2788 */
2789 h2_release_buf(h2c, &rxbuf);
2790 h2c->st0 = H2_CS_FRAME_E;
2791
Willy Tarreau022e5e52020-09-10 09:33:15 +02002792 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 +02002793 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2794 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002795}
2796
Willy Tarreau454f9052017-10-26 19:40:35 +02002797/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2798 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2799 */
2800static int h2c_frt_handle_data(struct h2c *h2c, struct h2s *h2s)
2801{
2802 int error;
2803
Willy Tarreau7838a792019-08-12 18:42:03 +02002804 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2805
Willy Tarreau454f9052017-10-26 19:40:35 +02002806 /* note that empty DATA frames are perfectly valid and sometimes used
2807 * to signal an end of stream (with the ES flag).
2808 */
2809
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002810 if (!b_size(&h2c->dbuf) && h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002811 goto fail; // empty buffer
Willy Tarreau454f9052017-10-26 19:40:35 +02002812
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002813 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002814 goto fail; // incomplete frame
Willy Tarreau454f9052017-10-26 19:40:35 +02002815
2816 /* now either the frame is complete or the buffer is complete */
2817
Willy Tarreau454f9052017-10-26 19:40:35 +02002818 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2819 /* RFC7540#6.1 */
2820 error = H2_ERR_STREAM_CLOSED;
2821 goto strm_err;
2822 }
2823
Christopher Faulet4f09ec82019-06-19 09:25:58 +02002824 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002825 /* RFC7540#8.1.2 */
2826 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002827 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002828 goto strm_err;
2829 }
2830
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002831 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02002832 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002833
Willy Tarreau454f9052017-10-26 19:40:35 +02002834 /* call the upper layers to process the frame, then let the upper layer
2835 * notify the stream about any change.
2836 */
2837 if (!h2s->cs) {
Willy Tarreau082c4572019-08-06 10:11:02 +02002838 /* The upper layer has already closed, this may happen on
2839 * 4xx/redirects during POST, or when receiving a response
2840 * from an H2 server after the client has aborted.
2841 */
2842 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002843 goto strm_err;
2844 }
2845
Willy Tarreau8f650c32017-11-21 19:36:21 +01002846 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002847 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01002848
Willy Tarreau721c9742017-11-07 11:05:42 +01002849 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002850 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002851 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002852 }
2853
2854 /* check for completion : the callee will change this to FRAME_A or
2855 * FRAME_H once done.
2856 */
2857 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02002858 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02002859
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002860 /* last frame */
2861 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002862 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002863 if (h2s->st == H2_SS_OPEN)
2864 h2s->st = H2_SS_HREM;
2865 else
2866 h2s_close(h2s);
2867
Willy Tarreau1915ca22019-01-24 11:49:37 +01002868 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
2869 /* RFC7540#8.1.2 */
2870 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002871 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002872 goto strm_err;
2873 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002874 }
2875
Willy Tarreau7838a792019-08-12 18:42:03 +02002876 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02002877 return 1;
2878
Willy Tarreau454f9052017-10-26 19:40:35 +02002879 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002880 h2s_error(h2s, error);
2881 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002882 fail:
2883 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02002884 return 0;
2885}
2886
Willy Tarreau63864812019-08-07 14:25:20 +02002887/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
2888 * valid for the current stream state. This is needed only after parsing the
2889 * frame header but in practice it can be performed at any time during
2890 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
2891 * or 0 in case of error, in which case either h2s or h2c will carry an error.
2892 */
2893static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
2894{
Willy Tarreau7838a792019-08-12 18:42:03 +02002895 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
2896
Willy Tarreau63864812019-08-07 14:25:20 +02002897 if (h2s->st == H2_SS_IDLE &&
2898 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
2899 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
2900 * this state MUST be treated as a connection error
2901 */
2902 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002903 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02002904 /* only log if no other stream can report the error */
2905 sess_log(h2c->conn->owner);
2906 }
Amaury Denoyellea8879232020-10-27 17:16:03 +01002907 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02002908 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 +02002909 return 0;
2910 }
2911
Willy Tarreau57a18162019-11-24 14:57:53 +01002912 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
2913 /* only PUSH_PROMISE would be permitted here */
2914 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Amaury Denoyellea8879232020-10-27 17:16:03 +01002915 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau57a18162019-11-24 14:57:53 +01002916 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
2917 return 0;
2918 }
2919
Willy Tarreau63864812019-08-07 14:25:20 +02002920 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
2921 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
2922 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
2923 * this state MUST be treated as a stream error.
2924 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
2925 * PUSH_PROMISE/CONTINUATION cause connection errors.
2926 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01002927 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau63864812019-08-07 14:25:20 +02002928 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Amaury Denoyellea8879232020-10-27 17:16:03 +01002929 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
2930 }
2931 else {
Willy Tarreau63864812019-08-07 14:25:20 +02002932 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01002933 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002934 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 +02002935 return 0;
2936 }
2937
2938 /* Below the management of frames received in closed state is a
2939 * bit hackish because the spec makes strong differences between
2940 * streams closed by receiving RST, sending RST, and seeing ES
2941 * in both directions. In addition to this, the creation of a
2942 * new stream reusing the identifier of a closed one will be
2943 * detected here. Given that we cannot keep track of all closed
2944 * streams forever, we consider that unknown closed streams were
2945 * closed on RST received, which allows us to respond with an
2946 * RST without breaking the connection (eg: to abort a transfer).
2947 * Some frames have to be silently ignored as well.
2948 */
2949 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
2950 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
2951 /* #5.1.1: The identifier of a newly
2952 * established stream MUST be numerically
2953 * greater than all streams that the initiating
2954 * endpoint has opened or reserved. This
2955 * governs streams that are opened using a
2956 * HEADERS frame and streams that are reserved
2957 * using PUSH_PROMISE. An endpoint that
2958 * receives an unexpected stream identifier
2959 * MUST respond with a connection error.
2960 */
2961 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02002962 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 +02002963 return 0;
2964 }
2965
Willy Tarreau4c08f122019-09-26 08:47:15 +02002966 if (h2s->flags & H2_SF_RST_RCVD &&
2967 !(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 +02002968 /* RFC7540#5.1:closed: an endpoint that
2969 * receives any frame other than PRIORITY after
2970 * receiving a RST_STREAM MUST treat that as a
2971 * stream error of type STREAM_CLOSED.
2972 *
2973 * Note that old streams fall into this category
2974 * and will lead to an RST being sent.
2975 *
2976 * However, we cannot generalize this to all frame types. Those
2977 * carrying compression state must still be processed before
2978 * being dropped or we'll desynchronize the decoder. This can
2979 * happen with request trailers received after sending an
2980 * RST_STREAM, or with header/trailers responses received after
2981 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02002982 *
2983 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002984 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02002985 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02002986 */
2987 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2988 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002989 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 +02002990 return 0;
2991 }
2992
2993 /* RFC7540#5.1:closed: if this state is reached as a
2994 * result of sending a RST_STREAM frame, the peer that
2995 * receives the RST_STREAM might have already sent
2996 * frames on the stream that cannot be withdrawn. An
2997 * endpoint MUST ignore frames that it receives on
2998 * closed streams after it has sent a RST_STREAM
2999 * frame. An endpoint MAY choose to limit the period
3000 * over which it ignores frames and treat frames that
3001 * arrive after this time as being in error.
3002 */
3003 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3004 /* RFC7540#5.1:closed: any frame other than
3005 * PRIO/WU/RST in this state MUST be treated as
3006 * a connection error
3007 */
3008 if (h2c->dft != H2_FT_RST_STREAM &&
3009 h2c->dft != H2_FT_PRIORITY &&
3010 h2c->dft != H2_FT_WINDOW_UPDATE) {
3011 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003012 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 +02003013 return 0;
3014 }
3015 }
3016 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003017 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003018 return 1;
3019}
3020
Willy Tarreaubc933932017-10-09 16:21:43 +02003021/* process Rx frames to be demultiplexed */
3022static void h2_process_demux(struct h2c *h2c)
3023{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003024 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003025 struct h2_fh hdr;
3026 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003027 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003028
Willy Tarreau7838a792019-08-12 18:42:03 +02003029 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3030
Willy Tarreau081d4722017-05-16 21:51:05 +02003031 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003032 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003033
3034 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3035 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003036 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003037 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003038 goto out;
3039
Willy Tarreau52eed752017-09-22 15:05:09 +02003040 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3041 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003042 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003043 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003044 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003045 sess_log(h2c->conn->owner);
3046 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003047 goto fail;
3048 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003049 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003050
3051 h2c->max_id = 0;
3052 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003053 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003054 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003055
3056 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003057 /* ensure that what is pending is a valid SETTINGS frame
3058 * without an ACK.
3059 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003060 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 +02003061 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003062 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003063 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003064 TRACE_PROTO("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 +02003065 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003066 if (!(h2c->flags & H2_CF_IS_BACK))
3067 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003068 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003069 goto fail;
3070 }
3071
3072 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3073 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau7838a792019-08-12 18:42:03 +02003074 TRACE_PROTO("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 +02003075 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3076 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003077 if (!(h2c->flags & H2_CF_IS_BACK))
3078 sess_log(h2c->conn->owner);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003079 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003080 goto fail;
3081 }
3082
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003083 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003084 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau7838a792019-08-12 18:42:03 +02003085 TRACE_PROTO("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 +02003086 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3087 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003088 if (!(h2c->flags & H2_CF_IS_BACK))
3089 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003090 goto fail;
3091 }
3092
Willy Tarreau3bf69182018-12-21 15:34:50 +01003093 /* that's OK, switch to FRAME_P to process it. This is
3094 * a SETTINGS frame whose header has already been
3095 * deleted above.
3096 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003097 padlen = 0;
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003098 HA_ATOMIC_ADD(&h2c->px_counters->settings_rcvd, 1);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003099 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003100 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003101 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003102
3103 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003104 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003105 int ret = 0;
3106
Willy Tarreau7838a792019-08-12 18:42:03 +02003107 if (!b_data(&h2c->dbuf)) {
3108 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
3109 break;
3110 }
3111
3112 if (h2c->st0 >= H2_CS_ERROR) {
3113 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003114 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003115 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003116
3117 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau30d05f32019-08-06 15:49:51 +02003118 h2c->rcvd_s = 0;
3119
Willy Tarreau7838a792019-08-12 18:42:03 +02003120 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Willy Tarreaua4428bd2018-12-22 18:11:41 +01003121 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr))
Willy Tarreau7e98c052017-10-10 15:56:59 +02003122 break;
3123
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003124 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003125 TRACE_PROTO("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 +02003126 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003127 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003128 /* only log if no other stream can report the error */
3129 sess_log(h2c->conn->owner);
3130 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003131 break;
3132 }
3133
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003134 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003135 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3136 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3137 * we read the pad length and drop it from the remaining
3138 * payload (one byte + the 9 remaining ones = 10 total
3139 * removed), so we have a frame payload starting after the
3140 * pad len. Flow controlled frames (DATA) also count the
3141 * padlen in the flow control, so it must be adjusted.
3142 */
3143 if (hdr.len < 1) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003144 TRACE_PROTO("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 +01003145 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003146 if (!(h2c->flags & H2_CF_IS_BACK))
3147 sess_log(h2c->conn->owner);
Willy Tarreau3bf69182018-12-21 15:34:50 +01003148 goto fail;
3149 }
3150 hdr.len--;
3151
3152 if (b_data(&h2c->dbuf) < 10)
3153 break; // missing padlen
3154
3155 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3156
3157 if (padlen > hdr.len) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003158 TRACE_PROTO("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 +01003159 /* RFC7540#6.1 : pad length = length of
3160 * frame payload or greater => error.
3161 */
3162 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003163 if (!(h2c->flags & H2_CF_IS_BACK))
3164 sess_log(h2c->conn->owner);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003165 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau3bf69182018-12-21 15:34:50 +01003166 goto fail;
3167 }
3168
3169 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3170 h2c->rcvd_c++;
3171 h2c->rcvd_s++;
3172 }
3173 b_del(&h2c->dbuf, 1);
3174 }
3175 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003176
3177 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003178 h2c->dfl = hdr.len;
3179 h2c->dsi = hdr.sid;
3180 h2c->dft = hdr.ft;
3181 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003182 h2c->dpl = padlen;
Willy Tarreau73db4342019-09-25 07:28:44 +02003183 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 +02003184 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003185
3186 /* check for minimum basic frame format validity */
3187 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3188 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003189 TRACE_PROTO("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 +01003190 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003191 if (!(h2c->flags & H2_CF_IS_BACK))
3192 sess_log(h2c->conn->owner);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003193 goto fail;
3194 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003195 }
3196
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003197 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3198 * H2_CS_FRAME_P indicates an incomplete previous operation
3199 * (most often the first attempt) and requires some validity
3200 * checks for the frame and the current state. The two other
3201 * ones are set after completion (or abortion) and must skip
3202 * validity checks.
3203 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003204 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3205
Willy Tarreau567beb82018-12-18 16:52:44 +01003206 if (tmp_h2s != h2s && h2s && h2s->cs &&
3207 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003208 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003209 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003210 (h2s->flags & H2_SF_ES_RCVD) ||
3211 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003212 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003213 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 +01003214 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003215 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003216 }
3217 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003218
Willy Tarreau63864812019-08-07 14:25:20 +02003219 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003220 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3221 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003222 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003223 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003224
Willy Tarreau7e98c052017-10-10 15:56:59 +02003225 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003226 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003227 if (h2c->st0 == H2_CS_FRAME_P) {
3228 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003229 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003230 }
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003231 HA_ATOMIC_ADD(&h2c->px_counters->settings_rcvd, 1);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003232
Willy Tarreau7838a792019-08-12 18:42:03 +02003233 if (h2c->st0 == H2_CS_FRAME_A) {
3234 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 +02003235 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003236 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003237 break;
3238
Willy Tarreaucf68c782017-10-10 17:11:41 +02003239 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003240 if (h2c->st0 == H2_CS_FRAME_P) {
3241 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003242 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003243 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003244
Willy Tarreau7838a792019-08-12 18:42:03 +02003245 if (h2c->st0 == H2_CS_FRAME_A) {
3246 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 +02003247 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003248 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003249 break;
3250
Willy Tarreau26f95952017-07-27 17:18:30 +02003251 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003252 if (h2c->st0 == H2_CS_FRAME_P) {
3253 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 +02003254 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003255 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003256 break;
3257
Willy Tarreau61290ec2017-10-17 08:19:21 +02003258 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003259 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003260 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3261 * frames' parsers consume all following CONTINUATION
3262 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003263 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003264 TRACE_PROTO("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 +01003265 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003266 if (!(h2c->flags & H2_CF_IS_BACK))
3267 sess_log(h2c->conn->owner);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003268 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreauea18f862018-12-22 20:19:26 +01003269 goto fail;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003270
Willy Tarreau13278b42017-10-13 19:23:14 +02003271 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003272 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003273 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003274 if (h2c->flags & H2_CF_IS_BACK)
3275 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3276 else
3277 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003278 if (tmp_h2s) {
3279 h2s = tmp_h2s;
3280 ret = 1;
3281 }
3282 }
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003283 HA_ATOMIC_ADD(&h2c->px_counters->headers_rcvd, 1);
Willy Tarreau13278b42017-10-13 19:23:14 +02003284 break;
3285
Willy Tarreau454f9052017-10-26 19:40:35 +02003286 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003287 if (h2c->st0 == H2_CS_FRAME_P) {
3288 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003289 ret = h2c_frt_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003290 }
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003291 HA_ATOMIC_ADD(&h2c->px_counters->data_rcvd, 1);
Willy Tarreau454f9052017-10-26 19:40:35 +02003292
Willy Tarreau7838a792019-08-12 18:42:03 +02003293 if (h2c->st0 == H2_CS_FRAME_A) {
3294 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 +02003295 ret = h2c_send_strm_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003296 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003297 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003298
Willy Tarreau92153fc2017-12-03 19:46:19 +01003299 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003300 if (h2c->st0 == H2_CS_FRAME_P) {
3301 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003302 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003303 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003304 break;
3305
Willy Tarreaucd234e92017-08-18 10:59:39 +02003306 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003307 if (h2c->st0 == H2_CS_FRAME_P) {
3308 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 +02003309 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003310 }
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003311 HA_ATOMIC_ADD(&h2c->px_counters->rst_stream_rcvd, 1);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003312 break;
3313
Willy Tarreaue96b0922017-10-30 00:28:29 +01003314 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003315 if (h2c->st0 == H2_CS_FRAME_P) {
3316 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003317 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003318 }
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003319 HA_ATOMIC_ADD(&h2c->px_counters->goaway_rcvd, 1);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003320 break;
3321
Willy Tarreau1c661982017-10-30 13:52:01 +01003322 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003323 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003324 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003325 /* drop frames that we ignore. They may be larger than
3326 * the buffer so we drain all of their contents until
3327 * we reach the end.
3328 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003329 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3330 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003331 h2c->dfl -= ret;
3332 ret = h2c->dfl == 0;
3333 }
3334
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003335 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003336 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003337 if (h2s->st == H2_SS_ERROR) {
3338 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 +01003339 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003340 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003341
Willy Tarreau7838a792019-08-12 18:42:03 +02003342 if (h2c->st0 == H2_CS_FRAME_E) {
3343 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 +01003344 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003345 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003346
Willy Tarreau7e98c052017-10-10 15:56:59 +02003347 /* error or missing data condition met above ? */
Willy Tarreau7838a792019-08-12 18:42:03 +02003348 if (ret <= 0) {
3349 TRACE_DEVEL("insufficient data to proceed", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003350 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003351 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003352
3353 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003354 if (h2c->dfl)
3355 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003356 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3357 b_del(&h2c->dbuf, ret);
3358 h2c->dfl -= ret;
3359 if (!h2c->dfl) {
3360 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3361 h2c->st0 = H2_CS_FRAME_H;
3362 h2c->dsi = -1;
3363 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003364 }
3365 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003366
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003367 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003368 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3369 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003370 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003371 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003372
Willy Tarreau52eed752017-09-22 15:05:09 +02003373 fail:
3374 /* we can go here on missing data, blocked response or error */
Willy Tarreau567beb82018-12-18 16:52:44 +01003375 if (h2s && h2s->cs &&
3376 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003377 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003378 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003379 (h2s->flags & H2_SF_ES_RCVD) ||
3380 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003381 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003382 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 +01003383 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003384 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003385 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003386
Willy Tarreau7838a792019-08-12 18:42:03 +02003387 if (old_iw != h2c->miw) {
3388 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003389 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003390 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003391
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003392 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003393 out:
3394 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreaubc933932017-10-09 16:21:43 +02003395}
3396
Willy Tarreau989539b2020-01-10 17:01:29 +01003397/* resume each h2s eligible for sending in list head <head> */
3398static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3399{
3400 struct h2s *h2s, *h2s_back;
3401
3402 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3403
3404 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3405 if (h2c->mws <= 0 ||
3406 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3407 h2c->st0 >= H2_CS_ERROR)
3408 break;
3409
3410 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003411
Willy Tarreaud9464162020-01-10 18:25:07 +01003412 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003413 continue;
3414
Willy Tarreau5723f292020-01-10 15:16:57 +01003415 /* If the sender changed his mind and unsubscribed, let's just
3416 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003417 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003418 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3419 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003420 LIST_DEL_INIT(&h2s->list);
3421 continue;
3422 }
3423
Willy Tarreauf96508a2020-01-10 11:12:48 +01003424 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003425 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003426 tasklet_wakeup(h2s->subs->tasklet);
3427 h2s->subs->events &= ~SUB_RETRY_SEND;
3428 if (!h2s->subs->events)
3429 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003430 }
3431 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3432 tasklet_wakeup(h2s->shut_tl);
3433 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003434 }
3435
3436 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3437}
3438
Willy Tarreaubc933932017-10-09 16:21:43 +02003439/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3440 * the end.
3441 */
3442static int h2_process_mux(struct h2c *h2c)
3443{
Willy Tarreau7838a792019-08-12 18:42:03 +02003444 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3445
Willy Tarreau01b44822018-10-03 14:26:37 +02003446 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3447 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3448 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3449 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003450 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003451 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003452 goto fail;
3453 }
3454 h2c->st0 = H2_CS_SETTINGS1;
3455 }
3456 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003457 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003458 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003459 }
3460
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003461 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003462 if (h2c->rcvd_s > 0 &&
3463 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3464 h2c_send_strm_wu(h2c) < 0)
3465 goto fail;
3466
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003467 if (h2c->rcvd_c > 0 &&
3468 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3469 h2c_send_conn_wu(h2c) < 0)
3470 goto fail;
3471
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003472 /* First we always process the flow control list because the streams
3473 * waiting there were already elected for immediate emission but were
3474 * blocked just on this.
3475 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003476 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3477 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003478
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003479 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003480 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003481 if (h2c->st0 == H2_CS_ERROR) {
3482 if (h2c->max_id >= 0) {
3483 h2c_send_goaway_error(h2c, NULL);
3484 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003485 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003486 }
3487
3488 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3489 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003490 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003491 done:
3492 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3493 return 1;
3494 out0:
3495 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3496 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003497}
3498
Willy Tarreau62f52692017-10-08 23:01:42 +02003499
Willy Tarreau479998a2018-11-18 06:30:59 +01003500/* Attempt to read data, and subscribe if none available.
3501 * The function returns 1 if data has been received, otherwise zero.
3502 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003503static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003504{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003505 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003506 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003507 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003508 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003509
Willy Tarreau7838a792019-08-12 18:42:03 +02003510 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3511
3512 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3513 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003514 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003515 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003516
Willy Tarreau7838a792019-08-12 18:42:03 +02003517 if (!h2_recv_allowed(h2c)) {
3518 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003519 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003520 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003521
Willy Tarreau44e973f2018-03-01 17:49:30 +01003522 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003523 if (!buf) {
3524 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003525 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003526 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003527 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003528
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003529 b_realign_if_empty(buf);
3530 if (!b_data(buf)) {
3531 /* try to pre-align the buffer like the
3532 * rxbufs will be to optimize memory copies. We'll make
3533 * sure that the frame header lands at the end of the
3534 * HTX block to alias it upon recv. We cannot use the
3535 * head because rcv_buf() will realign the buffer if
3536 * it's empty. Thus we cheat and pretend we already
3537 * have a few bytes there.
3538 */
3539 max = buf_room_for_htx_data(buf) + 9;
3540 buf->head = sizeof(struct htx) - 9;
3541 }
3542 else
3543 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003544
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003545 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003546
Willy Tarreau7838a792019-08-12 18:42:03 +02003547 if (max && !ret && h2_recv_allowed(h2c)) {
3548 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003549 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003550 } else if (ret)
Willy Tarreau022e5e52020-09-10 09:33:15 +02003551 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003552
Olivier Houcharda1411e62018-08-17 18:42:48 +02003553 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003554 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003555 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003556 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003557 }
3558
Willy Tarreau7838a792019-08-12 18:42:03 +02003559 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003560 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003561 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003562 }
3563
3564 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003565 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003566}
3567
Willy Tarreau479998a2018-11-18 06:30:59 +01003568/* Try to send data if possible.
3569 * The function returns 1 if data have been sent, otherwise zero.
3570 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003571static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003572{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003573 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003574 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003575 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003576
Willy Tarreau7838a792019-08-12 18:42:03 +02003577 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003578
Willy Tarreau7838a792019-08-12 18:42:03 +02003579 if (conn->flags & CO_FL_ERROR) {
3580 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3581 return 1;
3582 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003583
Willy Tarreau911db9b2020-01-23 16:27:54 +01003584 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003585 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003586 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003587 }
3588
Willy Tarreaubc933932017-10-09 16:21:43 +02003589 /* This loop is quite simple : it tries to fill as much as it can from
3590 * pending streams into the existing buffer until it's reportedly full
3591 * or the end of send requests is reached. Then it tries to send this
3592 * buffer's contents out, marks it not full if at least one byte could
3593 * be sent, and tries again.
3594 *
3595 * The snd_buf() function normally takes a "flags" argument which may
3596 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3597 * data immediately comes and CO_SFL_STREAMER to indicate that the
3598 * connection is streaming lots of data (used to increase TLS record
3599 * size at the expense of latency). The former can be sent any time
3600 * there's a buffer full flag, as it indicates at least one stream
3601 * attempted to send and failed so there are pending data. An
3602 * alternative would be to set it as long as there's an active stream
3603 * but that would be problematic for ACKs until we have an absolute
3604 * guarantee that all waiters have at least one byte to send. The
3605 * latter should possibly not be set for now.
3606 */
3607
3608 done = 0;
3609 while (!done) {
3610 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003611 unsigned int released = 0;
3612 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003613
3614 /* fill as much as we can into the current buffer */
3615 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3616 done = h2_process_mux(h2c);
3617
Olivier Houchard2b094432019-01-29 18:28:36 +01003618 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003619 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003620
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003621 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
3622 (h2c->st0 == H2_CS_ERROR2) || (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003623 break;
3624
3625 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3626 flags |= CO_SFL_MSG_MORE;
3627
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003628 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3629 if (b_data(buf)) {
3630 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003631 if (!ret) {
3632 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003633 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003634 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003635 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003636 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003637 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003638 if (b_data(buf)) {
3639 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003640 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003641 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003642 }
3643 b_free(buf);
3644 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003645 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003646
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003647 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02003648 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003649
Willy Tarreaubc933932017-10-09 16:21:43 +02003650 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003651 if (sent)
3652 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003653 }
3654
Willy Tarreaua2af5122017-10-09 11:56:46 +02003655 if (conn->flags & CO_FL_SOCK_WR_SH) {
3656 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003657 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003658 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003659 /* We're not full anymore, so we can wake any task that are waiting
3660 * for us.
3661 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003662 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3663 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003664
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003665 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003666 if (!br_data(h2c->mbuf)) {
3667 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003668 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003669 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003670schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003671 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3672 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003673 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003674 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003675
Willy Tarreau7838a792019-08-12 18:42:03 +02003676 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003677 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003678}
3679
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003680/* this is the tasklet referenced in h2c->wait_event.tasklet */
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003681static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short status)
3682{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003683 struct connection *conn;
3684 struct tasklet *tl = (struct tasklet *)t;
3685 int conn_in_list;
3686 struct h2c *h2c;
Olivier Houchard7505f942018-08-21 18:10:44 +02003687 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003688
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003689
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003690 HA_SPIN_LOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003691 if (t->context == NULL) {
3692 /* The connection has been taken over by another thread,
3693 * we're no longer responsible for it, so just free the
3694 * tasklet, and do nothing.
3695 */
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003696 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003697 tasklet_free(tl);
Willy Tarreau38468772020-06-28 00:31:13 +02003698 goto leave;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003699 }
3700 h2c = ctx;
3701 conn = h2c->conn;
3702
3703 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3704
3705 conn_in_list = conn->flags & CO_FL_LIST_MASK;
3706
3707 /* Remove the connection from the list, to be sure nobody attempts
3708 * to use it while we handle the I/O events
3709 */
3710 if (conn_in_list)
3711 MT_LIST_DEL(&conn->list);
3712
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003713 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreau7838a792019-08-12 18:42:03 +02003714
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003715 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003716 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003717 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003718 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003719 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003720 ret = h2_process(h2c);
3721
3722 /* If we were in an idle list, we want to add it back into it,
3723 * unless h2_process() returned -1, which mean it has destroyed
3724 * the connection (testing !ret is enough, if h2_process() wasn't
3725 * called then ret will be 0 anyway.
3726 */
3727 if (!ret && conn_in_list) {
3728 struct server *srv = objt_server(conn->target);
3729
3730 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreaua9d7b762020-07-10 08:28:20 +02003731 MT_LIST_ADDQ(&srv->safe_conns[tid], &conn->list);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003732 else
Willy Tarreaua9d7b762020-07-10 08:28:20 +02003733 MT_LIST_ADDQ(&srv->idle_conns[tid], &conn->list);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003734 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003735
Willy Tarreau38468772020-06-28 00:31:13 +02003736leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02003737 TRACE_LEAVE(H2_EV_H2C_WAKE);
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003738 return NULL;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003739}
Willy Tarreaua2af5122017-10-09 11:56:46 +02003740
Willy Tarreau62f52692017-10-08 23:01:42 +02003741/* callback called on any event by the connection handler.
3742 * It applies changes and returns zero, or < 0 if it wants immediate
3743 * destruction of the connection (which normally doesn not happen in h2).
3744 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003745static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003746{
Olivier Houchard7505f942018-08-21 18:10:44 +02003747 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003748
Willy Tarreau7838a792019-08-12 18:42:03 +02003749 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3750
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003751 if (b_data(&h2c->dbuf) && !(h2c->flags & H2_CF_DEM_BLOCK_ANY)) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003752 h2_process_demux(h2c);
3753
3754 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003755 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003756
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003757 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003758 h2c->flags &= ~H2_CF_DEM_DFULL;
3759 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003760 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003761
Willy Tarreaub1e600c2020-10-13 18:09:15 +02003762 if (unlikely(h2c->proxy->disabled) && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01003763 /* frontend is stopping, reload likely in progress, let's try
3764 * to announce a graceful shutdown if not yet done. We don't
3765 * care if it fails, it will be tried again later.
3766 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003767 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
Willy Tarreau8ec14062017-12-30 18:08:13 +01003768 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3769 if (h2c->last_sid < 0)
3770 h2c->last_sid = (1U << 31) - 1;
3771 h2c_send_goaway_error(h2c, NULL);
3772 }
3773 }
3774
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003775 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003776 * If we received early data, and the handshake is done, wake
3777 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003778 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003779 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01003780 (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 +01003781 struct eb32_node *node;
3782 struct h2s *h2s;
3783
3784 h2c->flags |= H2_CF_WAIT_FOR_HS;
3785 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
3786
3787 while (node) {
3788 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01003789 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01003790 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003791 node = eb32_next(node);
3792 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003793 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003794
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003795 if (conn->flags & CO_FL_ERROR || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01003796 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
3797 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
3798 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02003799 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003800
3801 if (eb_is_empty(&h2c->streams_by_id)) {
3802 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003803 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003804 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003805 return -1;
3806 }
Willy Tarreau4481e262019-10-31 15:36:30 +01003807
3808 /* connections in error must be removed from the idle lists */
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003809 HA_SPIN_LOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreau4481e262019-10-31 15:36:30 +01003810 MT_LIST_DEL((struct mt_list *)&conn->list);
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003811 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreau4481e262019-10-31 15:36:30 +01003812 }
3813 else if (h2c->st0 == H2_CS_ERROR) {
3814 /* connections in error must be removed from the idle lists */
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003815 HA_SPIN_LOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreau4481e262019-10-31 15:36:30 +01003816 MT_LIST_DEL((struct mt_list *)&conn->list);
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003817 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003818 }
3819
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003820 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01003821 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003822
Olivier Houchard53216e72018-10-10 15:46:36 +02003823 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
3824 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
3825 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02003826 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02003827 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
3828 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02003829 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003830
Willy Tarreau3f133572017-10-31 19:21:06 +01003831 if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02003832 if (h2c_may_expire(h2c))
3833 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3834 else
3835 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02003836 task_queue(h2c->task);
Willy Tarreauea392822017-10-31 10:02:25 +01003837 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003838
Olivier Houchard7505f942018-08-21 18:10:44 +02003839 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003840 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003841 return 0;
3842}
3843
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003844/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003845static int h2_wake(struct connection *conn)
3846{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003847 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02003848 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003849
Willy Tarreau7838a792019-08-12 18:42:03 +02003850 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3851 ret = h2_process(h2c);
Willy Tarreau508f9892020-02-11 04:38:56 +01003852 if (ret >= 0)
3853 h2_wake_some_streams(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003854 TRACE_LEAVE(H2_EV_H2C_WAKE);
3855 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003856}
3857
Willy Tarreauea392822017-10-31 10:02:25 +01003858/* Connection timeout management. The principle is that if there's no receipt
3859 * nor sending for a certain amount of time, the connection is closed. If the
3860 * MUX buffer still has lying data or is not allocatable, the connection is
3861 * immediately killed. If it's allocatable and empty, we attempt to send a
3862 * GOAWAY frame.
3863 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02003864static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state)
Willy Tarreauea392822017-10-31 10:02:25 +01003865{
Olivier Houchard9f6af332018-05-25 14:04:04 +02003866 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01003867 int expired = tick_is_expired(t->expire, now_ms);
3868
Willy Tarreau7838a792019-08-12 18:42:03 +02003869 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
3870
Willy Tarreaubd42e922020-06-30 11:19:23 +02003871 if (h2c) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02003872 /* Make sure nobody stole the connection from us */
3873 HA_SPIN_LOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
3874
3875 /* Somebody already stole the connection from us, so we should not
3876 * free it, we just have to free the task.
3877 */
3878 if (!t->context) {
3879 h2c = NULL;
Willy Tarreau46ac7812020-07-04 07:16:18 +02003880 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02003881 goto do_leave;
3882 }
3883
3884
Willy Tarreaubd42e922020-06-30 11:19:23 +02003885 if (!expired) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02003886 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02003887 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
3888 return t;
3889 }
Willy Tarreauea392822017-10-31 10:02:25 +01003890
Willy Tarreaubd42e922020-06-30 11:19:23 +02003891 if (!h2c_may_expire(h2c)) {
3892 /* we do still have streams but all of them are idle, waiting
3893 * for the data layer, so we must not enforce the timeout here.
3894 */
Olivier Houchard48ce6a32020-07-02 11:58:05 +02003895 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02003896 t->expire = TICK_ETERNITY;
3897 return t;
3898 }
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02003899
Willy Tarreaubd42e922020-06-30 11:19:23 +02003900 /* We're about to destroy the connection, so make sure nobody attempts
3901 * to steal it from us.
3902 */
Willy Tarreaubd42e922020-06-30 11:19:23 +02003903 if (h2c->conn->flags & CO_FL_LIST_MASK)
3904 MT_LIST_DEL(&h2c->conn->list);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003905
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003906 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02003907 }
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003908
Olivier Houchard48ce6a32020-07-02 11:58:05 +02003909do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02003910 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02003911
3912 if (!h2c) {
3913 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02003914 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02003915 return NULL;
3916 }
3917
3918 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01003919 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02003920 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01003921
Willy Tarreau662fafc2019-05-26 09:43:07 +02003922 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01003923 /* don't even try to send a GOAWAY, the buffer is stuck */
3924 h2c->flags |= H2_CF_GOAWAY_FAILED;
3925 }
3926
3927 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01003928 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01003929 if (h2c_send_goaway_error(h2c, NULL) <= 0)
3930 h2c->flags |= H2_CF_GOAWAY_FAILED;
3931
Willy Tarreau662fafc2019-05-26 09:43:07 +02003932 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003933 unsigned int released = 0;
3934 struct buffer *buf;
3935
3936 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3937 if (b_data(buf)) {
3938 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
3939 if (!ret)
3940 break;
3941 b_del(buf, ret);
3942 if (b_data(buf))
3943 break;
3944 b_free(buf);
3945 released++;
3946 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02003947 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003948
3949 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02003950 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau787db9a2018-06-14 18:31:46 +02003951 }
Willy Tarreauea392822017-10-31 10:02:25 +01003952
Willy Tarreau4481e262019-10-31 15:36:30 +01003953 /* in any case this connection must not be considered idle anymore */
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003954 HA_SPIN_LOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreau4481e262019-10-31 15:36:30 +01003955 MT_LIST_DEL((struct mt_list *)&h2c->conn->list);
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003956 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreau4481e262019-10-31 15:36:30 +01003957
Willy Tarreau0975f112018-03-29 15:22:59 +02003958 /* either we can release everything now or it will be done later once
3959 * the last stream closes.
3960 */
3961 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02003962 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01003963
Willy Tarreau7838a792019-08-12 18:42:03 +02003964 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01003965 return NULL;
3966}
3967
3968
Willy Tarreau62f52692017-10-08 23:01:42 +02003969/*******************************************/
3970/* functions below are used by the streams */
3971/*******************************************/
3972
3973/*
3974 * Attach a new stream to a connection
3975 * (Used for outgoing connections)
3976 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003977static struct conn_stream *h2_attach(struct connection *conn, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02003978{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003979 struct conn_stream *cs;
3980 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003981 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003982
Willy Tarreau7838a792019-08-12 18:42:03 +02003983 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Christopher Faulet236c93b2020-07-02 09:19:54 +02003984 cs = cs_new(conn, conn->target);
Willy Tarreau7838a792019-08-12 18:42:03 +02003985 if (!cs) {
3986 TRACE_DEVEL("leaving on CS allocation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003987 return NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02003988 }
Olivier Houchardf502aca2018-12-14 19:42:40 +01003989 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003990 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003991 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003992 cs_free(cs);
3993 return NULL;
3994 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003995 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003996 return cs;
Willy Tarreau62f52692017-10-08 23:01:42 +02003997}
3998
Willy Tarreaufafd3982018-11-18 21:29:20 +01003999/* Retrieves the first valid conn_stream from this connection, or returns NULL.
4000 * We have to scan because we may have some orphan streams. It might be
4001 * beneficial to scan backwards from the end to reduce the likeliness to find
4002 * orphans.
4003 */
4004static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
4005{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004006 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004007 struct h2s *h2s;
4008 struct eb32_node *node;
4009
4010 node = eb32_first(&h2c->streams_by_id);
4011 while (node) {
4012 h2s = container_of(node, struct h2s, by_id);
4013 if (h2s->cs)
4014 return h2s->cs;
4015 node = eb32_next(node);
4016 }
4017 return NULL;
4018}
4019
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004020static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4021{
4022 int ret = 0;
4023 struct h2c *h2c = conn->ctx;
4024
4025 switch (mux_ctl) {
4026 case MUX_STATUS:
4027 /* Only consider the mux to be ready if we're done with
4028 * the preface and settings, and we had no error.
4029 */
4030 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4031 ret |= MUX_STATUS_READY;
4032 return ret;
4033 default:
4034 return -1;
4035 }
4036}
4037
Willy Tarreau62f52692017-10-08 23:01:42 +02004038/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004039 * Destroy the mux and the associated connection, if it is no longer used
4040 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004041static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004042{
Christopher Faulet73c12072019-04-08 11:23:22 +02004043 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004044
Willy Tarreau7838a792019-08-12 18:42:03 +02004045 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02004046 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02004047 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004048 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004049}
4050
4051/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004052 * Detach the stream from the connection and possibly release the connection.
4053 */
4054static void h2_detach(struct conn_stream *cs)
4055{
Willy Tarreau60935142017-10-16 18:11:19 +02004056 struct h2s *h2s = cs->ctx;
4057 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004058 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004059
Willy Tarreau7838a792019-08-12 18:42:03 +02004060 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4061
Willy Tarreau60935142017-10-16 18:11:19 +02004062 cs->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004063 if (!h2s) {
4064 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004065 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004066 }
Willy Tarreau60935142017-10-16 18:11:19 +02004067
Willy Tarreaud9464162020-01-10 18:25:07 +01004068 /* there's no txbuf so we're certain not to be able to send anything */
4069 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004070
Olivier Houchardf502aca2018-12-14 19:42:40 +01004071 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004072 h2c = h2s->h2c;
4073 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02004074 h2c->nb_cs--;
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004075 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
4076 !h2_frt_has_too_many_cs(h2c)) {
4077 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004078 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004079 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004080 }
Willy Tarreau60935142017-10-16 18:11:19 +02004081
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004082 /* this stream may be blocked waiting for some data to leave (possibly
4083 * an ES or RST frame), so orphan it in this case.
4084 */
Willy Tarreau3041fcc2018-03-29 15:41:32 +02004085 if (!(cs->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004086 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004087 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004088 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004089 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004090 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004091 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004092
Willy Tarreau45f752e2017-10-30 15:44:59 +01004093 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
4094 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
4095 /* unblock the connection if it was blocked on this
4096 * stream.
4097 */
4098 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4099 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004100 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004101 }
4102
Willy Tarreau71049cc2018-03-28 13:56:39 +02004103 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004104
Christopher Faulet9b79a102019-07-15 11:22:56 +02004105 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01004106 if (!(h2c->conn->flags &
4107 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004108 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004109 /* Add the connection in the session server list, if not already done */
4110 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4111 h2c->conn->owner = NULL;
4112 if (eb_is_empty(&h2c->streams_by_id)) {
4113 h2c->conn->mux->destroy(h2c);
4114 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4115 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004116 }
4117 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004118 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004119 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4120 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4121 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004122 return;
4123 }
4124 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004125 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004126 else {
4127 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004128 /* If the connection is owned by the session, first remove it
4129 * from its list
4130 */
4131 if (h2c->conn->owner) {
4132 session_unown_conn(h2c->conn->owner, h2c->conn);
4133 h2c->conn->owner = NULL;
4134 }
4135
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004136 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004137 /* The server doesn't want it, let's kill the connection right away */
4138 h2c->conn->mux->destroy(h2c);
4139 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4140 return;
4141 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004142 /* At this point, the connection has been added to the
4143 * server idle list, so another thread may already have
4144 * hijacked it, so we can't do anything with it.
4145 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004146 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4147 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004148
Olivier Houchard8a786902018-12-15 16:05:40 +01004149 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004150 else if (MT_LIST_ISEMPTY(&h2c->conn->list) &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004151 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
4152 !LIST_ADDED(&h2c->conn->session_list)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004153 LIST_ADD(&__objt_server(h2c->conn->target)->available_conns[tid], mt_list_to_list(&h2c->conn->list));
4154 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004155 }
4156 }
4157 }
4158
Willy Tarreaue323f342018-03-28 13:51:45 +02004159 /* We don't want to close right now unless we're removing the
4160 * last stream, and either the connection is in error, or it
4161 * reached the ID already specified in a GOAWAY frame received
4162 * or sent (as seen by last_sid >= 0).
4163 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004164 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004165 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004166 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004167 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004168 }
4169 else if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004170 if (h2c_may_expire(h2c))
4171 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
4172 else
4173 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02004174 task_queue(h2c->task);
Willy Tarreau7838a792019-08-12 18:42:03 +02004175 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004176 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004177 else
4178 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004179}
4180
Willy Tarreau88bdba32019-05-13 18:17:53 +02004181/* Performs a synchronous or asynchronous shutr(). */
4182static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004183{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004184 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004185
Willy Tarreauf983d002019-05-14 10:40:21 +02004186 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004187 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004188
Willy Tarreau7838a792019-08-12 18:42:03 +02004189 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4190
Willy Tarreau18059042019-01-31 19:12:48 +01004191 /* a connstream may require us to immediately kill the whole connection
4192 * for example because of a "tcp-request content reject" rule that is
4193 * normally used to limit abuse. In this case we schedule a goaway to
4194 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004195 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004196 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004197 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004198 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004199 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4200 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4201 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004202 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4203 /* Nothing was never sent for this stream, so reset with
4204 * REFUSED_STREAM error to let the client retry the
4205 * request.
4206 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004207 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004208 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4209 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004210 else {
4211 /* a final response was already provided, we don't want this
4212 * stream anymore. This may happen when the server responds
4213 * before the end of an upload and closes quickly (redirect,
4214 * deny, ...)
4215 */
4216 h2s_error(h2s, H2_ERR_CANCEL);
4217 }
Willy Tarreau18059042019-01-31 19:12:48 +01004218
Willy Tarreau90c32322017-11-24 08:00:30 +01004219 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004220 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004221 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004222
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004223 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004224 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004225 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004226 done:
4227 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004228 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004229 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004230add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004231 /* Let the handler know we want to shutr, and add ourselves to the
4232 * most relevant list if not yet done. h2_deferred_shut() will be
4233 * automatically called via the shut_tl tasklet when there's room
4234 * again.
4235 */
4236 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreauc234ae32019-05-13 17:56:11 +02004237 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004238 if (h2s->flags & H2_SF_BLK_MFCTL)
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004239 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004240 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004241 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004242 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004243 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004244 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004245}
4246
Willy Tarreau88bdba32019-05-13 18:17:53 +02004247/* Performs a synchronous or asynchronous shutw(). */
4248static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004249{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004250 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004251
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004252 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004253 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004254
Willy Tarreau7838a792019-08-12 18:42:03 +02004255 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4256
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004257 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01004258 /* we can cleanly close using an empty data frame only after headers */
4259
4260 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4261 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004262 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004263
4264 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004265 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004266 else
4267 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004268 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004269 /* a connstream may require us to immediately kill the whole connection
4270 * for example because of a "tcp-request content reject" rule that is
4271 * normally used to limit abuse. In this case we schedule a goaway to
4272 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004273 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004274 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004275 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004276 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004277 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4278 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4279 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004280 else {
4281 /* Nothing was never sent for this stream, so reset with
4282 * REFUSED_STREAM error to let the client retry the
4283 * request.
4284 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004285 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004286 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4287 }
Willy Tarreau18059042019-01-31 19:12:48 +01004288
Willy Tarreau90c32322017-11-24 08:00:30 +01004289 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004290 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004291 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004292
Willy Tarreau00dd0782018-03-01 16:31:34 +01004293 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004294 }
4295
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004296 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004297 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004298
4299 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4300
Willy Tarreau88bdba32019-05-13 18:17:53 +02004301 done:
4302 h2s->flags &= ~H2_SF_WANT_SHUTW;
4303 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004304
4305 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004306 /* Let the handler know we want to shutw, and add ourselves to the
4307 * most relevant list if not yet done. h2_deferred_shut() will be
4308 * automatically called via the shut_tl tasklet when there's room
4309 * again.
4310 */
4311 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreauc234ae32019-05-13 17:56:11 +02004312 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004313 if (h2s->flags & H2_SF_BLK_MFCTL)
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004314 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004315 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004316 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004317 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004318 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004319 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004320}
4321
Willy Tarreau5723f292020-01-10 15:16:57 +01004322/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004323 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4324 * and prevented the last frame from being emitted.
4325 */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004326static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state)
4327{
4328 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004329 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004330
Willy Tarreau7838a792019-08-12 18:42:03 +02004331 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4332
Willy Tarreau5723f292020-01-10 15:16:57 +01004333 if (h2s->flags & H2_SF_NOTIFIED) {
4334 /* some data processing remains to be done first */
4335 goto end;
4336 }
4337
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004338 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004339 h2_do_shutw(h2s);
4340
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004341 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004342 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004343
Willy Tarreau88bdba32019-05-13 18:17:53 +02004344 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004345 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004346 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004347
Willy Tarreau88bdba32019-05-13 18:17:53 +02004348 if (!h2s->cs) {
4349 h2s_destroy(h2s);
4350 if (h2c_is_dead(h2c))
4351 h2_release(h2c);
4352 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004353 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004354 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004355 TRACE_LEAVE(H2_EV_STRM_SHUT);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004356 return NULL;
Willy Tarreau62f52692017-10-08 23:01:42 +02004357}
4358
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004359/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004360static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
4361{
4362 struct h2s *h2s = cs->ctx;
4363
Willy Tarreau7838a792019-08-12 18:42:03 +02004364 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004365 if (cs->flags & CS_FL_KILL_CONN)
4366 h2s->flags |= H2_SF_KILL_CONN;
4367
Willy Tarreau7838a792019-08-12 18:42:03 +02004368 if (mode)
4369 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004370
Willy Tarreau7838a792019-08-12 18:42:03 +02004371 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004372}
4373
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004374/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004375static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
4376{
4377 struct h2s *h2s = cs->ctx;
4378
Willy Tarreau7838a792019-08-12 18:42:03 +02004379 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004380 if (cs->flags & CS_FL_KILL_CONN)
4381 h2s->flags |= H2_SF_KILL_CONN;
4382
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004383 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004384 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004385}
4386
Christopher Faulet9b79a102019-07-15 11:22:56 +02004387/* Decode the payload of a HEADERS frame and produce the HTX request or response
4388 * depending on the connection's side. Returns a positive value on success, a
4389 * negative value on failure, or 0 if it couldn't proceed. May report connection
4390 * errors in h2c->errcode if the frame is non-decodable and the connection
4391 * unrecoverable. In absence of connection error when a failure is reported, the
4392 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004393 *
4394 * The function may fold CONTINUATION frames into the initial HEADERS frame
4395 * by removing padding and next frame header, then moving the CONTINUATION
4396 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4397 * leaving a hole between the main frame and the beginning of the next one.
4398 * The possibly remaining incomplete or next frame at the end may be moved
4399 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4400 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4401 *
4402 * A buffer at the beginning of processing may look like this :
4403 *
4404 * ,---.---------.-----.--------------.--------------.------.---.
4405 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4406 * `---^---------^-----^--------------^--------------^------^---'
4407 * | | <-----> | |
4408 * area | dpl | wrap
4409 * |<--------------> |
4410 * | dfl |
4411 * |<-------------------------------------------------->|
4412 * head data
4413 *
4414 * Padding is automatically overwritten when folding, participating to the
4415 * hole size after dfl :
4416 *
4417 * ,---.------------------------.-----.--------------.------.---.
4418 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4419 * `---^------------------------^-----^--------------^------^---'
4420 * | | <-----> | |
4421 * area | hole | wrap
4422 * |<-----------------------> |
4423 * | dfl |
4424 * |<-------------------------------------------------->|
4425 * head data
4426 *
4427 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4428 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4429 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004430 *
4431 * The <flags> field must point to either the stream's flags or to a copy of it
4432 * so that the function can update the following flags :
4433 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004434 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004435 *
4436 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4437 * decoding, in order to detect if we're dealing with a headers or a trailers
4438 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004439 */
Willy Tarreau4790f7c2019-01-24 11:33:02 +01004440static int h2c_decode_headers(struct h2c *h2c, struct buffer *rxbuf, uint32_t *flags, unsigned long long *body_len)
Willy Tarreau13278b42017-10-13 19:23:14 +02004441{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004442 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004443 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004444 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004445 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004446 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004447 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004448 int flen; // header frame len
4449 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004450 int ret = 0;
4451 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004452 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004453
Willy Tarreau7838a792019-08-12 18:42:03 +02004454 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4455
Willy Tarreauea18f862018-12-22 20:19:26 +01004456next_frame:
4457 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4458 goto leave; // incomplete input frame
4459
4460 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4461 * this case, we'll try to paste it immediately after the initial
4462 * HEADERS frame payload and kill any possible padding. The initial
4463 * frame's length will be increased to represent the concatenation
4464 * of the two frames. The next frame is read from position <tlen>
4465 * and written at position <flen> (minus padding if some is present).
4466 */
4467 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4468 struct h2_fh hdr;
4469 int clen; // CONTINUATION frame's payload length
4470
Willy Tarreau7838a792019-08-12 18:42:03 +02004471 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 +01004472 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4473 /* no more data, the buffer may be full, either due to
4474 * too large a frame or because of too large a hole that
4475 * we're going to compact at the end.
4476 */
4477 goto leave;
4478 }
4479
4480 if (hdr.ft != H2_FT_CONTINUATION) {
4481 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004482 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 +01004483 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Amaury Denoyellea8879232020-10-27 17:16:03 +01004484 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreauea18f862018-12-22 20:19:26 +01004485 goto fail;
4486 }
4487
4488 if (hdr.sid != h2c->dsi) {
4489 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004490 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 +01004491 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Amaury Denoyellea8879232020-10-27 17:16:03 +01004492 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreauea18f862018-12-22 20:19:26 +01004493 goto fail;
4494 }
4495
4496 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4497 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004498 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 +01004499 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4500 goto fail;
4501 }
4502
4503 /* detect when we must stop aggragating frames */
4504 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4505
4506 /* Take as much as we can of the CONTINUATION frame's payload */
4507 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4508 if (clen > hdr.len)
4509 clen = hdr.len;
4510
4511 /* Move the frame's payload over the padding, hole and frame
4512 * header. At least one of hole or dpl is null (see diagrams
4513 * above). The hole moves after the new aggragated frame.
4514 */
4515 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole + 9), clen, -(h2c->dpl + hole + 9));
4516 h2c->dfl += clen - h2c->dpl;
4517 hole += h2c->dpl + 9;
4518 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004519 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 +01004520 goto next_frame;
4521 }
4522
4523 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004524
Willy Tarreau13278b42017-10-13 19:23:14 +02004525 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004526 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004527 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004528 copy = alloc_trash_chunk();
4529 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004530 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 +02004531 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4532 goto fail;
4533 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004534 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4535 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4536 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004537 }
4538
Willy Tarreau13278b42017-10-13 19:23:14 +02004539 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4540 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004541 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004542 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004543 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 +01004544 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Amaury Denoyellea8879232020-10-27 17:16:03 +01004545 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004546 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004547 }
4548
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004549 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004550 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 +01004551 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4552 goto fail;
4553 }
4554
Willy Tarreau13278b42017-10-13 19:23:14 +02004555 hdrs += 5; // stream dep = 4, weight = 1
4556 flen -= 5;
4557 }
4558
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004559 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004560 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 +01004561 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004562 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004563 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004564
Willy Tarreau937f7602018-02-26 15:22:17 +01004565 /* we can't retry a failed decompression operation so we must be very
4566 * careful not to take any risks. In practice the output buffer is
4567 * always empty except maybe for trailers, in which case we simply have
4568 * to wait for the upper layer to finish consuming what is available.
4569 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004570 htx = htx_from_buf(rxbuf);
4571 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004572 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 +02004573 h2c->flags |= H2_CF_DEM_SFULL;
4574 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004575 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004576
Willy Tarreau25919232019-01-03 14:48:18 +01004577 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004578 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4579 sizeof(list)/sizeof(list[0]), tmp);
4580 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004581 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 +01004582 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4583 goto fail;
4584 }
4585
Willy Tarreau25919232019-01-03 14:48:18 +01004586 /* The PACK decompressor was updated, let's update the input buffer and
4587 * the parser's state to commit these changes and allow us to later
4588 * fail solely on the stream if needed.
4589 */
4590 b_del(&h2c->dbuf, h2c->dfl + hole);
4591 h2c->dfl = hole = 0;
4592 h2c->st0 = H2_CS_FRAME_H;
4593
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004594 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004595 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004596
Willy Tarreau88d138e2019-01-02 19:38:14 +01004597 if (*flags & H2_SF_HEADERS_RCVD)
4598 goto trailers;
4599
4600 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004601 if (h2c->flags & H2_CF_IS_BACK)
4602 outlen = h2_make_htx_response(list, htx, &msgf, body_len);
4603 else
4604 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004605
4606 if (outlen < 0) {
Willy Tarreau25919232019-01-03 14:48:18 +01004607 /* too large headers? this is a stream error only */
Willy Tarreau7838a792019-08-12 18:42:03 +02004608 TRACE_STATE("request headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004609 goto fail;
4610 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004611
Willy Tarreau174b06a2018-04-25 18:13:58 +02004612 if (msgf & H2_MSGF_BODY) {
4613 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004614 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004615 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004616 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004617 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004618 }
4619
Willy Tarreau88d138e2019-01-02 19:38:14 +01004620 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004621 /* indicate that a HEADERS frame was received for this stream, except
4622 * for 1xx responses. For 1xx responses, another HEADERS frame is
4623 * expected.
4624 */
4625 if (!(msgf & H2_MSGF_RSP_1XX))
4626 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004627
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02004628 if ((h2c->dff & H2_F_HEADERS_END_STREAM)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02004629 /* Mark the end of message using EOM */
Christopher Faulet810df062020-07-22 16:20:34 +02004630 htx->flags |= HTX_FL_EOI; /* no more data are expected. Only EOM remains to add now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004631 if (!htx_add_endof(htx, HTX_BLK_EOM)) {
4632 TRACE_STATE("failed to append HTX EOM block into rxbuf", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR, h2c->conn);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004633 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004634 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004635 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004636
Willy Tarreau86277d42019-01-02 15:36:11 +01004637 /* success */
4638 ret = 1;
4639
Willy Tarreau68dd9852017-07-03 14:44:26 +02004640 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004641 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004642 * move the remaining data over it.
4643 */
4644 if (hole) {
4645 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4646 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4647 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4648 b_sub(&h2c->dbuf, hole);
4649 }
4650
Willy Tarreau97215ca2019-04-29 10:20:21 +02004651 if (b_full(&h2c->dbuf) && h2c->dfl >= b_data(&h2c->dbuf)) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004652 /* too large frames */
4653 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004654 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004655 }
4656
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004657 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004658 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004659 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004660 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004661 return ret;
4662
Willy Tarreau68dd9852017-07-03 14:44:26 +02004663 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004664 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004665 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004666
4667 trailers:
4668 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004669 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4670 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004671 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 +01004672 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Amaury Denoyellea8879232020-10-27 17:16:03 +01004673 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau88d138e2019-01-02 19:38:14 +01004674 goto fail;
4675 }
4676
Christopher Faulet9b79a102019-07-15 11:22:56 +02004677 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02004678 if (h2_make_htx_trailers(list, htx) <= 0) {
4679 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 +02004680 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004681 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004682 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02004683}
4684
Christopher Faulet9b79a102019-07-15 11:22:56 +02004685/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004686 * parser state is automatically updated. Returns > 0 if it could completely
4687 * send the current frame, 0 if it couldn't complete, in which case
4688 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
4689 * DATA frame can return 0 as a valid result). Stream errors are reported in
4690 * h2s->errcode and connection errors in h2c->errcode. The caller must already
4691 * have checked the frame header and ensured that the frame was complete or the
4692 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02004693 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01004694static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02004695{
4696 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004697 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004698 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004699 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004700 struct buffer *csbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004701 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02004702
Willy Tarreau7838a792019-08-12 18:42:03 +02004703 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
4704
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004705 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02004706
Olivier Houchard638b7992018-08-16 15:41:52 +02004707 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004708 if (!csbuf) {
4709 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02004710 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 +01004711 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004712 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004713 htx = htx_from_buf(csbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004714
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004715try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004716 flen = h2c->dfl - h2c->dpl;
4717 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01004718 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004719
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004720 if (flen > b_data(&h2c->dbuf)) {
4721 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004722 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01004723 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004724 }
4725
Christopher Faulet9b79a102019-07-15 11:22:56 +02004726 block = htx_free_data_space(htx);
4727 if (!block) {
4728 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004729 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 +02004730 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004731 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004732 if (flen > block)
4733 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004734
Christopher Faulet9b79a102019-07-15 11:22:56 +02004735 /* here, flen is the max we can copy into the output buffer */
4736 block = b_contig_data(&h2c->dbuf, 0);
4737 if (flen > block)
4738 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004739
Christopher Faulet9b79a102019-07-15 11:22:56 +02004740 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02004741 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 +02004742
Christopher Faulet9b79a102019-07-15 11:22:56 +02004743 b_del(&h2c->dbuf, sent);
4744 h2c->dfl -= sent;
4745 h2c->rcvd_c += sent;
4746 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02004747
Christopher Faulet9b79a102019-07-15 11:22:56 +02004748 if (h2s->flags & H2_SF_DATA_CLEN) {
4749 h2s->body_len -= sent;
4750 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004751 }
4752
Christopher Faulet9b79a102019-07-15 11:22:56 +02004753 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004754 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004755 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 +01004756 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004757 }
4758
Christopher Faulet9b79a102019-07-15 11:22:56 +02004759 goto try_again;
4760
Willy Tarreau4a28da12018-01-04 14:41:00 +01004761 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004762 /* here we're done with the frame, all the payload (except padding) was
4763 * transferred.
4764 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02004765
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004766 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Faulet810df062020-07-22 16:20:34 +02004767 htx->flags |= HTX_FL_EOI; /* no more data are expected. Only EOM remains to add now */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004768 if (!htx_add_endof(htx, HTX_BLK_EOM)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004769 TRACE_STATE("h2s rxbuf is full, failed to add EOM", H2_EV_RX_FRAME|H2_EV_RX_DATA|H2_EV_H2S_BLK, h2c->conn, h2s);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004770 h2c->flags |= H2_CF_DEM_SFULL;
4771 goto fail;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004772 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02004773 }
4774
Willy Tarreaud1023bb2018-03-22 16:53:12 +01004775 h2c->rcvd_c += h2c->dpl;
4776 h2c->rcvd_s += h2c->dpl;
4777 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004778 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet9b79a102019-07-15 11:22:56 +02004779 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02004780 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004781 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01004782 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004783 if (htx)
4784 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02004785 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01004786 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004787}
4788
Willy Tarreau115e83b2018-12-01 19:17:53 +01004789/* Try to send a HEADERS frame matching HTX response present in HTX message
4790 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4791 * must check the stream's status to detect any error which might have happened
4792 * subsequently to a successful send. The htx blocks are automatically removed
4793 * from the message. The htx message is assumed to be valid since produced from
4794 * the internal code, hence it contains a start line, an optional series of
4795 * header blocks and an end of header, otherwise an invalid frame could be
4796 * emitted and the resulting htx message could be left in an inconsistent state.
4797 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004798static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004799{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004800 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01004801 struct h2c *h2c = h2s->h2c;
4802 struct htx_blk *blk;
4803 struct htx_blk *blk_end;
4804 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004805 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004806 struct htx_sl *sl;
4807 enum htx_blk_type type;
4808 int es_now = 0;
4809 int ret = 0;
4810 int hdr;
4811 int idx;
4812
Willy Tarreau7838a792019-08-12 18:42:03 +02004813 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
4814
Willy Tarreau115e83b2018-12-01 19:17:53 +01004815 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004816 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004817 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02004818 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004819 return 0;
4820 }
4821
Willy Tarreau115e83b2018-12-01 19:17:53 +01004822 /* determine the first block which must not be deleted, blk_end may
4823 * be NULL if all blocks have to be deleted.
4824 */
4825 idx = htx_get_head(htx);
4826 blk_end = NULL;
4827 while (idx != -1) {
4828 type = htx_get_blk_type(htx_get_blk(htx, idx));
4829 idx = htx_get_next(htx, idx);
4830 if (type == HTX_BLK_EOH) {
4831 if (idx != -1)
4832 blk_end = htx_get_blk(htx, idx);
4833 break;
4834 }
4835 }
4836
4837 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004838 blk = htx_get_head_blk(htx);
Christopher Fauletea009732019-11-18 15:50:25 +01004839 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_RES_SL);
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004840 ALREADY_CHECKED(blk);
4841 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004842 h2s->status = sl->info.res.status;
Willy Tarreau7838a792019-08-12 18:42:03 +02004843 if (h2s->status < 100 || h2s->status > 999) {
4844 TRACE_PROTO("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
Willy Tarreauaafdf582018-12-10 18:06:40 +01004845 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004846 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004847
4848 /* and the rest of the headers, that we dump starting at header 0 */
4849 hdr = 0;
4850
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004851 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau115e83b2018-12-01 19:17:53 +01004852 while ((idx = htx_get_next(htx, idx)) != -1) {
4853 blk = htx_get_blk(htx, idx);
4854 type = htx_get_blk_type(blk);
4855
4856 if (type == HTX_BLK_UNUSED)
4857 continue;
4858
4859 if (type != HTX_BLK_HDR)
4860 break;
4861
Willy Tarreau7838a792019-08-12 18:42:03 +02004862 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
4863 TRACE_PROTO("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004864 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004865 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004866
4867 list[hdr].n = htx_get_blk_name(htx, blk);
4868 list[hdr].v = htx_get_blk_value(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004869 hdr++;
4870 }
4871
4872 /* marker for end of headers */
4873 list[hdr].n = ist("");
4874
4875 if (h2s->status == 204 || h2s->status == 304) {
4876 /* no contents, claim c-len is present and set to zero */
4877 es_now = 1;
4878 }
4879
Willy Tarreau9c218e72019-05-26 10:08:28 +02004880 mbuf = br_tail(h2c->mbuf);
4881 retry:
4882 if (!h2_get_buf(h2c, mbuf)) {
4883 h2c->flags |= H2_CF_MUX_MALLOC;
4884 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02004885 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 +02004886 return 0;
4887 }
4888
Willy Tarreau115e83b2018-12-01 19:17:53 +01004889 chunk_reset(&outbuf);
4890
4891 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004892 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4893 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004894 break;
4895 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004896 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01004897 }
4898
4899 if (outbuf.size < 9)
4900 goto full;
4901
4902 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4903 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4904 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4905 outbuf.data = 9;
4906
4907 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01004908 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004909 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004910 goto realign_again;
4911 goto full;
4912 }
4913
4914 /* encode all headers, stop at empty name */
4915 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4916 /* these ones do not exist in H2 and must be dropped. */
4917 if (isteq(list[hdr].n, ist("connection")) ||
4918 isteq(list[hdr].n, ist("proxy-connection")) ||
4919 isteq(list[hdr].n, ist("keep-alive")) ||
4920 isteq(list[hdr].n, ist("upgrade")) ||
4921 isteq(list[hdr].n, ist("transfer-encoding")))
4922 continue;
4923
Christopher Faulet86d144c2019-08-14 16:32:25 +02004924 /* Skip all pseudo-headers */
4925 if (*(list[hdr].n.ptr) == ':')
4926 continue;
4927
Willy Tarreau115e83b2018-12-01 19:17:53 +01004928 if (isteq(list[hdr].n, ist("")))
4929 break; // end
4930
4931 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4932 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004933 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004934 goto realign_again;
4935 goto full;
4936 }
4937 }
4938
Willy Tarreaucb985a42019-10-07 16:56:34 +02004939 /* update the frame's size */
4940 h2_set_frame_size(outbuf.area, outbuf.data - 9);
4941
4942 if (outbuf.data > h2c->mfs + 9) {
4943 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
4944 /* output full */
4945 if (b_space_wraps(mbuf))
4946 goto realign_again;
4947 goto full;
4948 }
4949 }
4950
Christopher Faulet0b465482019-02-19 15:14:23 +01004951 /* we may need to add END_STREAM except for 1xx responses.
Willy Tarreau115e83b2018-12-01 19:17:53 +01004952 * FIXME: we should also set it when we know for sure that the
4953 * content-length is zero as well as on 204/304
4954 */
Christopher Faulet0b465482019-02-19 15:14:23 +01004955 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM &&
4956 (h2s->status >= 200 || h2s->status == 101))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004957 es_now = 1;
4958
Willy Tarreau927b88b2019-03-04 08:03:25 +01004959 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004960 es_now = 1;
4961
Willy Tarreau115e83b2018-12-01 19:17:53 +01004962 if (es_now)
4963 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
4964
4965 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02004966 TRACE_USER("sent H2 response", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
Willy Tarreaubcc45952019-05-26 10:05:50 +02004967 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01004968
4969 /* indicates the HEADERS frame was sent, except for 1xx responses. For
4970 * 1xx responses, another HEADERS frame is expected.
4971 */
4972 if (h2s->status >= 200 || h2s->status == 101)
4973 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004974
Willy Tarreau115e83b2018-12-01 19:17:53 +01004975 if (es_now) {
4976 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02004977 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 +01004978 if (h2s->st == H2_SS_OPEN)
4979 h2s->st = H2_SS_HLOC;
4980 else
4981 h2s_close(h2s);
4982 }
4983
4984 /* OK we could properly deliver the response */
4985
4986 /* remove all header blocks including the EOH and compute the
4987 * corresponding size.
4988 *
4989 * FIXME: We should remove everything when es_now is set.
4990 */
4991 ret = 0;
4992 idx = htx_get_head(htx);
4993 blk = htx_get_blk(htx, idx);
4994 while (blk != blk_end) {
4995 ret += htx_get_blksz(blk);
4996 blk = htx_remove_blk(htx, blk);
4997 }
Willy Tarreauc5753ae2018-12-02 12:28:01 +01004998
Christopher Faulet316934d2019-05-15 14:22:48 +02004999 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5000 ret += htx_get_blksz(blk_end);
Willy Tarreauc5753ae2018-12-02 12:28:01 +01005001 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02005002 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005003 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005004 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005005 return ret;
5006 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005007 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5008 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005009 h2c->flags |= H2_CF_MUX_MFULL;
5010 h2s->flags |= H2_SF_BLK_MROOM;
5011 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005012 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 +01005013 goto end;
5014 fail:
5015 /* unparsable HTX messages, too large ones to be produced in the local
5016 * list etc go here (unrecoverable errors).
5017 */
5018 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5019 ret = 0;
5020 goto end;
5021}
5022
Willy Tarreau80739692018-10-05 11:35:57 +02005023/* Try to send a HEADERS frame matching HTX request present in HTX message
5024 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5025 * must check the stream's status to detect any error which might have happened
5026 * subsequently to a successful send. The htx blocks are automatically removed
5027 * from the message. The htx message is assumed to be valid since produced from
5028 * the internal code, hence it contains a start line, an optional series of
5029 * header blocks and an end of header, otherwise an invalid frame could be
5030 * emitted and the resulting htx message could be left in an inconsistent state.
5031 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005032static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005033{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005034 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005035 struct h2c *h2c = h2s->h2c;
5036 struct htx_blk *blk;
5037 struct htx_blk *blk_end;
5038 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005039 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005040 struct htx_sl *sl;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005041 struct ist meth, uri, auth;
Willy Tarreau80739692018-10-05 11:35:57 +02005042 enum htx_blk_type type;
5043 int es_now = 0;
5044 int ret = 0;
5045 int hdr;
5046 int idx;
5047
Willy Tarreau7838a792019-08-12 18:42:03 +02005048 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5049
Willy Tarreau80739692018-10-05 11:35:57 +02005050 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005051 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005052 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005053 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005054 return 0;
5055 }
5056
Willy Tarreau80739692018-10-05 11:35:57 +02005057 /* determine the first block which must not be deleted, blk_end may
5058 * be NULL if all blocks have to be deleted.
5059 */
5060 idx = htx_get_head(htx);
5061 blk_end = NULL;
5062 while (idx != -1) {
5063 type = htx_get_blk_type(htx_get_blk(htx, idx));
5064 idx = htx_get_next(htx, idx);
5065 if (type == HTX_BLK_EOH) {
5066 if (idx != -1)
5067 blk_end = htx_get_blk(htx, idx);
5068 break;
5069 }
5070 }
5071
5072 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02005073 blk = htx_get_head_blk(htx);
Christopher Fauletea009732019-11-18 15:50:25 +01005074 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
Christopher Fauletb77a1d22019-05-13 11:55:10 +02005075 ALREADY_CHECKED(blk);
5076 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau80739692018-10-05 11:35:57 +02005077 meth = htx_sl_req_meth(sl);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005078 uri = htx_sl_req_uri(sl);
5079 if (unlikely(uri.len == 0)) {
5080 TRACE_PROTO("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5081 goto fail;
5082 }
Willy Tarreau80739692018-10-05 11:35:57 +02005083
5084 /* and the rest of the headers, that we dump starting at header 0 */
5085 hdr = 0;
5086
Willy Tarreau8e162ee2018-12-06 14:07:27 +01005087 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau80739692018-10-05 11:35:57 +02005088 while ((idx = htx_get_next(htx, idx)) != -1) {
5089 blk = htx_get_blk(htx, idx);
5090 type = htx_get_blk_type(blk);
5091
5092 if (type == HTX_BLK_UNUSED)
5093 continue;
5094
5095 if (type != HTX_BLK_HDR)
5096 break;
5097
Willy Tarreau7838a792019-08-12 18:42:03 +02005098 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5099 TRACE_PROTO("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005100 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005101 }
Willy Tarreau80739692018-10-05 11:35:57 +02005102
5103 list[hdr].n = htx_get_blk_name(htx, blk);
5104 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005105
5106 /* Skip header if same name is used to add the server name */
5107 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name &&
5108 isteq(list[hdr].n, ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len)))
5109 continue;
5110
Willy Tarreau80739692018-10-05 11:35:57 +02005111 hdr++;
5112 }
5113
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005114 /* Now add the server name to a header (if requested) */
5115 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name) {
5116 struct server *srv = objt_server(h2c->conn->target);
5117
5118 if (srv) {
5119 list[hdr].n = ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len);
5120 list[hdr].v = ist(srv->id);
5121 hdr++;
5122 }
5123 }
5124
Willy Tarreau80739692018-10-05 11:35:57 +02005125 /* marker for end of headers */
5126 list[hdr].n = ist("");
5127
Willy Tarreau9c218e72019-05-26 10:08:28 +02005128 mbuf = br_tail(h2c->mbuf);
5129 retry:
5130 if (!h2_get_buf(h2c, mbuf)) {
5131 h2c->flags |= H2_CF_MUX_MALLOC;
5132 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005133 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 +02005134 return 0;
5135 }
5136
Willy Tarreau80739692018-10-05 11:35:57 +02005137 chunk_reset(&outbuf);
5138
5139 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005140 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5141 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005142 break;
5143 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005144 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005145 }
5146
5147 if (outbuf.size < 9)
5148 goto full;
5149
5150 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5151 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5152 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5153 outbuf.data = 9;
5154
5155 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005156 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005157 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005158 goto realign_again;
5159 goto full;
5160 }
5161
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005162 auth = ist(NULL);
5163
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005164 /* RFC7540 #8.3: the CONNECT method must have :
5165 * - :authority set to the URI part (host:port)
5166 * - :method set to CONNECT
5167 * - :scheme and :path omitted
5168 */
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005169 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT)) {
5170 auth = uri;
5171
5172 if (!hpack_encode_header(&outbuf, ist(":authority"), auth)) {
5173 /* output full */
5174 if (b_space_wraps(mbuf))
5175 goto realign_again;
5176 goto full;
5177 }
5178 } else {
5179 /* other methods need a :scheme. If an authority is known from
5180 * the request line, it must be sent, otherwise only host is
5181 * sent. Host is never sent as the authority.
5182 */
5183 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005184
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005185 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5186 /* the URI seems to start with a scheme */
5187 int len = 1;
5188
5189 while (len < uri.len && uri.ptr[len] != ':')
5190 len++;
5191
5192 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5193 /* make the uri start at the authority now */
5194 scheme.ptr = uri.ptr;
5195 scheme.len = len,
5196 uri.ptr += len + 3;
5197 uri.len -= len + 3;
5198
5199 /* find the auth part of the URI */
5200 auth.ptr = uri.ptr;
5201 auth.len = 0;
5202 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5203 auth.len++;
5204
5205 uri.ptr += auth.len;
5206 uri.len -= auth.len;
5207 }
5208 }
5209
5210 if (!scheme.len) {
5211 /* no explicit scheme, we're using an origin-form URI,
5212 * probably from an H1 request transcoded to H2 via an
5213 * external layer, then received as H2 without authority.
5214 * So we have to look up the scheme from the HTX flags.
5215 * In such a case only http and https are possible, and
5216 * https is the default (sent by browsers).
5217 */
5218 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5219 scheme = ist("http");
5220 else
5221 scheme = ist("https");
5222 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005223
5224 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005225 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005226 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005227 goto realign_again;
5228 goto full;
5229 }
Willy Tarreau80739692018-10-05 11:35:57 +02005230
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005231 if (auth.len && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005232 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005233 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005234 goto realign_again;
5235 goto full;
5236 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005237
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005238 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5239 * be sent as '/' or '*'.
5240 */
5241 if (unlikely(!uri.len)) {
5242 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5243 uri = ist("*");
5244 else
5245 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005246 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005247
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005248 if (!hpack_encode_path(&outbuf, uri)) {
5249 /* output full */
5250 if (b_space_wraps(mbuf))
5251 goto realign_again;
5252 goto full;
5253 }
Willy Tarreau80739692018-10-05 11:35:57 +02005254 }
5255
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005256 /* encode all headers, stop at empty name. Host is only sent if we
5257 * do not provide an authority.
5258 */
Willy Tarreau80739692018-10-05 11:35:57 +02005259 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005260 struct ist n = list[hdr].n;
5261 struct ist v = list[hdr].v;
5262
Willy Tarreau80739692018-10-05 11:35:57 +02005263 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005264 if (isteq(n, ist("connection")) ||
5265 (auth.len && isteq(n, ist("host"))) ||
5266 isteq(n, ist("proxy-connection")) ||
5267 isteq(n, ist("keep-alive")) ||
5268 isteq(n, ist("upgrade")) ||
5269 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005270 continue;
5271
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005272 if (isteq(n, ist("te"))) {
5273 /* "te" may only be sent with "trailers" if this value
5274 * is present, otherwise it must be deleted.
5275 */
5276 v = istist(v, ist("trailers"));
5277 if (!v.ptr || (v.len > 8 && v.ptr[8] != ','))
5278 continue;
5279 v = ist("trailers");
5280 }
5281
Christopher Faulet86d144c2019-08-14 16:32:25 +02005282 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005283 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005284 continue;
5285
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005286 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005287 break; // end
5288
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005289 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005290 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005291 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005292 goto realign_again;
5293 goto full;
5294 }
5295 }
5296
Willy Tarreaucb985a42019-10-07 16:56:34 +02005297 /* update the frame's size */
5298 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5299
5300 if (outbuf.data > h2c->mfs + 9) {
5301 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5302 /* output full */
5303 if (b_space_wraps(mbuf))
5304 goto realign_again;
5305 goto full;
5306 }
5307 }
5308
Willy Tarreau80739692018-10-05 11:35:57 +02005309 /* we may need to add END_STREAM if we have no body :
5310 * - request already closed, or :
5311 * - no transfer-encoding, and :
5312 * - no content-length or content-length:0
5313 * Fixme: this doesn't take into account CONNECT requests.
5314 */
5315 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM)
5316 es_now = 1;
5317
5318 if (sl->flags & HTX_SL_F_BODYLESS)
5319 es_now = 1;
5320
Willy Tarreau927b88b2019-03-04 08:03:25 +01005321 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau80739692018-10-05 11:35:57 +02005322 es_now = 1;
5323
Willy Tarreau80739692018-10-05 11:35:57 +02005324 if (es_now)
5325 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5326
5327 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02005328 TRACE_USER("sent H2 request", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
Willy Tarreaubcc45952019-05-26 10:05:50 +02005329 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005330 h2s->flags |= H2_SF_HEADERS_SENT;
5331 h2s->st = H2_SS_OPEN;
5332
Willy Tarreau80739692018-10-05 11:35:57 +02005333 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005334 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 +02005335 // trim any possibly pending data (eg: inconsistent content-length)
5336 h2s->flags |= H2_SF_ES_SENT;
5337 h2s->st = H2_SS_HLOC;
5338 }
5339
5340 /* remove all header blocks including the EOH and compute the
5341 * corresponding size.
5342 *
5343 * FIXME: We should remove everything when es_now is set.
5344 */
5345 ret = 0;
5346 idx = htx_get_head(htx);
5347 blk = htx_get_blk(htx, idx);
5348 while (blk != blk_end) {
5349 ret += htx_get_blksz(blk);
5350 blk = htx_remove_blk(htx, blk);
5351 }
5352
Christopher Faulet316934d2019-05-15 14:22:48 +02005353 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5354 ret += htx_get_blksz(blk_end);
Willy Tarreau80739692018-10-05 11:35:57 +02005355 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02005356 }
Willy Tarreau80739692018-10-05 11:35:57 +02005357
5358 end:
5359 return ret;
5360 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005361 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5362 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005363 h2c->flags |= H2_CF_MUX_MFULL;
5364 h2s->flags |= H2_SF_BLK_MROOM;
5365 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005366 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 +02005367 goto end;
5368 fail:
5369 /* unparsable HTX messages, too large ones to be produced in the local
5370 * list etc go here (unrecoverable errors).
5371 */
5372 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5373 ret = 0;
5374 goto end;
5375}
5376
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005377/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005378 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5379 * caller must check the stream's status to detect any error which might have
5380 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Faulet54b5e212019-06-04 10:08:28 +02005381 * consumed, or zero if nothing done. Note that EOM count for 1 byte.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005382 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005383static size_t h2s_frt_make_resp_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005384{
5385 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005386 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005387 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005388 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005389 size_t total = 0;
5390 int es_now = 0;
5391 int bsize; /* htx block size */
5392 int fsize; /* h2 frame size */
5393 struct htx_blk *blk;
5394 enum htx_blk_type type;
5395 int idx;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005396 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005397
Willy Tarreau7838a792019-08-12 18:42:03 +02005398 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5399
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005400 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005401 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005402 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005403 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005404 goto end;
5405 }
5406
Willy Tarreau98de12a2018-12-12 07:03:00 +01005407 htx = htx_from_buf(buf);
5408
Christopher Faulet54b5e212019-06-04 10:08:28 +02005409 /* We only come here with HTX_BLK_DATA blocks. However, while looping,
5410 * we can meet an HTX_BLK_EOM block that we'll leave to the caller to
5411 * handle.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005412 */
5413
5414 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005415 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005416 goto end;
5417
5418 idx = htx_get_head(htx);
5419 blk = htx_get_blk(htx, idx);
Christopher Faulet54b5e212019-06-04 10:08:28 +02005420 type = htx_get_blk_type(blk); // DATA or EOM
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005421 bsize = htx_get_blksz(blk);
5422 fsize = bsize;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005423 trunc_out = 0;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005424
Christopher Faulet54b5e212019-06-04 10:08:28 +02005425 if (type == HTX_BLK_EOM) {
Willy Tarreau7eeb10a2019-01-04 09:28:17 +01005426 if (h2s->flags & H2_SF_ES_SENT) {
5427 /* ES already sent */
5428 htx_remove_blk(htx, blk);
5429 total++; // EOM counts as one byte
5430 count--;
5431 goto end;
5432 }
5433 }
5434 else if (type != HTX_BLK_DATA)
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005435 goto end;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005436
Willy Tarreau9c218e72019-05-26 10:08:28 +02005437 mbuf = br_tail(h2c->mbuf);
5438 retry:
5439 if (!h2_get_buf(h2c, mbuf)) {
5440 h2c->flags |= H2_CF_MUX_MALLOC;
5441 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005442 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 +02005443 goto end;
5444 }
5445
Willy Tarreau98de12a2018-12-12 07:03:00 +01005446 /* Perform some optimizations to reduce the number of buffer copies.
5447 * First, if the mux's buffer is empty and the htx area contains
5448 * exactly one data block of the same size as the requested count, and
5449 * this count fits within the frame size, the stream's window size, and
5450 * the connection's window size, then it's possible to simply swap the
5451 * caller's buffer with the mux's output buffer and adjust offsets and
5452 * length to match the entire DATA HTX block in the middle. In this
5453 * case we perform a true zero-copy operation from end-to-end. This is
5454 * the situation that happens all the time with large files. Second, if
5455 * this is not possible, but the mux's output buffer is empty, we still
5456 * have an opportunity to avoid the copy to the intermediary buffer, by
5457 * making the intermediary buffer's area point to the output buffer's
5458 * area. In this case we want to skip the HTX header to make sure that
5459 * copies remain aligned and that this operation remains possible all
5460 * the time. This goes for headers, data blocks and any data extracted
5461 * from the HTX blocks.
5462 */
5463 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005464 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005465 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005466 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005467
Willy Tarreaubcc45952019-05-26 10:05:50 +02005468 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005469 /* Too bad there are data left there. We're willing to memcpy/memmove
5470 * up to 1/4 of the buffer, which means that it's OK to copy a large
5471 * frame into a buffer containing few data if it needs to be realigned,
5472 * and that it's also OK to copy few data without realigning. Otherwise
5473 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005474 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005475 if (fsize + 9 <= b_room(mbuf) &&
5476 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005477 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5478 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 +01005479 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005480 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005481
Willy Tarreau9c218e72019-05-26 10:08:28 +02005482 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5483 goto retry;
5484
Willy Tarreau98de12a2018-12-12 07:03:00 +01005485 h2c->flags |= H2_CF_MUX_MFULL;
5486 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005487 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 +01005488 goto end;
5489 }
5490
5491 /* map an H2 frame to the HTX block so that we can put the
5492 * frame header there.
5493 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005494 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5495 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005496
5497 /* prepend an H2 DATA frame header just before the DATA block */
5498 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5499 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5500 h2_set_frame_size(outbuf.area, fsize);
5501
5502 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005503 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005504 h2c->mws -= fsize;
5505
5506 /* and exchange with our old area */
5507 buf->area = old_area;
5508 buf->data = buf->head = 0;
5509 total += fsize;
Willy Tarreau7838a792019-08-12 18:42:03 +02005510
5511 TRACE_PROTO("sent H2 DATA frame (zero-copy)", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005512 goto end;
5513 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005514
Willy Tarreau98de12a2018-12-12 07:03:00 +01005515 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005516 /* for DATA and EOM we'll have to emit a frame, even if empty */
5517
5518 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005519 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5520 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005521 break;
5522 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005523 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005524 }
5525
5526 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005527 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5528 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005529 h2c->flags |= H2_CF_MUX_MFULL;
5530 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005531 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005532 goto end;
5533 }
5534
5535 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5536 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5537 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5538 outbuf.data = 9;
5539
5540 /* we have in <fsize> the exact number of bytes we need to copy from
5541 * the HTX buffer. We need to check this against the connection's and
5542 * the stream's send windows, and to ensure that this fits in the max
5543 * frame size and in the buffer's available space minus 9 bytes (for
5544 * the frame header). The connection's flow control is applied last so
5545 * that we can use a separate list of streams which are immediately
5546 * unblocked on window opening. Note: we don't implement padding.
5547 */
5548
5549 /* EOM is presented with bsize==1 but would lead to the emission of an
5550 * empty frame, thus we force it to zero here.
5551 */
5552 if (type == HTX_BLK_EOM)
5553 bsize = fsize = 0;
5554
5555 if (!fsize)
5556 goto send_empty;
5557
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005558 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005559 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02005560 if (LIST_ADDED(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005561 LIST_DEL_INIT(&h2s->list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02005562 LIST_ADDQ(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005563 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 +01005564 goto end;
5565 }
5566
Willy Tarreauee573762018-12-04 15:25:57 +01005567 if (fsize > count)
5568 fsize = count;
5569
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005570 if (fsize > h2s_mws(h2s))
5571 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005572
5573 if (h2c->mfs && fsize > h2c->mfs)
5574 fsize = h2c->mfs; // >0
5575
5576 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005577 /* It doesn't fit at once. If it at least fits once split and
5578 * the amount of data to move is low, let's defragment the
5579 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005580 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005581 if (b_space_wraps(mbuf) &&
5582 (fsize + 9 <= b_room(mbuf)) &&
5583 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005584 goto realign_again;
5585 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005586 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005587
5588 if (fsize <= 0) {
5589 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005590 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5591 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005592 h2c->flags |= H2_CF_MUX_MFULL;
5593 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005594 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005595 goto end;
5596 }
5597 }
5598
5599 if (h2c->mws <= 0) {
5600 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005601 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 +01005602 goto end;
5603 }
5604
5605 if (fsize > h2c->mws)
5606 fsize = h2c->mws;
5607
5608 /* now let's copy this this into the output buffer */
5609 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005610 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005611 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005612 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005613
5614 send_empty:
5615 /* update the frame's size */
5616 h2_set_frame_size(outbuf.area, fsize);
5617
5618 /* FIXME: for now we only set the ES flag on empty DATA frames, once
5619 * meeting EOM. We should optimize this later.
5620 */
5621 if (type == HTX_BLK_EOM) {
Willy Tarreauee573762018-12-04 15:25:57 +01005622 total++; // EOM counts as one byte
5623 count--;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005624 es_now = 1;
5625 }
5626
5627 if (es_now)
5628 outbuf.area[4] |= H2_F_DATA_END_STREAM;
5629
5630 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005631 b_add(mbuf, fsize + 9);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005632
5633 /* consume incoming HTX block, including EOM */
5634 total += fsize;
5635 if (fsize == bsize) {
5636 htx_remove_blk(htx, blk);
Willy Tarreau7838a792019-08-12 18:42:03 +02005637 if (fsize) {
5638 TRACE_DEVEL("more data available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005639 goto new_frame;
Willy Tarreau7838a792019-08-12 18:42:03 +02005640 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005641 } else {
5642 /* we've truncated this block */
5643 htx_cut_data_blk(htx, blk, fsize);
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005644 if (trunc_out)
5645 goto new_frame;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005646 }
5647
5648 if (es_now) {
5649 if (h2s->st == H2_SS_OPEN)
5650 h2s->st = H2_SS_HLOC;
5651 else
5652 h2s_close(h2s);
5653
5654 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005655 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 +01005656 }
5657
5658 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005659 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005660 return total;
5661}
5662
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005663/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
5664 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
5665 * processed. The caller must check the stream's status to detect any error
5666 * which might have happened subsequently to a successful send. The htx blocks
5667 * are automatically removed from the message. The htx message is assumed to be
5668 * valid since produced from the internal code. Processing stops when meeting
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005669 * the EOM, which is *not* removed. All trailers are processed at once and sent
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005670 * as a single frame. The ES flag is always set.
5671 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005672static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005673{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005674 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005675 struct h2c *h2c = h2s->h2c;
5676 struct htx_blk *blk;
5677 struct htx_blk *blk_end;
5678 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005679 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005680 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005681 int ret = 0;
5682 int hdr;
5683 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005684
Willy Tarreau7838a792019-08-12 18:42:03 +02005685 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5686
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005687 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005688 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005689 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005690 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005691 goto end;
5692 }
5693
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005694 /* determine the first block which must not be deleted, blk_end may
5695 * be NULL if all blocks have to be deleted. also get trailers.
5696 */
5697 idx = htx_get_head(htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005698 blk_end = NULL;
5699
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005700 hdr = 0;
5701 while (idx != -1) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005702 blk = htx_get_blk(htx, idx);
5703 type = htx_get_blk_type(blk);
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005704 idx = htx_get_next(htx, idx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005705 if (type == HTX_BLK_UNUSED)
5706 continue;
5707
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005708 if (type == HTX_BLK_EOT) {
5709 if (idx != -1)
5710 blk_end = blk;
5711 break;
5712 }
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005713 if (type != HTX_BLK_TLR)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005714 break;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005715
Willy Tarreau7838a792019-08-12 18:42:03 +02005716 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5717 TRACE_PROTO("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005718 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005719 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005720
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005721 list[hdr].n = htx_get_blk_name(htx, blk);
5722 list[hdr].v = htx_get_blk_value(htx, blk);
5723 hdr++;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005724 }
5725
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005726 /* marker for end of trailers */
5727 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005728
Willy Tarreau9c218e72019-05-26 10:08:28 +02005729 mbuf = br_tail(h2c->mbuf);
5730 retry:
5731 if (!h2_get_buf(h2c, mbuf)) {
5732 h2c->flags |= H2_CF_MUX_MALLOC;
5733 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005734 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 +02005735 goto end;
5736 }
5737
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005738 chunk_reset(&outbuf);
5739
5740 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005741 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5742 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005743 break;
5744 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005745 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005746 }
5747
5748 if (outbuf.size < 9)
5749 goto full;
5750
5751 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
5752 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
5753 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5754 outbuf.data = 9;
5755
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005756 /* encode all headers */
5757 for (idx = 0; idx < hdr; idx++) {
5758 /* these ones do not exist in H2 or must not appear in
5759 * trailers and must be dropped.
5760 */
5761 if (isteq(list[idx].n, ist("host")) ||
5762 isteq(list[idx].n, ist("content-length")) ||
5763 isteq(list[idx].n, ist("connection")) ||
5764 isteq(list[idx].n, ist("proxy-connection")) ||
5765 isteq(list[idx].n, ist("keep-alive")) ||
5766 isteq(list[idx].n, ist("upgrade")) ||
5767 isteq(list[idx].n, ist("te")) ||
5768 isteq(list[idx].n, ist("transfer-encoding")))
5769 continue;
5770
Christopher Faulet86d144c2019-08-14 16:32:25 +02005771 /* Skip all pseudo-headers */
5772 if (*(list[idx].n.ptr) == ':')
5773 continue;
5774
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005775 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
5776 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005777 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005778 goto realign_again;
5779 goto full;
5780 }
5781 }
5782
Willy Tarreau5121e5d2019-05-06 15:13:41 +02005783 if (outbuf.data == 9) {
5784 /* here we have a problem, we have nothing to emit (either we
5785 * received an empty trailers block followed or we removed its
5786 * contents above). Because of this we can't send a HEADERS
5787 * frame, so we have to cheat and instead send an empty DATA
5788 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01005789 */
5790 outbuf.area[3] = H2_FT_DATA;
5791 outbuf.area[4] = H2_F_DATA_END_STREAM;
5792 }
5793
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005794 /* update the frame's size */
5795 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5796
Willy Tarreau572d9f52019-10-11 16:58:37 +02005797 if (outbuf.data > h2c->mfs + 9) {
5798 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5799 /* output full */
5800 if (b_space_wraps(mbuf))
5801 goto realign_again;
5802 goto full;
5803 }
5804 }
5805
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005806 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02005807 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 +02005808 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005809 h2s->flags |= H2_SF_ES_SENT;
5810
5811 if (h2s->st == H2_SS_OPEN)
5812 h2s->st = H2_SS_HLOC;
5813 else
5814 h2s_close(h2s);
5815
5816 /* OK we could properly deliver the response */
5817 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005818 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005819 ret = 0;
5820 idx = htx_get_head(htx);
5821 blk = htx_get_blk(htx, idx);
5822 while (blk != blk_end) {
5823 ret += htx_get_blksz(blk);
5824 blk = htx_remove_blk(htx, blk);
5825 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005826
5827 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5828 ret += htx_get_blksz(blk_end);
5829 htx_remove_blk(htx, blk_end);
5830 }
5831
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005832 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005833 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005834 return ret;
5835 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005836 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5837 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005838 h2c->flags |= H2_CF_MUX_MFULL;
5839 h2s->flags |= H2_SF_BLK_MROOM;
5840 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005841 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 +01005842 goto end;
5843 fail:
5844 /* unparsable HTX messages, too large ones to be produced in the local
5845 * list etc go here (unrecoverable errors).
5846 */
5847 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5848 ret = 0;
5849 goto end;
5850}
5851
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005852/* Called from the upper layer, to subscribe <es> to events <event_type>. The
5853 * event subscriber <es> is not allowed to change from a previous call as long
5854 * as at least one event is still subscribed. The <event_type> must only be a
5855 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005856 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005857static int h2_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02005858{
Olivier Houchard6ff20392018-07-17 18:46:31 +02005859 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02005860 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005861
Willy Tarreau7838a792019-08-12 18:42:03 +02005862 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01005863
5864 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005865 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01005866
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005867 es->events |= event_type;
5868 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01005869
5870 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02005871 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01005872
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005873 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005874 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02005875 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
5876 !LIST_ADDED(&h2s->list)) {
5877 if (h2s->flags & H2_SF_BLK_MFCTL)
5878 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
5879 else
5880 LIST_ADDQ(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02005881 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02005882 }
Willy Tarreau7838a792019-08-12 18:42:03 +02005883 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005884 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005885}
5886
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005887/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
5888 * The <es> pointer is not allowed to differ from the one passed to the
5889 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005890 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005891static int h2_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005892{
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005893 struct h2s *h2s = cs->ctx;
5894
Willy Tarreau7838a792019-08-12 18:42:03 +02005895 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01005896
5897 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005898 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01005899
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005900 es->events &= ~event_type;
5901 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01005902 h2s->subs = NULL;
5903
5904 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02005905 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01005906
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005907 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005908 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01005909 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01005910 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
5911 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02005912 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01005913
Willy Tarreau7838a792019-08-12 18:42:03 +02005914 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005915 return 0;
5916}
5917
5918
Olivier Houchard511efea2018-08-16 15:30:32 +02005919/* Called from the upper layer, to receive data */
5920static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
5921{
Olivier Houchard638b7992018-08-16 15:41:52 +02005922 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01005923 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01005924 struct htx *h2s_htx = NULL;
5925 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02005926 size_t ret = 0;
5927
Willy Tarreau7838a792019-08-12 18:42:03 +02005928 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
5929
Olivier Houchard511efea2018-08-16 15:30:32 +02005930 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005931 h2s_htx = htx_from_buf(&h2s->rxbuf);
5932 if (htx_is_empty(h2s_htx)) {
5933 /* Here htx_to_buf() will set buffer data to 0 because
5934 * the HTX is empty.
5935 */
5936 htx_to_buf(h2s_htx, &h2s->rxbuf);
5937 goto end;
5938 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01005939
Christopher Faulet9b79a102019-07-15 11:22:56 +02005940 ret = h2s_htx->data;
5941 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01005942
Christopher Faulet9b79a102019-07-15 11:22:56 +02005943 /* <buf> is empty and the message is small enough, swap the
5944 * buffers. */
5945 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005946 htx_to_buf(buf_htx, buf);
5947 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02005948 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
5949 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01005950 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005951
5952 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_EOM);
5953
5954 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
5955 buf_htx->flags |= HTX_FL_PARSING_ERROR;
5956 if (htx_is_empty(buf_htx))
5957 cs->flags |= CS_FL_EOI;
Willy Tarreau86724e22018-12-01 23:19:43 +01005958 }
Christopher Faulet810df062020-07-22 16:20:34 +02005959 else if (htx_is_empty(h2s_htx))
5960 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOI);
Olivier Houchard511efea2018-08-16 15:30:32 +02005961
Christopher Faulet9b79a102019-07-15 11:22:56 +02005962 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
5963 htx_to_buf(buf_htx, buf);
5964 htx_to_buf(h2s_htx, &h2s->rxbuf);
5965 ret -= h2s_htx->data;
5966
Christopher Faulet37070b22019-02-14 15:12:14 +01005967 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02005968 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01005969 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02005970 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01005971 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletfa922f02019-05-07 10:55:17 +02005972 if (h2s->flags & H2_SF_ES_RCVD)
5973 cs->flags |= CS_FL_EOI;
Christopher Fauletaade4ed2020-10-08 15:38:41 +02005974 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02005975 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01005976 if (cs->flags & CS_FL_ERR_PENDING)
5977 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02005978 if (b_size(&h2s->rxbuf)) {
5979 b_free(&h2s->rxbuf);
5980 offer_buffers(NULL, tasks_run_queue);
5981 }
Olivier Houchard511efea2018-08-16 15:30:32 +02005982 }
5983
Willy Tarreau082f5592018-11-25 08:03:32 +01005984 if (ret && h2c->dsi == h2s->id) {
5985 /* demux is blocking on this stream's buffer */
5986 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02005987 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01005988 }
Christopher Faulet37070b22019-02-14 15:12:14 +01005989
Willy Tarreau7838a792019-08-12 18:42:03 +02005990 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02005991 return ret;
5992}
5993
Olivier Houchardd846c262018-10-19 17:24:29 +02005994
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005995/* Called from the upper layer, to send data from buffer <buf> for no more than
5996 * <count> bytes. Returns the number of bytes effectively sent. Some status
5997 * flags may be updated on the conn_stream.
5998 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02005999static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006000{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006001 struct h2s *h2s = cs->ctx;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006002 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006003 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006004 struct htx *htx;
6005 struct htx_blk *blk;
6006 enum htx_blk_type btype;
6007 uint32_t bsize;
6008 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006009
Willy Tarreau7838a792019-08-12 18:42:03 +02006010 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6011
Olivier Houchardd360ac62019-03-22 17:37:16 +01006012 /* If we were not just woken because we wanted to send but couldn't,
6013 * and there's somebody else that is waiting to send, do nothing,
6014 * we will subscribe later and be put at the end of the list
6015 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006016 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006017 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6018 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 +01006019 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006020 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006021 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006022
Willy Tarreau7838a792019-08-12 18:42:03 +02006023 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6024 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 +02006025 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006026 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006027
Willy Tarreaucab22952019-10-31 15:48:18 +01006028 if (h2s->h2c->st0 >= H2_CS_ERROR) {
6029 cs->flags |= CS_FL_ERROR;
6030 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);
6031 return 0;
6032 }
6033
Christopher Faulet9b79a102019-07-15 11:22:56 +02006034 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006035
Willy Tarreau0bad0432018-06-14 16:54:01 +02006036 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006037 h2s->flags |= H2_SF_OUTGOING_DATA;
6038
Willy Tarreau751f2d02018-10-05 09:35:00 +02006039 if (h2s->id == 0) {
6040 int32_t id = h2c_get_next_sid(h2s->h2c);
6041
6042 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02006043 cs->flags |= CS_FL_ERROR;
Willy Tarreau7838a792019-08-12 18:42:03 +02006044 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 +02006045 return 0;
6046 }
6047
6048 eb32_delete(&h2s->by_id);
6049 h2s->by_id.key = h2s->id = id;
6050 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006051 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006052 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6053 }
6054
Christopher Faulet9b79a102019-07-15 11:22:56 +02006055 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6056 count && !htx_is_empty(htx)) {
6057 idx = htx_get_head(htx);
6058 blk = htx_get_blk(htx, idx);
6059 btype = htx_get_blk_type(blk);
6060 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006061
Christopher Faulet9b79a102019-07-15 11:22:56 +02006062 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006063 case HTX_BLK_REQ_SL:
6064 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006065 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006066 if (ret > 0) {
6067 total += ret;
6068 count -= ret;
6069 if (ret < bsize)
6070 goto done;
6071 }
6072 break;
6073
Willy Tarreau115e83b2018-12-01 19:17:53 +01006074 case HTX_BLK_RES_SL:
6075 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006076 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006077 if (ret > 0) {
6078 total += ret;
6079 count -= ret;
6080 if (ret < bsize)
6081 goto done;
6082 }
6083 break;
6084
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006085 case HTX_BLK_DATA:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006086 case HTX_BLK_EOM:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006087 /* all these cause the emission of a DATA frame (possibly empty).
6088 * This EOM necessarily is one before trailers, as the EOM following
6089 * trailers would have been consumed by the trailers parser.
6090 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006091 ret = h2s_frt_make_resp_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006092 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006093 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006094 total += ret;
6095 count -= ret;
6096 if (ret < bsize)
6097 goto done;
6098 }
6099 break;
6100
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006101 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006102 case HTX_BLK_EOT:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006103 /* This is the first trailers block, all the subsequent ones AND
6104 * the EOM will be swallowed by the parser.
6105 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006106 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006107 if (ret > 0) {
6108 total += ret;
6109 count -= ret;
6110 if (ret < bsize)
6111 goto done;
6112 }
6113 break;
6114
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006115 default:
6116 htx_remove_blk(htx, blk);
6117 total += bsize;
6118 count -= bsize;
6119 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006120 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006121 }
6122
Christopher Faulet9b79a102019-07-15 11:22:56 +02006123 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006124 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006125 /* trim any possibly pending data after we close (extra CR-LF,
6126 * unprocessed trailers, abnormal extra data, ...)
6127 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006128 total += count;
6129 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006130 }
6131
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006132 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006133 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006134 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 +01006135 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006136 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006137 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006138 }
6139
Christopher Faulet9b79a102019-07-15 11:22:56 +02006140 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006141
Olivier Houchard7505f942018-08-21 18:10:44 +02006142 if (total > 0) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006143 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau7838a792019-08-12 18:42:03 +02006144 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 +02006145 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Olivier Houchardd846c262018-10-19 17:24:29 +02006146
Olivier Houchard7505f942018-08-21 18:10:44 +02006147 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006148 /* If we're waiting for flow control, and we got a shutr on the
6149 * connection, we will never be unlocked, so add an error on
6150 * the conn_stream.
6151 */
6152 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
6153 !b_data(&h2s->h2c->dbuf) &&
6154 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006155 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 +01006156 if (cs->flags & CS_FL_EOS)
6157 cs->flags |= CS_FL_ERROR;
6158 else
6159 cs->flags |= CS_FL_ERR_PENDING;
6160 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006161
Willy Tarreau5723f292020-01-10 15:16:57 +01006162 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6163 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006164 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006165 LIST_DEL_INIT(&h2s->list);
6166 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006167
Willy Tarreau7838a792019-08-12 18:42:03 +02006168 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006169 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006170}
6171
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006172/* for debugging with CLI's "show fd" command */
Willy Tarreau83061a82018-07-13 11:56:34 +02006173static void h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006174{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01006175 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01006176 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006177 struct eb32_node *node;
6178 int fctl_cnt = 0;
6179 int send_cnt = 0;
6180 int tree_cnt = 0;
6181 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02006182 struct buffer *hmbuf, *tmbuf;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006183
6184 if (!h2c)
6185 return;
6186
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006187 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006188 fctl_cnt++;
6189
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006190 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006191 send_cnt++;
6192
Willy Tarreau3af37712018-12-18 14:34:41 +01006193 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006194 node = eb32_first(&h2c->streams_by_id);
6195 while (node) {
6196 h2s = container_of(node, struct h2s, by_id);
6197 tree_cnt++;
6198 if (!h2s->cs)
6199 orph_cnt++;
6200 node = eb32_next(node);
6201 }
6202
Willy Tarreau60f62682019-05-26 11:32:27 +02006203 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006204 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006205 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau987c0632018-12-18 10:32:05 +01006206 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02006207 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
6208 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006209 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau616ac812018-07-24 14:12:42 +02006210 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006211 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006212 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
6213 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
6214 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02006215 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6216 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6217 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006218 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6219 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006220
6221 if (h2s) {
Willy Tarreauab2ec452019-08-30 07:07:08 +02006222 chunk_appendf(msg, " last_h2s=%p .id=%d .st=%s.flg=0x%04x .rxbuf=%u@%p+%u/%u .cs=%p",
6223 h2s, h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
Willy Tarreau987c0632018-12-18 10:32:05 +01006224 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
6225 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
6226 h2s->cs);
6227 if (h2s->cs)
6228 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
6229 h2s->cs->flags, h2s->cs->data);
6230 }
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006231}
Willy Tarreau62f52692017-10-08 23:01:42 +02006232
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006233/* Migrate the the connection to the current thread.
6234 * Return 0 if successful, non-zero otherwise.
6235 * Expected to be called with the old thread lock held.
6236 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006237static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006238{
6239 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006240 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006241
6242 if (fd_takeover(conn->handle.fd, conn) != 0)
6243 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006244
6245 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6246 /* We failed to takeover the xprt, even if the connection may
6247 * still be valid, flag it as error'd, as we have already
6248 * taken over the fd, and wake the tasklet, so that it will
6249 * destroy it.
6250 */
6251 conn->flags |= CO_FL_ERROR;
6252 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6253 return -1;
6254 }
6255
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006256 if (h2c->wait_event.events)
6257 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6258 h2c->wait_event.events, &h2c->wait_event);
6259 /* To let the tasklet know it should free itself, and do nothing else,
6260 * set its context to NULL.
6261 */
6262 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006263 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006264
6265 task = h2c->task;
6266 if (task) {
6267 task->context = NULL;
6268 h2c->task = NULL;
6269 __ha_barrier_store();
6270 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006271
6272 h2c->task = task_new(tid_bit);
6273 if (!h2c->task) {
6274 h2_release(h2c);
6275 return -1;
6276 }
6277 h2c->task->process = h2_timeout_task;
6278 h2c->task->context = h2c;
6279 }
6280 h2c->wait_event.tasklet = tasklet_new();
6281 if (!h2c->wait_event.tasklet) {
6282 h2_release(h2c);
6283 return -1;
6284 }
6285 h2c->wait_event.tasklet->process = h2_io_cb;
6286 h2c->wait_event.tasklet->context = h2c;
6287 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6288 SUB_RETRY_RECV, &h2c->wait_event);
6289
6290 return 0;
6291}
6292
Willy Tarreau62f52692017-10-08 23:01:42 +02006293/*******************************************************/
6294/* functions below are dedicated to the config parsers */
6295/*******************************************************/
6296
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006297/* config parser for global "tune.h2.header-table-size" */
6298static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
6299 struct proxy *defpx, const char *file, int line,
6300 char **err)
6301{
6302 if (too_many_args(1, args, err, NULL))
6303 return -1;
6304
6305 h2_settings_header_table_size = atoi(args[1]);
6306 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6307 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6308 return -1;
6309 }
6310 return 0;
6311}
Willy Tarreau62f52692017-10-08 23:01:42 +02006312
Willy Tarreaue6baec02017-07-27 11:45:11 +02006313/* config parser for global "tune.h2.initial-window-size" */
6314static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
6315 struct proxy *defpx, const char *file, int line,
6316 char **err)
6317{
6318 if (too_many_args(1, args, err, NULL))
6319 return -1;
6320
6321 h2_settings_initial_window_size = atoi(args[1]);
6322 if (h2_settings_initial_window_size < 0) {
6323 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6324 return -1;
6325 }
6326 return 0;
6327}
6328
Willy Tarreau5242ef82017-07-27 11:47:28 +02006329/* config parser for global "tune.h2.max-concurrent-streams" */
6330static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
6331 struct proxy *defpx, const char *file, int line,
6332 char **err)
6333{
6334 if (too_many_args(1, args, err, NULL))
6335 return -1;
6336
6337 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006338 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006339 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6340 return -1;
6341 }
6342 return 0;
6343}
6344
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006345/* config parser for global "tune.h2.max-frame-size" */
6346static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
6347 struct proxy *defpx, const char *file, int line,
6348 char **err)
6349{
6350 if (too_many_args(1, args, err, NULL))
6351 return -1;
6352
6353 h2_settings_max_frame_size = atoi(args[1]);
6354 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6355 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6356 return -1;
6357 }
6358 return 0;
6359}
6360
Willy Tarreau62f52692017-10-08 23:01:42 +02006361
6362/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006363/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006364/***************************************/
6365
6366/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006367static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006368 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006369 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006370 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006371 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006372 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006373 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006374 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01006375 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02006376 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006377 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006378 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006379 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006380 .shutr = h2_shutr,
6381 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006382 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006383 .show_fd = h2_show_fd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006384 .takeover = h2_takeover,
Amaury Denoyelle3d3c0912020-10-14 18:17:06 +02006385 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX|MX_FL_HOL_RISK,
Willy Tarreau62f52692017-10-08 23:01:42 +02006386 .name = "H2",
6387};
6388
Christopher Faulet32f61c02018-04-10 14:33:41 +02006389static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006390 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006391
Willy Tarreau0108d902018-11-25 19:14:37 +01006392INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6393
Willy Tarreau62f52692017-10-08 23:01:42 +02006394/* config keyword parsers */
6395static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006396 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006397 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006398 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006399 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006400 { 0, NULL, NULL }
6401}};
6402
Willy Tarreau0108d902018-11-25 19:14:37 +01006403INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006404
6405/* initialize internal structs after the config is parsed.
6406 * Returns zero on success, non-zero on error.
6407 */
6408static int init_h2()
6409{
6410 pool_head_hpack_tbl = create_pool("hpack_tbl",
6411 h2_settings_header_table_size,
6412 MEM_F_SHARED|MEM_F_EXACT);
6413 if (!pool_head_hpack_tbl)
6414 return -1;
6415 return 0;
6416}
6417
6418REGISTER_POST_CHECK(init_h2);