blob: 55ed8da48b67d09cd99f7fd2501d702607edd6d7 [file] [log] [blame]
Willy Tarreau62f52692017-10-08 23:01:42 +02001/*
2 * HTTP/2 mux-demux for connections
3 *
4 * Copyright 2017 Willy Tarreau <w@1wt.eu>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreaudfd3de82020-06-04 23:46:14 +020013#include <import/eb32tree.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020014#include <haproxy/api.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020015#include <haproxy/cfgparse.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020016#include <haproxy/connection.h>
Willy Tarreaubf073142020-06-03 12:04:01 +020017#include <haproxy/h2.h>
Willy Tarreaube327fa2020-06-03 09:09:57 +020018#include <haproxy/hpack-dec.h>
19#include <haproxy/hpack-enc.h>
20#include <haproxy/hpack-tbl.h>
Willy Tarreau87735332020-06-04 09:08:41 +020021#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020022#include <haproxy/htx.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020023#include <haproxy/istbuf.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020024#include <haproxy/log.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +020025#include <haproxy/net_helper.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020026#include <haproxy/session-t.h>
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +010027#include <haproxy/stats.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020028#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020029#include <haproxy/stream_interface.h>
Willy Tarreauc6d61d72020-06-04 19:02:42 +020030#include <haproxy/trace.h>
Willy Tarreau62f52692017-10-08 23:01:42 +020031
32
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010033/* dummy streams returned for closed, error, refused, idle and states */
Willy Tarreau2a856182017-05-16 15:20:39 +020034static const struct h2s *h2_closed_stream;
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010035static const struct h2s *h2_error_stream;
Willy Tarreau8d0d58b2018-12-23 18:29:12 +010036static const struct h2s *h2_refused_stream;
Willy Tarreau2a856182017-05-16 15:20:39 +020037static const struct h2s *h2_idle_stream;
38
Willy Tarreau5ab6b572017-09-22 08:05:00 +020039/* Connection flags (32 bit), in h2c->flags */
40#define H2_CF_NONE 0x00000000
41
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020042/* Flags indicating why writing to the mux is blocked. */
43#define H2_CF_MUX_MALLOC 0x00000001 // mux blocked on lack of connection's mux buffer
44#define H2_CF_MUX_MFULL 0x00000002 // mux blocked on connection's mux buffer full
45#define H2_CF_MUX_BLOCK_ANY 0x00000003 // aggregate of the mux flags above
46
Willy Tarreau315d8072017-12-10 22:17:57 +010047/* Flags indicating why writing to the demux is blocked.
48 * The first two ones directly affect the ability for the mux to receive data
49 * from the connection. The other ones affect the mux's ability to demux
50 * received data.
51 */
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020052#define H2_CF_DEM_DALLOC 0x00000004 // demux blocked on lack of connection's demux buffer
53#define H2_CF_DEM_DFULL 0x00000008 // demux blocked on connection's demux buffer full
Willy Tarreau315d8072017-12-10 22:17:57 +010054
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020055#define H2_CF_DEM_MBUSY 0x00000010 // demux blocked on connection's mux side busy
56#define H2_CF_DEM_MROOM 0x00000020 // demux blocked on lack of room in mux buffer
57#define H2_CF_DEM_SALLOC 0x00000040 // demux blocked on lack of stream's request buffer
58#define H2_CF_DEM_SFULL 0x00000080 // demux blocked on stream request buffer full
Willy Tarreauf2101912018-07-19 10:11:38 +020059#define H2_CF_DEM_TOOMANY 0x00000100 // demux blocked waiting for some conn_streams to leave
60#define H2_CF_DEM_BLOCK_ANY 0x000001F0 // aggregate of the demux flags above except DALLOC/DFULL
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020061
Willy Tarreau081d4722017-05-16 21:51:05 +020062/* other flags */
Willy Tarreauf2101912018-07-19 10:11:38 +020063#define H2_CF_GOAWAY_SENT 0x00001000 // a GOAWAY frame was successfully sent
64#define H2_CF_GOAWAY_FAILED 0x00002000 // a GOAWAY frame failed to be sent
65#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 +020066#define H2_CF_IS_BACK 0x00008000 // this is an outgoing connection
Willy Tarreau97aaa672018-12-23 09:49:04 +010067#define H2_CF_WINDOW_OPENED 0x00010000 // demux increased window already advertised
Willy Tarreau081d4722017-05-16 21:51:05 +020068
Willy Tarreau5ab6b572017-09-22 08:05:00 +020069/* H2 connection state, in h2c->st0 */
70enum h2_cs {
71 H2_CS_PREFACE, // init done, waiting for connection preface
72 H2_CS_SETTINGS1, // preface OK, waiting for first settings frame
73 H2_CS_FRAME_H, // first settings frame ok, waiting for frame header
74 H2_CS_FRAME_P, // frame header OK, waiting for frame payload
Willy Tarreaua20a5192017-12-27 11:02:06 +010075 H2_CS_FRAME_A, // frame payload OK, trying to send ACK frame
76 H2_CS_FRAME_E, // frame payload OK, trying to send RST frame
Willy Tarreau5ab6b572017-09-22 08:05:00 +020077 H2_CS_ERROR, // send GOAWAY(errcode) and close the connection ASAP
78 H2_CS_ERROR2, // GOAWAY(errcode) sent, close the connection ASAP
79 H2_CS_ENTRIES // must be last
80} __attribute__((packed));
81
Willy Tarreau51330962019-05-26 09:38:07 +020082
Willy Tarreau9c218e72019-05-26 10:08:28 +020083/* 32 buffers: one for the ring's root, rest for the mbuf itself */
84#define H2C_MBUF_CNT 32
Willy Tarreau51330962019-05-26 09:38:07 +020085
Willy Tarreau5ab6b572017-09-22 08:05:00 +020086/* H2 connection descriptor */
87struct h2c {
88 struct connection *conn;
89
90 enum h2_cs st0; /* mux state */
91 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
92
93 /* 16 bit hole here */
94 uint32_t flags; /* connection flags: H2_CF_* */
Willy Tarreau2e2083a2019-01-31 10:34:07 +010095 uint32_t streams_limit; /* maximum number of concurrent streams the peer supports */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020096 int32_t max_id; /* highest ID known on this connection, <0 before preface */
97 uint32_t rcvd_c; /* newly received data to ACK for the connection */
98 uint32_t rcvd_s; /* newly received data to ACK for the current stream (dsi) */
99
100 /* states for the demux direction */
101 struct hpack_dht *ddht; /* demux dynamic header table */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200102 struct buffer dbuf; /* demux buffer */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200103
104 int32_t dsi; /* demux stream ID (<0 = idle) */
105 int32_t dfl; /* demux frame length (if dsi >= 0) */
106 int8_t dft; /* demux frame type (if dsi >= 0) */
107 int8_t dff; /* demux frame flags (if dsi >= 0) */
Willy Tarreau05e5daf2017-12-11 15:17:36 +0100108 uint8_t dpl; /* demux pad length (part of dfl), init to 0 */
109 /* 8 bit hole here */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200110 int32_t last_sid; /* last processed stream ID for GOAWAY, <0 before preface */
111
112 /* states for the mux direction */
Willy Tarreau51330962019-05-26 09:38:07 +0200113 struct buffer mbuf[H2C_MBUF_CNT]; /* mux buffers (ring) */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200114 int32_t msi; /* mux stream ID (<0 = idle) */
115 int32_t mfl; /* mux frame length (if dsi >= 0) */
116 int8_t mft; /* mux frame type (if dsi >= 0) */
117 int8_t mff; /* mux frame flags (if dsi >= 0) */
118 /* 16 bit hole here */
119 int32_t miw; /* mux initial window size for all new streams */
120 int32_t mws; /* mux window size. Can be negative. */
121 int32_t mfs; /* mux's max frame size */
122
Willy Tarreauea392822017-10-31 10:02:25 +0100123 int timeout; /* idle timeout duration in ticks */
Willy Tarreau599391a2017-11-24 10:16:00 +0100124 int shut_timeout; /* idle timeout duration in ticks after GOAWAY was sent */
Willy Tarreau49745612017-12-03 18:56:02 +0100125 unsigned int nb_streams; /* number of streams in the tree */
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200126 unsigned int nb_cs; /* number of attached conn_streams */
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100127 unsigned int nb_reserved; /* number of reserved streams */
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100128 unsigned int stream_cnt; /* total number of streams seen */
Willy Tarreau0b37d652018-10-03 10:33:02 +0200129 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +0100130 struct task *task; /* timeout management task */
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100131 struct h2_counters *px_counters; /* h2 counters attached to proxy */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200132 struct eb_root streams_by_id; /* all active streams by their ID */
133 struct list send_list; /* list of blocked streams requesting to send */
134 struct list fctl_list; /* list of streams blocked by connection's fctl */
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200135 struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100136 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200137 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200138};
139
Willy Tarreau18312642017-10-11 07:57:07 +0200140/* H2 stream state, in h2s->st */
141enum h2_ss {
142 H2_SS_IDLE = 0, // idle
143 H2_SS_RLOC, // reserved(local)
144 H2_SS_RREM, // reserved(remote)
145 H2_SS_OPEN, // open
146 H2_SS_HREM, // half-closed(remote)
147 H2_SS_HLOC, // half-closed(local)
Willy Tarreau96060ba2017-10-16 18:34:34 +0200148 H2_SS_ERROR, // an error needs to be sent using RST_STREAM
Willy Tarreau18312642017-10-11 07:57:07 +0200149 H2_SS_CLOSED, // closed
150 H2_SS_ENTRIES // must be last
151} __attribute__((packed));
152
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200153#define H2_SS_MASK(state) (1UL << (state))
154#define H2_SS_IDLE_BIT (1UL << H2_SS_IDLE)
155#define H2_SS_RLOC_BIT (1UL << H2_SS_RLOC)
156#define H2_SS_RREM_BIT (1UL << H2_SS_RREM)
157#define H2_SS_OPEN_BIT (1UL << H2_SS_OPEN)
158#define H2_SS_HREM_BIT (1UL << H2_SS_HREM)
159#define H2_SS_HLOC_BIT (1UL << H2_SS_HLOC)
160#define H2_SS_ERROR_BIT (1UL << H2_SS_ERROR)
161#define H2_SS_CLOSED_BIT (1UL << H2_SS_CLOSED)
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200162
Willy Tarreau18312642017-10-11 07:57:07 +0200163/* HTTP/2 stream flags (32 bit), in h2s->flags */
164#define H2_SF_NONE 0x00000000
165#define H2_SF_ES_RCVD 0x00000001
166#define H2_SF_ES_SENT 0x00000002
167
168#define H2_SF_RST_RCVD 0x00000004 // received RST_STREAM
169#define H2_SF_RST_SENT 0x00000008 // sent RST_STREAM
170
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200171/* stream flags indicating the reason the stream is blocked */
172#define H2_SF_BLK_MBUSY 0x00000010 // blocked waiting for mux access (transient)
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200173#define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux (must be in send list)
174#define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl (must be in fctl list)
175#define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl (must be in blocked list)
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200176#define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above
177
Willy Tarreau454f9052017-10-26 19:40:35 +0200178/* stream flags indicating how data is supposed to be sent */
179#define H2_SF_DATA_CLEN 0x00000100 // data sent using content-length
Willy Tarreaud9464162020-01-10 18:25:07 +0100180/* unused flags: 0x00000200, 0x00000400 */
Willy Tarreau454f9052017-10-26 19:40:35 +0200181
Willy Tarreaud9464162020-01-10 18:25:07 +0100182#define H2_SF_NOTIFIED 0x00000800 // a paused stream was notified to try to send again
Willy Tarreau67434202017-11-06 20:20:51 +0100183#define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream
Willy Tarreauc4312d32017-11-07 12:01:53 +0100184#define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data
Willy Tarreau67434202017-11-06 20:20:51 +0100185
Willy Tarreau6cc85a52019-01-02 15:49:20 +0100186#define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream
187
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200188#define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy)
189#define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy)
Willy Tarreau3cf69fe2019-05-14 10:44:40 +0200190#define H2_SF_KILL_CONN 0x00020000 // kill the whole connection with this stream
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200191
192
Willy Tarreau18312642017-10-11 07:57:07 +0200193/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
Christopher Fauletfafd1b02020-11-03 18:25:52 +0100194 * it is being processed in the internal HTTP representation (HTX).
Willy Tarreau18312642017-10-11 07:57:07 +0200195 */
196struct h2s {
197 struct conn_stream *cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100198 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200199 struct h2c *h2c;
Willy Tarreau18312642017-10-11 07:57:07 +0200200 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200201 int32_t id; /* stream ID */
202 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200203 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200204 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
205 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200206 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100207 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200208 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Willy Tarreauf96508a2020-01-10 11:12:48 +0100209 struct wait_event *subs; /* recv wait_event the conn_stream associated is waiting on (via h2_subscribe) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200210 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Willy Tarreau5723f292020-01-10 15:16:57 +0100211 struct tasklet *shut_tl; /* deferred shutdown tasklet, to retry to send an RST after we failed to,
212 * in case there's no other subscription to do it */
Willy Tarreau18312642017-10-11 07:57:07 +0200213};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200214
Willy Tarreauc6405142017-09-21 20:23:50 +0200215/* descriptor for an h2 frame header */
216struct h2_fh {
217 uint32_t len; /* length, host order, 24 bits */
218 uint32_t sid; /* stream id, host order, 31 bits */
219 uint8_t ft; /* frame type */
220 uint8_t ff; /* frame flags */
221};
222
Willy Tarreau12ae2122019-08-08 18:23:12 +0200223/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200224static void h2_trace(enum trace_level level, uint64_t mask, \
225 const struct trace_source *src,
226 const struct ist where, const struct ist func,
227 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200228
229/* The event representation is split like this :
230 * strm - application layer
231 * h2s - internal H2 stream
232 * h2c - internal H2 connection
233 * conn - external connection
234 *
235 */
236static const struct trace_event h2_trace_events[] = {
237#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200238 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200239#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200240 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200241#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200242 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200243#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200244 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200245#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200246 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200247#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200248 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200249#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200250 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200251#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200252 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200253#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200254 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200255#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200256 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200257#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200258 { .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 +0200259#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200260 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200261#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200262 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200263#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200264 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200265#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200266 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200267#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200268 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200269#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200270 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200271#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200272 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200273#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200274 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200275#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200276 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200277#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200278 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200279#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200280 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200281#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200282 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200283#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200284 { .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 +0200285#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200286 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200287#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200288 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200289#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200290 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200291#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200292 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200293#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200294 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200295#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200296 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200297#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200298 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200299#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200300 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200301#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200302 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200303#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200304 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200305#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200306 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200307#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200308 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200309#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200310 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200311#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200312 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200313#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200314 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200315#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200316 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200317#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200318 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200319#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200320 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200321#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200322 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200323#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200324 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200325#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200326 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200327#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200328 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200329#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200330 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200331#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200332 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200333#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200334 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200335#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200336 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200337#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200338 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200339#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200340 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200341 { }
342};
343
344static const struct name_desc h2_trace_lockon_args[4] = {
345 /* arg1 */ { /* already used by the connection */ },
346 /* arg2 */ { .name="h2s", .desc="H2 stream" },
347 /* arg3 */ { },
348 /* arg4 */ { }
349};
350
351static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200352#define H2_VERB_CLEAN 1
353 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
354#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200355 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200356#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200357 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200358#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200359 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200360#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200361 { .name="complete", .desc="add full data dump when available" },
362 { /* end */ }
363};
364
365static struct trace_source trace_h2 = {
366 .name = IST("h2"),
367 .desc = "HTTP/2 multiplexer",
368 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200369 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200370 .known_events = h2_trace_events,
371 .lockon_args = h2_trace_lockon_args,
372 .decoding = h2_trace_decoding,
373 .report_events = ~0, // report everything by default
374};
375
376#define TRACE_SOURCE &trace_h2
377INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
378
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100379/* h2 stats module */
380enum {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100381 H2_ST_HEADERS_RCVD,
382 H2_ST_DATA_RCVD,
383 H2_ST_SETTINGS_RCVD,
384 H2_ST_RST_STREAM_RCVD,
385 H2_ST_GOAWAY_RCVD,
386
Amaury Denoyellea8879232020-10-27 17:16:03 +0100387 H2_ST_CONN_PROTO_ERR,
388 H2_ST_STRM_PROTO_ERR,
389 H2_ST_RST_STREAM_RESP,
390 H2_ST_GOAWAY_RESP,
391
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100392 H2_ST_OPEN_CONN,
393 H2_ST_OPEN_STREAM,
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100394 H2_ST_TOTAL_CONN,
395 H2_ST_TOTAL_STREAM,
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100396
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100397 H2_STATS_COUNT /* must be the last member of the enum */
398};
399
400static struct name_desc h2_stats[] = {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100401 [H2_ST_HEADERS_RCVD] = { .name = "h2_headers_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100402 .desc = "Total number of received HEADERS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100403 [H2_ST_DATA_RCVD] = { .name = "h2_data_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100404 .desc = "Total number of received DATA frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100405 [H2_ST_SETTINGS_RCVD] = { .name = "h2_settings_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100406 .desc = "Total number of received SETTINGS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100407 [H2_ST_RST_STREAM_RCVD] = { .name = "h2_rst_stream_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100408 .desc = "Total number of received RST_STREAM frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100409 [H2_ST_GOAWAY_RCVD] = { .name = "h2_goaway_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100410 .desc = "Total number of received GOAWAY frames" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100411
412 [H2_ST_CONN_PROTO_ERR] = { .name = "h2_detected_conn_protocol_errors",
413 .desc = "Total number of connection protocol errors" },
414 [H2_ST_STRM_PROTO_ERR] = { .name = "h2_detected_strm_protocol_errors",
415 .desc = "Total number of stream protocol errors" },
416 [H2_ST_RST_STREAM_RESP] = { .name = "h2_rst_stream_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100417 .desc = "Total number of RST_STREAM sent on detected error" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100418 [H2_ST_GOAWAY_RESP] = { .name = "h2_goaway_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100419 .desc = "Total number of GOAWAY sent on detected error" },
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100420
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100421 [H2_ST_OPEN_CONN] = { .name = "h2_open_connections",
422 .desc = "Count of currently open connections" },
423 [H2_ST_OPEN_STREAM] = { .name = "h2_backend_open_streams",
424 .desc = "Count of currently open streams" },
425 [H2_ST_TOTAL_CONN] = { .name = "h2_open_connections",
426 .desc = "Total number of connections" },
427 [H2_ST_TOTAL_STREAM] = { .name = "h2_backend_open_streams",
428 .desc = "Total number of streams" },
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100429};
430
431static struct h2_counters {
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100432 long long headers_rcvd; /* total number of HEADERS frame received */
433 long long data_rcvd; /* total number of DATA frame received */
434 long long settings_rcvd; /* total number of SETTINGS frame received */
435 long long rst_stream_rcvd; /* total number of RST_STREAM frame received */
436 long long goaway_rcvd; /* total number of GOAWAY frame received */
Amaury Denoyellea8879232020-10-27 17:16:03 +0100437
438 long long conn_proto_err; /* total number of protocol errors detected */
439 long long strm_proto_err; /* total number of protocol errors detected */
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100440 long long rst_stream_resp; /* total number of RST_STREAM frame sent on error */
441 long long goaway_resp; /* total number of GOAWAY frame sent on error */
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100442
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100443 long long open_conns; /* count of currently open connections */
444 long long open_streams; /* count of currently open streams */
445 long long total_conns; /* total number of connections */
446 long long total_streams; /* total number of streams */
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100447} h2_counters;
448
449static void h2_fill_stats(void *data, struct field *stats)
450{
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100451 struct h2_counters *counters = data;
452
453 stats[H2_ST_HEADERS_RCVD] = mkf_u64(FN_COUNTER, counters->headers_rcvd);
454 stats[H2_ST_DATA_RCVD] = mkf_u64(FN_COUNTER, counters->data_rcvd);
455 stats[H2_ST_SETTINGS_RCVD] = mkf_u64(FN_COUNTER, counters->settings_rcvd);
456 stats[H2_ST_RST_STREAM_RCVD] = mkf_u64(FN_COUNTER, counters->rst_stream_rcvd);
457 stats[H2_ST_GOAWAY_RCVD] = mkf_u64(FN_COUNTER, counters->goaway_rcvd);
Amaury Denoyellea8879232020-10-27 17:16:03 +0100458
459 stats[H2_ST_CONN_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->conn_proto_err);
460 stats[H2_ST_STRM_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->strm_proto_err);
461 stats[H2_ST_RST_STREAM_RESP] = mkf_u64(FN_COUNTER, counters->rst_stream_resp);
462 stats[H2_ST_GOAWAY_RESP] = mkf_u64(FN_COUNTER, counters->goaway_resp);
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100463
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100464 stats[H2_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
465 stats[H2_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
466 stats[H2_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
467 stats[H2_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100468}
469
470static struct stats_module h2_stats_module = {
471 .name = "h2",
472 .fill_stats = h2_fill_stats,
473 .stats = h2_stats,
474 .stats_count = H2_STATS_COUNT,
475 .counters = &h2_counters,
476 .counters_size = sizeof(h2_counters),
477 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
478 .clearable = 1,
479};
480
481INITCALL1(STG_REGISTER, stats_register_module, &h2_stats_module);
482
Willy Tarreau8ceae722018-11-26 11:58:30 +0100483/* the h2c connection pool */
484DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
485
486/* the h2s stream pool */
487DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
488
Willy Tarreaudc572362018-12-12 08:08:05 +0100489/* The default connection window size is 65535, it may only be enlarged using
490 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
491 * we'll pretend we already received the difference between the two to send
492 * an equivalent window update to enlarge it to 2G-1.
493 */
494#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
495
Willy Tarreau455d5682019-05-24 19:42:18 +0200496/* maximum amount of data we're OK with re-aligning for buffer optimizations */
497#define MAX_DATA_REALIGN 1024
498
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200499/* a few settings from the global section */
500static int h2_settings_header_table_size = 4096; /* initial value */
Willy Tarreaue6baec02017-07-27 11:45:11 +0200501static int h2_settings_initial_window_size = 65535; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100502static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100503static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200504
Willy Tarreau2a856182017-05-16 15:20:39 +0200505/* a dmumy closed stream */
506static const struct h2s *h2_closed_stream = &(const struct h2s){
507 .cs = NULL,
508 .h2c = NULL,
509 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100510 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100511 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200512 .id = 0,
513};
514
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100515/* a dmumy closed stream returning a PROTOCOL_ERROR error */
516static const struct h2s *h2_error_stream = &(const struct h2s){
517 .cs = NULL,
518 .h2c = NULL,
519 .st = H2_SS_CLOSED,
520 .errcode = H2_ERR_PROTOCOL_ERROR,
521 .flags = 0,
522 .id = 0,
523};
524
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100525/* a dmumy closed stream returning a REFUSED_STREAM error */
526static const struct h2s *h2_refused_stream = &(const struct h2s){
527 .cs = NULL,
528 .h2c = NULL,
529 .st = H2_SS_CLOSED,
530 .errcode = H2_ERR_REFUSED_STREAM,
531 .flags = 0,
532 .id = 0,
533};
534
Willy Tarreau2a856182017-05-16 15:20:39 +0200535/* and a dummy idle stream for use with any unannounced stream */
536static const struct h2s *h2_idle_stream = &(const struct h2s){
537 .cs = NULL,
538 .h2c = NULL,
539 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100540 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200541 .id = 0,
542};
543
Olivier Houchard9f6af332018-05-25 14:04:04 +0200544static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200545static int h2_send(struct h2c *h2c);
546static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200547static int h2_process(struct h2c *h2c);
Olivier Houchard29fb89d2018-08-02 18:56:36 +0200548static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100549static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Willy Tarreau4790f7c2019-01-24 11:33:02 +0100550static 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 +0100551static int h2_frt_transfer_data(struct h2s *h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +0200552static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state);
Olivier Houchardf502aca2018-12-14 19:42:40 +0100553static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100554static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200555
Willy Tarreauab2ec452019-08-30 07:07:08 +0200556/* returns a h2c state as an abbreviated 3-letter string, or "???" if unknown */
557static inline const char *h2c_st_to_str(enum h2_cs st)
558{
559 switch (st) {
560 case H2_CS_PREFACE: return "PRF";
561 case H2_CS_SETTINGS1: return "STG";
562 case H2_CS_FRAME_H: return "FRH";
563 case H2_CS_FRAME_P: return "FRP";
564 case H2_CS_FRAME_A: return "FRA";
565 case H2_CS_FRAME_E: return "FRE";
566 case H2_CS_ERROR: return "ERR";
567 case H2_CS_ERROR2: return "ER2";
568 default: return "???";
569 }
570}
571
572/* returns a h2s state as an abbreviated 3-letter string, or "???" if unknown */
573static inline const char *h2s_st_to_str(enum h2_ss st)
574{
575 switch (st) {
576 case H2_SS_IDLE: return "IDL"; // idle
577 case H2_SS_RLOC: return "RSL"; // reserved local
578 case H2_SS_RREM: return "RSR"; // reserved remote
579 case H2_SS_OPEN: return "OPN"; // open
580 case H2_SS_HREM: return "HCR"; // half-closed remote
581 case H2_SS_HLOC: return "HCL"; // half-closed local
582 case H2_SS_ERROR : return "ERR"; // error
583 case H2_SS_CLOSED: return "CLO"; // closed
584 default: return "???";
585 }
586}
587
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200588/* the H2 traces always expect that arg1, if non-null, is of type connection
589 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
590 * that arg3, if non-null, is either of type htx for tx headers, or of type
591 * buffer for everything else.
592 */
593static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
594 const struct ist where, const struct ist func,
595 const void *a1, const void *a2, const void *a3, const void *a4)
596{
597 const struct connection *conn = a1;
598 const struct h2c *h2c = conn ? conn->ctx : NULL;
599 const struct h2s *h2s = a2;
600 const struct buffer *buf = a3;
601 const struct htx *htx;
602 int pos;
603
604 if (!h2c) // nothing to add
605 return;
606
Willy Tarreau17104d42019-08-30 07:12:55 +0200607 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200608 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
609
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100610 if (h2c->errcode)
611 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
612
Willy Tarreau73db4342019-09-25 07:28:44 +0200613 if (h2c->dsi >= 0 &&
614 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
Willy Tarreau8520d872020-09-18 07:39:29 +0200615 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 +0200616 }
617
618 if (h2s) {
619 if (h2s->id <= 0)
620 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
621 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100622 if (h2s->id && h2s->errcode)
623 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200624 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200625 }
626
627 /* Let's dump decoded requests and responses right after parsing. They
628 * are traced at level USER with a few recognizable flags.
629 */
630 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
631 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
632 htx = htxbuf(buf); // recv req/res
633 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
634 htx = a3; // send req/res
635 else
636 htx = NULL;
637
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200638 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200639 const struct htx_blk *blk = htx_get_blk(htx, pos);
640 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
641 enum htx_blk_type type = htx_get_blk_type(blk);
642
643 if (type == HTX_BLK_REQ_SL)
644 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200645 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200646 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
647 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
648 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
649 else if (type == HTX_BLK_RES_SL)
650 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200651 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200652 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
653 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
654 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
655 }
656}
657
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200658
659/* Detect a pending read0 for a H2 connection. It happens if a read0 is pending
660 * on the connection AND if there is no more data in the demux buffer. The
661 * function returns 1 to report a read0 or 0 otherwise.
662 */
663static int h2c_read0_pending(struct h2c *h2c)
664{
665 if (conn_xprt_read0_pending(h2c->conn) && !b_data(&h2c->dbuf))
666 return 1;
667 return 0;
668}
669
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200670/* returns true if the connection is allowed to expire, false otherwise. A
671 * connection may expire when:
672 * - it has no stream
673 * - it has data in the mux buffer
674 * - it has streams in the blocked list
675 * - it has streams in the fctl list
676 * - it has streams in the send list
677 * Otherwise it means some streams are waiting in the data layer and it should
678 * not expire.
679 */
680static inline int h2c_may_expire(const struct h2c *h2c)
681{
682 return eb_is_empty(&h2c->streams_by_id) ||
683 br_data(h2c->mbuf) ||
684 !LIST_ISEMPTY(&h2c->blocked_list) ||
685 !LIST_ISEMPTY(&h2c->fctl_list) ||
Willy Tarreaud9464162020-01-10 18:25:07 +0100686 !LIST_ISEMPTY(&h2c->send_list);
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200687}
688
Olivier Houchard7a977432019-03-21 15:47:13 +0100689static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200690h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100691{
692 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
693 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
694 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
695 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200696 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100697 (conn_xprt_read0_pending(h2c->conn) ||
698 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
699 return 1;
700
701 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100702}
703
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200704/*****************************************************/
705/* functions below are for dynamic buffer management */
706/*****************************************************/
707
Willy Tarreau315d8072017-12-10 22:17:57 +0100708/* indicates whether or not the we may call the h2_recv() function to attempt
709 * to receive data into the buffer and/or demux pending data. The condition is
710 * a bit complex due to some API limits for now. The rules are the following :
711 * - if an error or a shutdown was detected on the connection and the buffer
712 * is empty, we must not attempt to receive
713 * - if the demux buf failed to be allocated, we must not try to receive and
714 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100715 * - if no flag indicates a blocking condition, we may attempt to receive,
716 * regardless of whether the demux buffer is full or not, so that only
717 * de demux part decides whether or not to block. This is needed because
718 * the connection API indeed prevents us from re-enabling receipt that is
719 * already enabled in a polled state, so we must always immediately stop
720 * as soon as the demux can't proceed so as never to hit an end of read
721 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100722 * - otherwise must may not attempt
723 */
724static inline int h2_recv_allowed(const struct h2c *h2c)
725{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200726 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100727 (h2c->st0 >= H2_CS_ERROR ||
728 h2c->conn->flags & CO_FL_ERROR ||
729 conn_xprt_read0_pending(h2c->conn)))
730 return 0;
731
732 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100733 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100734 return 1;
735
736 return 0;
737}
738
Willy Tarreau47b515a2018-12-21 16:09:41 +0100739/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200740static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100741{
742 if (!h2_recv_allowed(h2c))
743 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200744 if ((!consider_buffer || !b_data(&h2c->dbuf))
745 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100746 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200747 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100748}
749
750
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100751/* returns true if the front connection has too many conn_streams attached */
752static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200753{
Willy Tarreaua8754662018-12-23 20:43:58 +0100754 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200755}
756
Willy Tarreau44e973f2018-03-01 17:49:30 +0100757/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
758 * flags are used to figure what buffer was requested. It returns 1 if the
759 * allocation succeeds, in which case the connection is woken up, or 0 if it's
760 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200761 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100762static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200763{
764 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100765 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200766
Willy Tarreau44e973f2018-03-01 17:49:30 +0100767 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc_margin(&h2c->dbuf, 0)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200768 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200769 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200770 return 1;
771 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200772
Willy Tarreau51330962019-05-26 09:38:07 +0200773 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc_margin(br_tail(h2c->mbuf), 0)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100774 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200775
776 if (h2c->flags & H2_CF_DEM_MROOM) {
777 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200778 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200779 }
Willy Tarreau14398122017-09-22 14:26:04 +0200780 return 1;
781 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100782
783 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
784 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Olivier Houchard638b7992018-08-16 15:41:52 +0200785 b_alloc_margin(&h2s->rxbuf, 0)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100786 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200787 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100788 return 1;
789 }
790
Willy Tarreau14398122017-09-22 14:26:04 +0200791 return 0;
792}
793
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200794static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200795{
796 struct buffer *buf = NULL;
797
Willy Tarreau21046592020-02-26 10:39:36 +0100798 if (likely(!MT_LIST_ADDED(&h2c->buf_wait.list)) &&
Willy Tarreau44e973f2018-03-01 17:49:30 +0100799 unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) {
800 h2c->buf_wait.target = h2c;
801 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreau86891272020-07-10 08:22:26 +0200802 MT_LIST_ADDQ(&buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200803 }
804 return buf;
805}
806
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200807static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200808{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200809 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100810 b_free(bptr);
Willy Tarreau201840a2019-05-29 17:50:48 +0200811 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau14398122017-09-22 14:26:04 +0200812 }
813}
814
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200815static inline void h2_release_mbuf(struct h2c *h2c)
816{
817 struct buffer *buf;
818 unsigned int count = 0;
819
820 while (b_size(buf = br_head_pick(h2c->mbuf))) {
821 b_free(buf);
822 count++;
823 }
824 if (count)
Willy Tarreau201840a2019-05-29 17:50:48 +0200825 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200826}
827
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100828/* returns the number of allocatable outgoing streams for the connection taking
829 * the last_sid and the reserved ones into account.
830 */
831static inline int h2_streams_left(const struct h2c *h2c)
832{
833 int ret;
834
835 /* consider the number of outgoing streams we're allowed to create before
836 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
837 * nb_reserved is the number of streams which don't yet have an ID.
838 */
839 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
840 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
841 if (ret < 0)
842 ret = 0;
843 return ret;
844}
845
Willy Tarreau00f18a32019-01-26 12:19:01 +0100846/* returns the number of streams in use on a connection to figure if it's
847 * idle or not. We check nb_cs and not nb_streams as the caller will want
848 * to know if it was the last one after a detach().
849 */
850static int h2_used_streams(struct connection *conn)
851{
852 struct h2c *h2c = conn->ctx;
853
854 return h2c->nb_cs;
855}
856
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100857/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100858static int h2_avail_streams(struct connection *conn)
859{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100860 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100861 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100862 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100863
Willy Tarreau6afec462019-01-28 06:40:19 +0100864 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
865 * streams on the connection.
866 */
867 if (h2c->last_sid >= 0)
868 return 0;
869
Willy Tarreauc61966f2019-10-31 15:10:03 +0100870 if (h2c->st0 >= H2_CS_ERROR)
871 return 0;
872
Willy Tarreau86949782019-01-31 10:42:05 +0100873 /* note: may be negative if a SETTINGS frame changes the limit */
874 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100875
876 /* we must also consider the limit imposed by stream IDs */
877 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100878 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100879 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100880 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
881 ret1 = MIN(ret1, ret2);
882 }
883 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100884}
885
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200886
Willy Tarreau62f52692017-10-08 23:01:42 +0200887/*****************************************************************/
888/* functions below are dedicated to the mux setup and management */
889/*****************************************************************/
890
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200891/* Initialize the mux once it's attached. For outgoing connections, the context
892 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200893 * connections from the fact that the context is still NULL (even during mux
894 * upgrades). <input> is always used as Input buffer and may contain data. It is
895 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200896 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200897static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
898 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200899{
900 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100901 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200902 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200903
Christopher Fauletf81ef032019-10-04 15:19:43 +0200904 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200905
Willy Tarreaubafbe012017-11-24 17:34:44 +0100906 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200907 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200908 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200909
Christopher Faulete9b70722019-04-08 10:46:02 +0200910 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200911 h2c->flags = H2_CF_IS_BACK;
912 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
913 if (tick_isset(prx->timeout.serverfin))
914 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100915
916 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
917 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200918 } else {
919 h2c->flags = H2_CF_NONE;
920 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
921 if (tick_isset(prx->timeout.clientfin))
922 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100923
924 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
925 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200926 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100927
Willy Tarreau0b37d652018-10-03 10:33:02 +0200928 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100929 h2c->task = NULL;
Willy Tarreau3f133572017-10-31 19:21:06 +0100930 if (tick_isset(h2c->timeout)) {
931 t = task_new(tid_bit);
932 if (!t)
933 goto fail;
934
935 h2c->task = t;
936 t->process = h2_timeout_task;
937 t->context = h2c;
938 t->expire = tick_add(now_ms, h2c->timeout);
939 }
Willy Tarreauea392822017-10-31 10:02:25 +0100940
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200941 h2c->wait_event.tasklet = tasklet_new();
942 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200943 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200944 h2c->wait_event.tasklet->process = h2_io_cb;
945 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100946 h2c->wait_event.events = 0;
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200947
Willy Tarreau2bdcc702020-05-19 11:31:11 +0200948 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +0200949 if (!h2c->ddht)
950 goto fail;
951
952 /* Initialise the context. */
953 h2c->st0 = H2_CS_PREFACE;
954 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100955 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200956 h2c->max_id = -1;
957 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100958 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200959 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +0100960 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200961 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100962 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100963 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200964
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200965 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200966 h2c->dsi = -1;
967 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100968
Willy Tarreau32218eb2017-09-22 08:07:25 +0200969 h2c->last_sid = -1;
970
Willy Tarreau51330962019-05-26 09:38:07 +0200971 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +0200972 h2c->miw = 65535; /* mux initial window size */
973 h2c->mws = 65535; /* mux window size */
974 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +0200975 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200976 LIST_INIT(&h2c->send_list);
977 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200978 LIST_INIT(&h2c->blocked_list);
Willy Tarreau21046592020-02-26 10:39:36 +0100979 MT_LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200980
Christopher Fauletf81ef032019-10-04 15:19:43 +0200981 conn->ctx = h2c;
982
Willy Tarreau3f133572017-10-31 19:21:06 +0100983 if (t)
984 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +0100985
Willy Tarreau01b44822018-10-03 14:26:37 +0200986 if (h2c->flags & H2_CF_IS_BACK) {
987 /* FIXME: this is temporary, for outgoing connections we need
988 * to immediately allocate a stream until the code is modified
989 * so that the caller calls ->attach(). For now the outgoing cs
Christopher Fauletf81ef032019-10-04 15:19:43 +0200990 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +0200991 */
992 struct h2s *h2s;
993
Christopher Fauletf81ef032019-10-04 15:19:43 +0200994 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +0200995 if (!h2s)
996 goto fail_stream;
997 }
998
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100999 HA_ATOMIC_ADD(&h2c->px_counters->open_conns, 1);
Amaury Denoyellee7b891f2020-11-03 15:04:45 +01001000 HA_ATOMIC_ADD(&h2c->px_counters->total_conns, 1);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001001
Willy Tarreau0f383582018-10-03 14:22:21 +02001002 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02001003 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001004 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001005 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +02001006 fail_stream:
1007 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +02001008 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001009 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001010 if (h2c->wait_event.tasklet)
1011 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001012 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +02001013 fail_no_h2c:
Christopher Fauletf81ef032019-10-04 15:19:43 +02001014 conn->ctx = conn_ctx; /* restore saved ctx */
1015 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001016 return -1;
1017}
1018
Willy Tarreau751f2d02018-10-05 09:35:00 +02001019/* returns the next allocatable outgoing stream ID for the H2 connection, or
1020 * -1 if no more is allocatable.
1021 */
1022static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1023{
1024 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001025
1026 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001027 id = -1;
1028 return id;
1029}
1030
Willy Tarreau2373acc2017-10-12 17:35:14 +02001031/* returns the stream associated with id <id> or NULL if not found */
1032static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1033{
1034 struct eb32_node *node;
1035
Willy Tarreau751f2d02018-10-05 09:35:00 +02001036 if (id == 0)
1037 return (struct h2s *)h2_closed_stream;
1038
Willy Tarreau2a856182017-05-16 15:20:39 +02001039 if (id > h2c->max_id)
1040 return (struct h2s *)h2_idle_stream;
1041
Willy Tarreau2373acc2017-10-12 17:35:14 +02001042 node = eb32_lookup(&h2c->streams_by_id, id);
1043 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001044 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001045
1046 return container_of(node, struct h2s, by_id);
1047}
1048
Christopher Faulet73c12072019-04-08 11:23:22 +02001049/* release function. This one should be called to free all resources allocated
1050 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001051 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001052static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001053{
William Dauchy477757c2020-08-07 22:19:23 +02001054 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001055
Willy Tarreau7838a792019-08-12 18:42:03 +02001056 TRACE_ENTER(H2_EV_H2C_END);
1057
Willy Tarreau32218eb2017-09-22 08:07:25 +02001058 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +02001059 /* The connection must be aattached to this mux to be released */
1060 if (h2c->conn && h2c->conn->ctx == h2c)
1061 conn = h2c->conn;
1062
Willy Tarreau7838a792019-08-12 18:42:03 +02001063 TRACE_DEVEL("freeing h2c", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001064 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +02001065
Willy Tarreau21046592020-02-26 10:39:36 +01001066 if (MT_LIST_ADDED(&h2c->buf_wait.list))
1067 MT_LIST_DEL(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001068
Willy Tarreau44e973f2018-03-01 17:49:30 +01001069 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +02001070 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +01001071
Willy Tarreauea392822017-10-31 10:02:25 +01001072 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +02001073 h2c->task->context = NULL;
1074 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +01001075 h2c->task = NULL;
1076 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001077 if (h2c->wait_event.tasklet)
1078 tasklet_free(h2c->wait_event.tasklet);
Christopher Faulet21d849f2019-09-18 11:07:20 +02001079 if (conn && h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001080 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Christopher Faulet21d849f2019-09-18 11:07:20 +02001081 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001082
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001083 HA_ATOMIC_SUB(&h2c->px_counters->open_conns, 1);
1084
Willy Tarreaubafbe012017-11-24 17:34:44 +01001085 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001086 }
1087
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001088 if (conn) {
1089 conn->mux = NULL;
1090 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001091 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001092
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001093 conn_stop_tracking(conn);
1094 conn_full_close(conn);
1095 if (conn->destroy_cb)
1096 conn->destroy_cb(conn);
1097 conn_free(conn);
1098 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001099
1100 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001101}
1102
1103
Willy Tarreau71681172017-10-23 14:39:06 +02001104/******************************************************/
1105/* functions below are for the H2 protocol processing */
1106/******************************************************/
1107
1108/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001109static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001110{
1111 return h2s ? h2s->id : 0;
1112}
1113
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001114/* returns the sum of the stream's own window size and the mux's initial
1115 * window, which together form the stream's effective window size.
1116 */
1117static inline int h2s_mws(const struct h2s *h2s)
1118{
1119 return h2s->sws + h2s->h2c->miw;
1120}
1121
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001122/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001123static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001124{
1125 if (h2c->msi < 0)
1126 return 0;
1127
1128 if (h2c->msi == h2s_id(h2s))
1129 return 0;
1130
1131 return 1;
1132}
1133
Willy Tarreau741d6df2017-10-17 08:00:59 +02001134/* marks an error on the connection */
Willy Tarreau1f094672017-11-20 21:27:45 +01001135static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001136{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001137 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001138 h2c->errcode = err;
1139 h2c->st0 = H2_CS_ERROR;
1140}
1141
Willy Tarreau175cebb2019-01-24 10:02:24 +01001142/* marks an error on the stream. It may also update an already closed stream
1143 * (e.g. to report an error after an RST was received).
1144 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001145static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001146{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001147 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001148 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001149 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001150 if (h2s->st < H2_SS_ERROR)
1151 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +01001152 if (h2s->cs)
1153 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001154 }
1155}
1156
Willy Tarreau7e094452018-12-19 18:08:52 +01001157/* attempt to notify the data layer of recv availability */
1158static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1159{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001160 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001161 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001162 tasklet_wakeup(h2s->subs->tasklet);
1163 h2s->subs->events &= ~SUB_RETRY_RECV;
1164 if (!h2s->subs->events)
1165 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001166 }
1167}
1168
1169/* attempt to notify the data layer of send availability */
1170static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1171{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001172 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001173 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001174 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001175 tasklet_wakeup(h2s->subs->tasklet);
1176 h2s->subs->events &= ~SUB_RETRY_SEND;
1177 if (!h2s->subs->events)
1178 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001179 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001180 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1181 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1182 tasklet_wakeup(h2s->shut_tl);
1183 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001184}
1185
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001186/* alerts the data layer, trying to wake it up by all means, following
1187 * this sequence :
1188 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1189 * - if its subscribed to send, then it's woken up for send
1190 * - if it was subscribed to neither, its ->wake() callback is called
1191 * It is safe to call this function with a closed stream which doesn't have a
1192 * conn_stream anymore.
1193 */
1194static void __maybe_unused h2s_alert(struct h2s *h2s)
1195{
Willy Tarreau7838a792019-08-12 18:42:03 +02001196 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1197
Willy Tarreauf96508a2020-01-10 11:12:48 +01001198 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001199 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001200 h2s_notify_recv(h2s);
1201 h2s_notify_send(h2s);
1202 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001203 else if (h2s->cs && h2s->cs->data_cb->wake != NULL) {
1204 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001205 h2s->cs->data_cb->wake(h2s->cs);
Willy Tarreau7838a792019-08-12 18:42:03 +02001206 }
1207
1208 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001209}
1210
Willy Tarreaue4820742017-07-27 13:37:23 +02001211/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001212static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001213{
1214 uint8_t *out = frame;
1215
1216 *out = len >> 16;
1217 write_n16(out + 1, len);
1218}
1219
Willy Tarreau54c15062017-10-10 17:10:03 +02001220/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1221 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1222 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001223 * available in the buffer's input prior to calling this function. The buffer
1224 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001225 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001226static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001227 const struct buffer *b, int o)
1228{
Willy Tarreau591d4452018-06-15 17:21:00 +02001229 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 +02001230}
1231
Willy Tarreau1f094672017-11-20 21:27:45 +01001232static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001233{
Willy Tarreau591d4452018-06-15 17:21:00 +02001234 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001235}
1236
Willy Tarreau1f094672017-11-20 21:27:45 +01001237static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001238{
Willy Tarreau591d4452018-06-15 17:21:00 +02001239 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001240}
1241
Willy Tarreau1f094672017-11-20 21:27:45 +01001242static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001243{
Willy Tarreau591d4452018-06-15 17:21:00 +02001244 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001245}
1246
1247
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001248/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1249 * The algorithm is not obvious. It turns out that H2 headers are neither
1250 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1251 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001252 *
1253 * b0 b1 b2 b3 b4 b5..b8
1254 * +----------+---------+--------+----+----+----------------------+
1255 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1256 * +----------+---------+--------+----+----+----------------------+
1257 *
1258 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1259 * we get the sid properly aligned and ordered, and 16 bits of len properly
1260 * ordered as well. The type and flags can be extracted using bit shifts from
1261 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001262 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1263 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001264 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001265static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001266{
1267 uint64_t w;
1268
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001269 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001270 return 0;
1271
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001272 w = h2_get_n64(b, o + 1);
1273 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001274 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1275 h->ff = w >> 32;
1276 h->ft = w >> 40;
1277 h->len += w >> 48;
1278 return 1;
1279}
1280
1281/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1282 * h2_peek_frame_hdr() above.
1283 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001284static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001285{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001286 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001287}
1288
1289/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001290static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001291{
1292 int ret;
1293
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001294 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001295 if (ret > 0)
1296 h2_skip_frame_hdr(b);
1297 return ret;
1298}
1299
Willy Tarreaucb985a42019-10-07 16:56:34 +02001300
1301/* try to fragment the headers frame present at the beginning of buffer <b>,
1302 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1303 * success. Typical causes of failure include a buffer not large enough to
1304 * add extra frame headers. The existing frame size is read in the current
1305 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1306 * and its length will be adjusted. The stream ID for continuation frames will
1307 * be copied from the initial frame's.
1308 */
1309static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1310{
1311 size_t remain = b->data - 9;
1312 int extra_frames = (remain - 1) / mfs;
1313 size_t fsize;
1314 char *fptr;
1315 int frame;
1316
1317 if (b->data <= mfs + 9)
1318 return 1;
1319
1320 /* Too large a frame, we need to fragment it using CONTINUATION
1321 * frames. We start from the end and move tails as needed.
1322 */
1323 if (b->data + extra_frames * 9 > b->size)
1324 return 0;
1325
1326 for (frame = extra_frames; frame; frame--) {
1327 fsize = ((remain - 1) % mfs) + 1;
1328 remain -= fsize;
1329
1330 /* move data */
1331 fptr = b->area + 9 + remain + (frame - 1) * 9;
1332 memmove(fptr + 9, b->area + 9 + remain, fsize);
1333 b->data += 9;
1334
1335 /* write new frame header */
1336 h2_set_frame_size(fptr, fsize);
1337 fptr[3] = H2_FT_CONTINUATION;
1338 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1339 write_n32(fptr + 5, read_n32(b->area + 5));
1340 }
1341
1342 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1343 h2_set_frame_size(b->area, remain);
1344 return 1;
1345}
1346
1347
Willy Tarreau00dd0782018-03-01 16:31:34 +01001348/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1349 * its connection if the stream was not yet closed. Please use this exclusively
1350 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001351 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001352static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001353{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001354 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001355 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001356 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001357 if (!h2s->id)
1358 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +01001359 if (h2s->cs) {
Willy Tarreaua27db382019-03-25 18:13:16 +01001360 if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf))
1361 h2s_notify_recv(h2s);
1362 }
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001363 HA_ATOMIC_SUB(&h2s->h2c->px_counters->open_streams, 1);
1364
Willy Tarreau7838a792019-08-12 18:42:03 +02001365 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001366 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001367 h2s->st = H2_SS_CLOSED;
1368}
1369
Willy Tarreau71049cc2018-03-28 13:56:39 +02001370/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001371/* h2s_destroy should only ever be called by the thread that owns the stream,
1372 * that means that a tasklet should be used if we want to destroy the h2s
1373 * from another thread
1374 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001375static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001376{
Willy Tarreau7838a792019-08-12 18:42:03 +02001377 struct connection *conn = h2s->h2c->conn;
1378
1379 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1380
Willy Tarreau0a10de62018-03-01 16:27:53 +01001381 h2s_close(h2s);
1382 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001383 if (b_size(&h2s->rxbuf)) {
1384 b_free(&h2s->rxbuf);
1385 offer_buffers(NULL, tasks_run_queue);
1386 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001387
1388 if (h2s->subs)
1389 h2s->subs->events = 0;
1390
Joseph Herlantd77575d2018-11-25 10:54:45 -08001391 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001392 * reference left would be in the h2c send_list/fctl_list, and if
1393 * we're in it, we're getting out anyway
1394 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001395 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001396
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001397 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001398 tasklet_free(h2s->shut_tl);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001399 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001400
1401 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001402}
1403
Willy Tarreaua8e49542018-10-03 18:53:55 +02001404/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1405 * stream tree. In case of error, nothing is added and NULL is returned. The
1406 * causes of errors can be any failed memory allocation. The caller is
1407 * responsible for checking if the connection may support an extra stream
1408 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001409 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001410static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001411{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001412 struct h2s *h2s;
1413
Willy Tarreau7838a792019-08-12 18:42:03 +02001414 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1415
Willy Tarreaubafbe012017-11-24 17:34:44 +01001416 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001417 if (!h2s)
1418 goto out;
1419
Willy Tarreau5723f292020-01-10 15:16:57 +01001420 h2s->shut_tl = tasklet_new();
1421 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001422 pool_free(pool_head_h2s, h2s);
1423 goto out;
1424 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001425 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001426 h2s->shut_tl->process = h2_deferred_shut;
1427 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001428 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001429 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001430 h2s->cs = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001431 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001432 h2s->flags = H2_SF_NONE;
1433 h2s->errcode = H2_ERR_NO_ERROR;
1434 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001435 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001436 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001437 h2s->rxbuf = BUF_NULL;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001438
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001439 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001440 if (id > 0)
1441 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001442 else
1443 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001444
1445 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001446 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001447 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001448
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001449 HA_ATOMIC_ADD(&h2c->px_counters->open_streams, 1);
Amaury Denoyellee7b891f2020-11-03 15:04:45 +01001450 HA_ATOMIC_ADD(&h2c->px_counters->total_streams, 1);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001451
Willy Tarreau7838a792019-08-12 18:42:03 +02001452 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001453 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001454 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001455 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001456 return NULL;
1457}
1458
1459/* creates a new stream <id> on the h2c connection and returns it, or NULL in
1460 * case of memory allocation error.
1461 */
1462static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id)
1463{
1464 struct session *sess = h2c->conn->owner;
1465 struct conn_stream *cs;
1466 struct h2s *h2s;
1467
Willy Tarreau7838a792019-08-12 18:42:03 +02001468 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1469
Willy Tarreaua8e49542018-10-03 18:53:55 +02001470 if (h2c->nb_streams >= h2_settings_max_concurrent_streams)
1471 goto out;
1472
1473 h2s = h2s_new(h2c, id);
1474 if (!h2s)
1475 goto out;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001476
Christopher Faulet236c93b2020-07-02 09:19:54 +02001477 cs = cs_new(h2c->conn, h2c->conn->target);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001478 if (!cs)
1479 goto out_close;
1480
Olivier Houchard746fb772018-12-15 19:42:00 +01001481 cs->flags |= CS_FL_NOT_FIRST;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001482 h2s->cs = cs;
1483 cs->ctx = h2s;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001484 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001485
Christopher Faulet26256f82020-09-14 11:40:13 +02001486 if (stream_create_from_cs(cs, &BUF_NULL) < 0)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001487 goto out_free_cs;
1488
Willy Tarreau590a0512018-09-05 11:56:48 +02001489 /* We want the accept date presented to the next stream to be the one
1490 * we have now, the handshake time to be null (since the next stream
1491 * is not delayed by a handshake), and the idle time to count since
1492 * right now.
1493 */
1494 sess->accept_date = date;
1495 sess->tv_accept = now;
1496 sess->t_handshake = 0;
1497
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001498 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001499 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001500 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001501 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001502 return h2s;
1503
1504 out_free_cs:
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001505 h2c->nb_cs--;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001506 cs_free(cs);
Olivier Houchard58d87f32019-05-29 16:44:17 +02001507 h2s->cs = NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001508 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001509 h2s_destroy(h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001510 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001511 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001512 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001513 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001514}
1515
Willy Tarreau751f2d02018-10-05 09:35:00 +02001516/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1517 * and returns it, or NULL in case of memory allocation error or if the highest
1518 * possible stream ID was reached.
1519 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001520static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001521{
1522 struct h2s *h2s = NULL;
1523
Willy Tarreau7838a792019-08-12 18:42:03 +02001524 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1525
Willy Tarreau86949782019-01-31 10:42:05 +01001526 if (h2c->nb_streams >= h2c->streams_limit)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001527 goto out;
1528
Willy Tarreaua80dca82019-01-24 17:08:28 +01001529 if (h2_streams_left(h2c) < 1)
1530 goto out;
1531
Willy Tarreau751f2d02018-10-05 09:35:00 +02001532 /* Defer choosing the ID until we send the first message to create the stream */
1533 h2s = h2s_new(h2c, 0);
1534 if (!h2s)
1535 goto out;
1536
1537 h2s->cs = cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001538 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001539 cs->ctx = h2s;
1540 h2c->nb_cs++;
1541
Willy Tarreau751f2d02018-10-05 09:35:00 +02001542 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001543 if (likely(h2s))
1544 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1545 else
1546 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001547 return h2s;
1548}
1549
Willy Tarreaube5b7152017-09-25 16:25:39 +02001550/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1551 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1552 * the various settings codes.
1553 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001554static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001555{
1556 struct buffer *res;
1557 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001558 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001559 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001560 int ret = 0;
1561
1562 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001563
1564 if (h2c_mux_busy(h2c, NULL)) {
1565 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001566 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001567 }
1568
Willy Tarreaube5b7152017-09-25 16:25:39 +02001569 chunk_init(&buf, buf_data, sizeof(buf_data));
1570 chunk_memcpy(&buf,
1571 "\x00\x00\x00" /* length : 0 for now */
1572 "\x04\x00" /* type : 4 (settings), flags : 0 */
1573 "\x00\x00\x00\x00", /* stream ID : 0 */
1574 9);
1575
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001576 if (h2c->flags & H2_CF_IS_BACK) {
1577 /* send settings_enable_push=0 */
1578 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1579 }
1580
Willy Tarreaube5b7152017-09-25 16:25:39 +02001581 if (h2_settings_header_table_size != 4096) {
1582 char str[6] = "\x00\x01"; /* header_table_size */
1583
1584 write_n32(str + 2, h2_settings_header_table_size);
1585 chunk_memcat(&buf, str, 6);
1586 }
1587
1588 if (h2_settings_initial_window_size != 65535) {
1589 char str[6] = "\x00\x04"; /* initial_window_size */
1590
1591 write_n32(str + 2, h2_settings_initial_window_size);
1592 chunk_memcat(&buf, str, 6);
1593 }
1594
1595 if (h2_settings_max_concurrent_streams != 0) {
1596 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1597
1598 /* Note: 0 means "unlimited" for haproxy's config but not for
1599 * the protocol, so never send this value!
1600 */
1601 write_n32(str + 2, h2_settings_max_concurrent_streams);
1602 chunk_memcat(&buf, str, 6);
1603 }
1604
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001605 mfs = h2_settings_max_frame_size;
1606 if (mfs > global.tune.bufsize)
1607 mfs = global.tune.bufsize;
1608
1609 if (!mfs)
1610 mfs = global.tune.bufsize;
1611
1612 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001613 char str[6] = "\x00\x05"; /* max_frame_size */
1614
1615 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1616 * match bufsize - rewrite size, but at the moment it seems
1617 * that clients don't take care of it.
1618 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001619 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001620 chunk_memcat(&buf, str, 6);
1621 }
1622
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001623 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001624
1625 res = br_tail(h2c->mbuf);
1626 retry:
1627 if (!h2_get_buf(h2c, res)) {
1628 h2c->flags |= H2_CF_MUX_MALLOC;
1629 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001630 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001631 }
1632
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001633 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001634 if (unlikely(ret <= 0)) {
1635 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001636 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1637 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001638 h2c->flags |= H2_CF_MUX_MFULL;
1639 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001640 }
1641 else {
1642 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001643 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001644 }
1645 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001646 out:
1647 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001648 return ret;
1649}
1650
Willy Tarreau52eed752017-09-22 15:05:09 +02001651/* Try to receive a connection preface, then upon success try to send our
1652 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1653 * missing data. It may return an error in h2c.
1654 */
1655static int h2c_frt_recv_preface(struct h2c *h2c)
1656{
1657 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001658 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001659
Willy Tarreau7838a792019-08-12 18:42:03 +02001660 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1661
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001662 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001663
1664 if (unlikely(ret1 <= 0)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02001665 if (ret1 < 0)
1666 sess_log(h2c->conn->owner);
1667
Amaury Denoyellea8879232020-10-27 17:16:03 +01001668 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001669 TRACE_ERROR("I/O error or short read", H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02001670 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001671 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
1672 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001673 ret2 = 0;
1674 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001675 }
1676
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001677 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001678 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001679 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001680 out:
1681 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001682 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001683}
1684
Willy Tarreau01b44822018-10-03 14:26:37 +02001685/* Try to send a connection preface, then upon success try to send our
1686 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1687 * missing data. It may return an error in h2c.
1688 */
1689static int h2c_bck_send_preface(struct h2c *h2c)
1690{
1691 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001692 int ret = 0;
1693
1694 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001695
1696 if (h2c_mux_busy(h2c, NULL)) {
1697 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001698 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001699 }
1700
Willy Tarreaubcc45952019-05-26 10:05:50 +02001701 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001702 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001703 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001704 h2c->flags |= H2_CF_MUX_MALLOC;
1705 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001706 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001707 }
1708
1709 if (!b_data(res)) {
1710 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001711 ret = b_istput(res, ist(H2_CONN_PREFACE));
1712 if (unlikely(ret <= 0)) {
1713 if (!ret) {
1714 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1715 goto retry;
1716 h2c->flags |= H2_CF_MUX_MFULL;
1717 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001718 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001719 }
1720 else {
1721 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001722 ret = 0;
1723 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001724 }
1725 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001726 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001727 ret = h2c_send_settings(h2c);
1728 out:
1729 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1730 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001731}
1732
Willy Tarreau081d4722017-05-16 21:51:05 +02001733/* try to send a GOAWAY frame on the connection to report an error or a graceful
1734 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1735 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1736 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1737 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1738 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1739 * on unrecoverable failure. It will not attempt to send one again in this last
1740 * case so that it is safe to use h2c_error() to report such errors.
1741 */
1742static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1743{
1744 struct buffer *res;
1745 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001746 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001747
Willy Tarreau7838a792019-08-12 18:42:03 +02001748 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1749
1750 if (h2c->flags & H2_CF_GOAWAY_FAILED) {
1751 ret = 1; // claim that it worked
1752 goto out;
1753 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001754
1755 if (h2c_mux_busy(h2c, h2s)) {
1756 if (h2s)
1757 h2s->flags |= H2_SF_BLK_MBUSY;
1758 else
1759 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001760 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001761 }
1762
Willy Tarreau9c218e72019-05-26 10:08:28 +02001763 /* len: 8, type: 7, flags: none, sid: 0 */
1764 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1765
1766 if (h2c->last_sid < 0)
1767 h2c->last_sid = h2c->max_id;
1768
1769 write_n32(str + 9, h2c->last_sid);
1770 write_n32(str + 13, h2c->errcode);
1771
Willy Tarreaubcc45952019-05-26 10:05:50 +02001772 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001773 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001774 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001775 h2c->flags |= H2_CF_MUX_MALLOC;
1776 if (h2s)
1777 h2s->flags |= H2_SF_BLK_MROOM;
1778 else
1779 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001780 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001781 }
1782
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001783 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001784 if (unlikely(ret <= 0)) {
1785 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001786 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1787 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001788 h2c->flags |= H2_CF_MUX_MFULL;
1789 if (h2s)
1790 h2s->flags |= H2_SF_BLK_MROOM;
1791 else
1792 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001793 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001794 }
1795 else {
1796 /* we cannot report this error using GOAWAY, so we mark
1797 * it and claim a success.
1798 */
1799 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1800 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001801 ret = 1;
1802 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001803 }
1804 }
1805 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001806
1807 /* some codes are not for real errors, just attempts to close cleanly */
1808 switch (h2c->errcode) {
1809 case H2_ERR_NO_ERROR:
1810 case H2_ERR_ENHANCE_YOUR_CALM:
1811 case H2_ERR_REFUSED_STREAM:
1812 case H2_ERR_CANCEL:
1813 break;
1814 default:
1815 HA_ATOMIC_ADD(&h2c->px_counters->goaway_resp, 1);
1816 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001817 out:
1818 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001819 return ret;
1820}
1821
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001822/* Try to send an RST_STREAM frame on the connection for the indicated stream
1823 * during mux operations. This stream must be valid and cannot be closed
1824 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1825 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1826 * not yet.
1827 *
1828 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1829 * to write the message, it subscribes the stream to future notifications.
1830 */
1831static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1832{
1833 struct buffer *res;
1834 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001835 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001836
Willy Tarreau7838a792019-08-12 18:42:03 +02001837 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1838
1839 if (!h2s || h2s->st == H2_SS_CLOSED) {
1840 ret = 1;
1841 goto out;
1842 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001843
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001844 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1845 * RST_STREAM in response to a RST_STREAM frame.
1846 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001847 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001848 ret = 1;
1849 goto ignore;
1850 }
1851
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001852 if (h2c_mux_busy(h2c, h2s)) {
1853 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001854 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001855 }
1856
Willy Tarreau9c218e72019-05-26 10:08:28 +02001857 /* len: 4, type: 3, flags: none */
1858 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1859 write_n32(str + 5, h2s->id);
1860 write_n32(str + 9, h2s->errcode);
1861
Willy Tarreaubcc45952019-05-26 10:05:50 +02001862 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001863 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001864 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001865 h2c->flags |= H2_CF_MUX_MALLOC;
1866 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001867 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001868 }
1869
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001870 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001871 if (unlikely(ret <= 0)) {
1872 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001873 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1874 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001875 h2c->flags |= H2_CF_MUX_MFULL;
1876 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001877 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001878 }
1879 else {
1880 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001881 ret = 0;
1882 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001883 }
1884 }
1885
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001886 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001887 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001888 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001889 out:
1890 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001891 return ret;
1892}
1893
1894/* Try to send an RST_STREAM frame on the connection for the stream being
1895 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001896 * error code, even if the stream is one of the dummy ones, and will update
1897 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001898 *
1899 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1900 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001901 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001902 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001903 */
1904static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1905{
1906 struct buffer *res;
1907 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001908 int ret = 0;
1909
1910 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001911
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001912 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1913 * RST_STREAM in response to a RST_STREAM frame.
1914 */
1915 if (h2c->dft == H2_FT_RST_STREAM) {
1916 ret = 1;
1917 goto ignore;
1918 }
1919
Willy Tarreau27a84c92017-10-17 08:10:17 +02001920 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001921 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001922 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001923 }
1924
Willy Tarreau9c218e72019-05-26 10:08:28 +02001925 /* len: 4, type: 3, flags: none */
1926 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1927
1928 write_n32(str + 5, h2c->dsi);
1929 write_n32(str + 9, h2s->errcode);
1930
Willy Tarreaubcc45952019-05-26 10:05:50 +02001931 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001932 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001933 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001934 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001935 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001936 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001937 }
1938
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001939 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02001940 if (unlikely(ret <= 0)) {
1941 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001942 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1943 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001944 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001945 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001946 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001947 }
1948 else {
1949 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001950 ret = 0;
1951 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001952 }
1953 }
1954
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001955 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02001956 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001957 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001958 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001959 }
1960
Willy Tarreau7838a792019-08-12 18:42:03 +02001961 out:
Amaury Denoyellea8879232020-10-27 17:16:03 +01001962 HA_ATOMIC_ADD(&h2c->px_counters->rst_stream_resp, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001963 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001964 return ret;
1965}
1966
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001967/* try to send an empty DATA frame with the ES flag set to notify about the
1968 * end of stream and match a shutdown(write). If an ES was already sent as
1969 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
1970 * on success or zero if nothing was done. In case of lack of room to write the
1971 * message, it subscribes the requesting stream to future notifications.
1972 */
1973static int h2_send_empty_data_es(struct h2s *h2s)
1974{
1975 struct h2c *h2c = h2s->h2c;
1976 struct buffer *res;
1977 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02001978 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001979
Willy Tarreau7838a792019-08-12 18:42:03 +02001980 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
1981
1982 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
1983 ret = 1;
1984 goto out;
1985 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001986
1987 if (h2c_mux_busy(h2c, h2s)) {
1988 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001989 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001990 }
1991
Willy Tarreau9c218e72019-05-26 10:08:28 +02001992 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
1993 memcpy(str, "\x00\x00\x00\x00\x01", 5);
1994 write_n32(str + 5, h2s->id);
1995
Willy Tarreaubcc45952019-05-26 10:05:50 +02001996 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001997 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001998 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001999 h2c->flags |= H2_CF_MUX_MALLOC;
2000 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002001 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002002 }
2003
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002004 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002005 if (likely(ret > 0)) {
2006 h2s->flags |= H2_SF_ES_SENT;
2007 }
2008 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002009 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2010 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002011 h2c->flags |= H2_CF_MUX_MFULL;
2012 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002013 }
2014 else {
2015 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002016 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002017 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002018 out:
2019 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002020 return ret;
2021}
2022
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002023/* wake a specific stream and assign its conn_stream some CS_FL_* flags among
Willy Tarreau99ad1b32019-05-14 11:46:28 +02002024 * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002025 * is automatically updated accordingly. If the stream is orphaned, it is
2026 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002027 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002028static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002029{
Willy Tarreau7838a792019-08-12 18:42:03 +02002030 struct h2c *h2c = h2s->h2c;
2031
2032 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2033
Christopher Fauletf02ca002019-03-07 16:21:34 +01002034 if (!h2s->cs) {
2035 /* this stream was already orphaned */
2036 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002037 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002038 return;
2039 }
2040
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002041 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002042 if (h2s->st == H2_SS_OPEN)
2043 h2s->st = H2_SS_HREM;
2044 else if (h2s->st == H2_SS_HLOC)
2045 h2s_close(h2s);
2046 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002047
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002048 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
2049 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
2050 h2s->cs->flags |= CS_FL_ERR_PENDING;
2051 if (h2s->cs->flags & CS_FL_EOS)
2052 h2s->cs->flags |= CS_FL_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02002053
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002054 if (h2s->st < H2_SS_ERROR)
2055 h2s->st = H2_SS_ERROR;
2056 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002057
2058 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002059 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002060}
2061
2062/* wake the streams attached to the connection, whose id is greater than <last>
2063 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002064 */
Willy Tarreau23482912019-05-07 15:23:14 +02002065static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002066{
2067 struct eb32_node *node;
2068 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002069
Willy Tarreau7838a792019-08-12 18:42:03 +02002070 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2071
Christopher Fauletf02ca002019-03-07 16:21:34 +01002072 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002073 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2074 while (node) {
2075 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002076 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002077 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002078 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002079
Christopher Fauletf02ca002019-03-07 16:21:34 +01002080 /* Wake all streams with unassigned ID (ID == 0) */
2081 node = eb32_lookup(&h2c->streams_by_id, 0);
2082 while (node) {
2083 h2s = container_of(node, struct h2s, by_id);
2084 if (h2s->id > 0)
2085 break;
2086 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002087 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002088 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002089
2090 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002091}
2092
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002093/* Wake up all blocked streams whose window size has become positive after the
2094 * mux's initial window was adjusted. This should be done after having processed
2095 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002096 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002097static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002098{
2099 struct h2s *h2s;
2100 struct eb32_node *node;
2101
Willy Tarreau7838a792019-08-12 18:42:03 +02002102 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2103
Willy Tarreau3421aba2017-07-27 15:41:03 +02002104 node = eb32_first(&h2c->streams_by_id);
2105 while (node) {
2106 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002107 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002108 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002109 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002110 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2111 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002112 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002113 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002114 node = eb32_next(node);
2115 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002116
2117 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002118}
2119
2120/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2121 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002122 * return an error in h2c. The caller must have already verified frame length
2123 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002124 */
2125static int h2c_handle_settings(struct h2c *h2c)
2126{
2127 unsigned int offset;
2128 int error;
2129
Willy Tarreau7838a792019-08-12 18:42:03 +02002130 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2131
Willy Tarreau3421aba2017-07-27 15:41:03 +02002132 if (h2c->dff & H2_F_SETTINGS_ACK) {
2133 if (h2c->dfl) {
2134 error = H2_ERR_FRAME_SIZE_ERROR;
2135 goto fail;
2136 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002137 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002138 }
2139
Willy Tarreau3421aba2017-07-27 15:41:03 +02002140 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002141 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002142 goto out0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002143
2144 /* parse the frame */
2145 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002146 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2147 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002148
2149 switch (type) {
2150 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2151 /* we need to update all existing streams with the
2152 * difference from the previous iws.
2153 */
2154 if (arg < 0) { // RFC7540#6.5.2
2155 error = H2_ERR_FLOW_CONTROL_ERROR;
2156 goto fail;
2157 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002158 h2c->miw = arg;
2159 break;
2160 case H2_SETTINGS_MAX_FRAME_SIZE:
2161 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002162 TRACE_ERROR("MAX_FRAME_SIZE out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002163 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
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002171 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002172 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002173 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002174 goto fail;
2175 }
2176 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002177 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2178 if (h2c->flags & H2_CF_IS_BACK) {
2179 /* the limit is only for the backend; for the frontend it is our limit */
2180 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2181 arg = h2_settings_max_concurrent_streams;
2182 h2c->streams_limit = arg;
2183 }
2184 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002185 }
2186 }
2187
2188 /* need to ACK this frame now */
2189 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002190 done:
2191 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002192 return 1;
2193 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002194 if (!(h2c->flags & H2_CF_IS_BACK))
2195 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002196 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002197 out0:
2198 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 +02002199 return 0;
2200}
2201
2202/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2203 * success or one of the h2_status values.
2204 */
2205static int h2c_ack_settings(struct h2c *h2c)
2206{
2207 struct buffer *res;
2208 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002209 int ret = 0;
2210
2211 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002212
2213 if (h2c_mux_busy(h2c, NULL)) {
2214 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002215 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002216 }
2217
Willy Tarreau9c218e72019-05-26 10:08:28 +02002218 memcpy(str,
2219 "\x00\x00\x00" /* length : 0 (no data) */
2220 "\x04" "\x01" /* type : 4, flags : ACK */
2221 "\x00\x00\x00\x00" /* stream ID */, 9);
2222
Willy Tarreaubcc45952019-05-26 10:05:50 +02002223 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002224 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002225 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002226 h2c->flags |= H2_CF_MUX_MALLOC;
2227 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002228 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002229 }
2230
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002231 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002232 if (unlikely(ret <= 0)) {
2233 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002234 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2235 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002236 h2c->flags |= H2_CF_MUX_MFULL;
2237 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002238 }
2239 else {
2240 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002241 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002242 }
2243 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002244 out:
2245 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002246 return ret;
2247}
2248
Willy Tarreaucf68c782017-10-10 17:11:41 +02002249/* processes a PING frame and schedules an ACK if needed. The caller must pass
2250 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002251 * missing data. The caller must have already verified frame length
2252 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002253 */
2254static int h2c_handle_ping(struct h2c *h2c)
2255{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002256 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002257 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002258 h2c->st0 = H2_CS_FRAME_A;
2259 return 1;
2260}
2261
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002262/* Try to send a window update for stream id <sid> and value <increment>.
2263 * Returns > 0 on success or zero on missing room or failure. It may return an
2264 * error in h2c.
2265 */
2266static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2267{
2268 struct buffer *res;
2269 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002270 int ret = 0;
2271
2272 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002273
2274 if (h2c_mux_busy(h2c, NULL)) {
2275 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002276 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002277 }
2278
Willy Tarreau9c218e72019-05-26 10:08:28 +02002279 /* length: 4, type: 8, flags: none */
2280 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2281 write_n32(str + 5, sid);
2282 write_n32(str + 9, increment);
2283
Willy Tarreaubcc45952019-05-26 10:05:50 +02002284 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002285 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002286 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002287 h2c->flags |= H2_CF_MUX_MALLOC;
2288 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002289 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002290 }
2291
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002292 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002293 if (unlikely(ret <= 0)) {
2294 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002295 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2296 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002297 h2c->flags |= H2_CF_MUX_MFULL;
2298 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002299 }
2300 else {
2301 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002302 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002303 }
2304 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002305 out:
2306 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002307 return ret;
2308}
2309
2310/* try to send pending window update for the connection. It's safe to call it
2311 * with no pending updates. Returns > 0 on success or zero on missing room or
2312 * failure. It may return an error in h2c.
2313 */
2314static int h2c_send_conn_wu(struct h2c *h2c)
2315{
2316 int ret = 1;
2317
Willy Tarreau7838a792019-08-12 18:42:03 +02002318 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2319
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002320 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002321 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002322
Willy Tarreau97aaa672018-12-23 09:49:04 +01002323 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2324 /* increase the advertised connection window to 2G on
2325 * first update.
2326 */
2327 h2c->flags |= H2_CF_WINDOW_OPENED;
2328 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2329 }
2330
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002331 /* send WU for the connection */
2332 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2333 if (ret > 0)
2334 h2c->rcvd_c = 0;
2335
Willy Tarreau7838a792019-08-12 18:42:03 +02002336 out:
2337 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002338 return ret;
2339}
2340
2341/* try to send pending window update for the current dmux stream. It's safe to
2342 * call it with no pending updates. Returns > 0 on success or zero on missing
2343 * room or failure. It may return an error in h2c.
2344 */
2345static int h2c_send_strm_wu(struct h2c *h2c)
2346{
2347 int ret = 1;
2348
Willy Tarreau7838a792019-08-12 18:42:03 +02002349 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2350
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002351 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002352 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002353
2354 /* send WU for the stream */
2355 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2356 if (ret > 0)
2357 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002358 out:
2359 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002360 return ret;
2361}
2362
Willy Tarreaucf68c782017-10-10 17:11:41 +02002363/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2364 * success, 0 on missing data or one of the h2_status values.
2365 */
2366static int h2c_ack_ping(struct h2c *h2c)
2367{
2368 struct buffer *res;
2369 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002370 int ret = 0;
2371
2372 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002373
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002374 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002375 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002376
2377 if (h2c_mux_busy(h2c, NULL)) {
2378 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002379 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002380 }
2381
Willy Tarreaucf68c782017-10-10 17:11:41 +02002382 memcpy(str,
2383 "\x00\x00\x08" /* length : 8 (same payload) */
2384 "\x06" "\x01" /* type : 6, flags : ACK */
2385 "\x00\x00\x00\x00" /* stream ID */, 9);
2386
2387 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002388 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002389
Willy Tarreau9c218e72019-05-26 10:08:28 +02002390 res = br_tail(h2c->mbuf);
2391 retry:
2392 if (!h2_get_buf(h2c, res)) {
2393 h2c->flags |= H2_CF_MUX_MALLOC;
2394 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002395 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002396 }
2397
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002398 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002399 if (unlikely(ret <= 0)) {
2400 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002401 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2402 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002403 h2c->flags |= H2_CF_MUX_MFULL;
2404 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002405 }
2406 else {
2407 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002408 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002409 }
2410 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002411 out:
2412 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002413 return ret;
2414}
2415
Willy Tarreau26f95952017-07-27 17:18:30 +02002416/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2417 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002418 * h2c or h2s. The caller must have already verified frame length and stream ID
2419 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002420 */
2421static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2422{
2423 int32_t inc;
2424 int error;
2425
Willy Tarreau7838a792019-08-12 18:42:03 +02002426 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2427
Willy Tarreau26f95952017-07-27 17:18:30 +02002428 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002429 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002430 goto out0;
Willy Tarreau26f95952017-07-27 17:18:30 +02002431
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002432 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002433
2434 if (h2c->dsi != 0) {
2435 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002436
2437 /* it's not an error to receive WU on a closed stream */
2438 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002439 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002440
2441 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002442 TRACE_ERROR("stream WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn, h2s);
Willy Tarreau26f95952017-07-27 17:18:30 +02002443 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002444 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau26f95952017-07-27 17:18:30 +02002445 goto strm_err;
2446 }
2447
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002448 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002449 TRACE_ERROR("stream WINDOW_UPDATE inc<0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn, h2s);
Willy Tarreau26f95952017-07-27 17:18:30 +02002450 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreaua3075282020-12-01 10:22:43 +01002451 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau26f95952017-07-27 17:18:30 +02002452 goto strm_err;
2453 }
2454
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002455 h2s->sws += inc;
2456 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002457 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002458 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002459 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2460 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Olivier Houcharddddfe312018-10-10 18:51:00 +02002461 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002462 }
2463 }
2464 else {
2465 /* connection window update */
2466 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002467 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002468 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002469 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau26f95952017-07-27 17:18:30 +02002470 goto conn_err;
2471 }
2472
2473 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2474 error = H2_ERR_FLOW_CONTROL_ERROR;
2475 goto conn_err;
2476 }
2477
2478 h2c->mws += inc;
2479 }
2480
Willy Tarreau7838a792019-08-12 18:42:03 +02002481 done:
2482 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002483 return 1;
2484
2485 conn_err:
2486 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002487 out0:
2488 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 +02002489 return 0;
2490
2491 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002492 h2s_error(h2s, error);
2493 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002494 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002495 return 0;
2496}
2497
Willy Tarreaue96b0922017-10-30 00:28:29 +01002498/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002499 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2500 * have already verified frame length and stream ID validity. Described in
2501 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002502 */
2503static int h2c_handle_goaway(struct h2c *h2c)
2504{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002505 int last;
2506
Willy Tarreau7838a792019-08-12 18:42:03 +02002507 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002508 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002509 if (b_data(&h2c->dbuf) < h2c->dfl) {
2510 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002511 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002512 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002513
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002514 last = h2_get_n32(&h2c->dbuf, 0);
2515 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002516 if (h2c->last_sid < 0)
2517 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002518 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002519 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002520 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002521}
2522
Willy Tarreau92153fc2017-12-03 19:46:19 +01002523/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002524 * invalid. Returns > 0 on success or zero on missing data. It may return an
2525 * error in h2c. The caller must have already verified frame length and stream
2526 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002527 */
2528static int h2c_handle_priority(struct h2c *h2c)
2529{
Willy Tarreau7838a792019-08-12 18:42:03 +02002530 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2531
Willy Tarreau92153fc2017-12-03 19:46:19 +01002532 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002533 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002534 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002535 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002536 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002537
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002538 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002539 /* 7540#5.3 : can't depend on itself */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002540 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002541 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua3075282020-12-01 10:22:43 +01002542 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02002543 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002544 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002545 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002546 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002547 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002548}
2549
Willy Tarreaucd234e92017-08-18 10:59:39 +02002550/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002551 * Returns > 0 on success or zero on missing data. The caller must have already
2552 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002553 */
2554static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2555{
Willy Tarreau7838a792019-08-12 18:42:03 +02002556 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2557
Willy Tarreaucd234e92017-08-18 10:59:39 +02002558 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002559 if (b_data(&h2c->dbuf) < h2c->dfl) {
2560 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 +02002561 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002562 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002563
2564 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002565 if (h2s->st == H2_SS_CLOSED) {
2566 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 +02002567 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002568 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002569
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002570 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002571 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002572
2573 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01002574 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01002575 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002576 }
2577
2578 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002579 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002580 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002581}
2582
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002583/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2584 * It may return an error in h2c or h2s. The caller must consider that the
2585 * return value is the new h2s in case one was allocated (most common case).
2586 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002587 * errors here are reported as connection errors since it's impossible to
2588 * recover from such errors after the compression context has been altered.
2589 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002590static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002591{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002592 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002593 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002594 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002595 int error;
2596
Willy Tarreau7838a792019-08-12 18:42:03 +02002597 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2598
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002599 if (!b_size(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002600 goto out; // empty buffer
Willy Tarreau13278b42017-10-13 19:23:14 +02002601
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002602 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002603 goto out; // incomplete frame
Willy Tarreau13278b42017-10-13 19:23:14 +02002604
2605 /* now either the frame is complete or the buffer is complete */
2606 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002607 /* The stream exists/existed, this must be a trailers frame */
2608 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreauaab1a602019-05-06 11:12:18 +02002609 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len);
2610 /* unrecoverable error ? */
2611 if (h2c->st0 >= H2_CS_ERROR)
2612 goto out;
2613
2614 if (error == 0)
2615 goto out; // missing data
2616
2617 if (error < 0) {
2618 /* Failed to decode this frame (e.g. too large request)
2619 * but the HPACK decompressor is still synchronized.
2620 */
2621 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2622 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002623 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002624 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002625 goto done;
2626 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002627 /* the connection was already killed by an RST, let's consume
2628 * the data and send another RST.
2629 */
2630 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
2631 h2s = (struct h2s*)h2_error_stream;
2632 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002633 }
2634 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2635 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2636 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002637 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Amaury Denoyellea8879232020-10-27 17:16:03 +01002638 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002639 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002640 goto conn_err;
2641 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002642 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2643 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002644
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002645 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002646
Willy Tarreau25919232019-01-03 14:48:18 +01002647 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002648 if (h2c->st0 >= H2_CS_ERROR)
2649 goto out;
2650
Willy Tarreau25919232019-01-03 14:48:18 +01002651 if (error <= 0) {
2652 if (error == 0)
2653 goto out; // missing data
2654
2655 /* Failed to decode this stream (e.g. too large request)
2656 * but the HPACK decompressor is still synchronized.
2657 */
2658 h2s = (struct h2s*)h2_error_stream;
2659 goto send_rst;
2660 }
2661
Willy Tarreau22de8d32018-09-05 19:55:58 +02002662 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002663 * positively from h2c_frt_stream_new(), the stream will report the error,
2664 * and if we return in error, h2c_frt_stream_new() will emit the error.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002665 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02002666 h2s = h2c_frt_stream_new(h2c, h2c->dsi);
Willy Tarreau13278b42017-10-13 19:23:14 +02002667 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002668 h2s = (struct h2s*)h2_refused_stream;
2669 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002670 }
2671
2672 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002673 h2s->rxbuf = rxbuf;
2674 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002675 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002676
Willy Tarreau88d138e2019-01-02 19:38:14 +01002677 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002678 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002679 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002680
2681 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002682 if (h2s->st == H2_SS_OPEN)
2683 h2s->st = H2_SS_HREM;
2684 else
2685 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002686 }
2687
Willy Tarreau3a429f02019-01-03 11:41:50 +01002688 /* update the max stream ID if the request is being processed */
2689 if (h2s->id > h2c->max_id)
2690 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002691
Willy Tarreau022e5e52020-09-10 09:33:15 +02002692 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 +01002693 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002694
2695 conn_err:
2696 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002697 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002698
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002699 out:
2700 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002701 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 +01002702 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002703
2704 send_rst:
2705 /* make the demux send an RST for the current stream. We may only
2706 * do this if we're certain that the HEADERS frame was properly
2707 * decompressed so that the HPACK decoder is still kept up to date.
2708 */
2709 h2_release_buf(h2c, &rxbuf);
2710 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002711
Willy Tarreau022e5e52020-09-10 09:33:15 +02002712 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 +02002713 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002714 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002715}
2716
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002717/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2718 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2719 * errors here are reported as connection errors since it's impossible to
2720 * recover from such errors after the compression context has been altered.
2721 */
2722static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2723{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002724 struct buffer rxbuf = BUF_NULL;
2725 unsigned long long body_len = 0;
2726 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002727 int error;
2728
Willy Tarreau7838a792019-08-12 18:42:03 +02002729 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2730
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002731 if (!b_size(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002732 goto fail; // empty buffer
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002733
2734 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002735 goto fail; // incomplete frame
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002736
Christopher Faulet6884aa32019-09-23 15:28:20 +02002737 if (h2s->st != H2_SS_CLOSED) {
2738 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len);
2739 }
2740 else {
2741 /* the connection was already killed by an RST, let's consume
2742 * the data and send another RST.
2743 */
2744 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002745 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002746 h2c->st0 = H2_CS_FRAME_E;
2747 goto send_rst;
2748 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002749
Willy Tarreau25919232019-01-03 14:48:18 +01002750 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002751 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002752 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002753
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002754 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2755 /* RFC7540#5.1 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002756 TRACE_ERROR("response HEADERS in invalid state", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002757 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2758 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreaua3075282020-12-01 10:22:43 +01002759 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02002760 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002761 }
2762
Willy Tarreau25919232019-01-03 14:48:18 +01002763 if (error <= 0) {
2764 if (error == 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002765 goto fail; // missing data
Willy Tarreau25919232019-01-03 14:48:18 +01002766
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002767 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002768 TRACE_ERROR("couldn't decode response HEADERS", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau25919232019-01-03 14:48:18 +01002769 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002770 h2c->st0 = H2_CS_FRAME_E;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002771 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02002772 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002773 }
2774
Christopher Fauletfa922f02019-05-07 10:55:17 +02002775 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002776 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002777
Willy Tarreau927b88b2019-03-04 08:03:25 +01002778 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002779 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002780 else if (h2s->flags & H2_SF_ES_RCVD) {
2781 if (h2s->st == H2_SS_OPEN)
2782 h2s->st = H2_SS_HREM;
2783 else if (h2s->st == H2_SS_HLOC)
2784 h2s_close(h2s);
2785 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002786
Willy Tarreau022e5e52020-09-10 09:33:15 +02002787 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 +02002788 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002789 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002790 fail:
2791 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2792 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002793
2794 send_rst:
2795 /* make the demux send an RST for the current stream. We may only
2796 * do this if we're certain that the HEADERS frame was properly
2797 * decompressed so that the HPACK decoder is still kept up to date.
2798 */
2799 h2_release_buf(h2c, &rxbuf);
2800 h2c->st0 = H2_CS_FRAME_E;
2801
Willy Tarreau022e5e52020-09-10 09:33:15 +02002802 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 +02002803 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2804 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002805}
2806
Willy Tarreau454f9052017-10-26 19:40:35 +02002807/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2808 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2809 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01002810static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02002811{
2812 int error;
2813
Willy Tarreau7838a792019-08-12 18:42:03 +02002814 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2815
Willy Tarreau454f9052017-10-26 19:40:35 +02002816 /* note that empty DATA frames are perfectly valid and sometimes used
2817 * to signal an end of stream (with the ES flag).
2818 */
2819
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002820 if (!b_size(&h2c->dbuf) && h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002821 goto fail; // empty buffer
Willy Tarreau454f9052017-10-26 19:40:35 +02002822
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002823 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002824 goto fail; // incomplete frame
Willy Tarreau454f9052017-10-26 19:40:35 +02002825
2826 /* now either the frame is complete or the buffer is complete */
2827
Willy Tarreau454f9052017-10-26 19:40:35 +02002828 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2829 /* RFC7540#6.1 */
2830 error = H2_ERR_STREAM_CLOSED;
2831 goto strm_err;
2832 }
2833
Christopher Faulet4f09ec82019-06-19 09:25:58 +02002834 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002835 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002836 TRACE_ERROR("DATA frame larger than content-length", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002837 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002838 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002839 goto strm_err;
2840 }
2841
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002842 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02002843 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002844
Willy Tarreau454f9052017-10-26 19:40:35 +02002845 /* call the upper layers to process the frame, then let the upper layer
2846 * notify the stream about any change.
2847 */
2848 if (!h2s->cs) {
Willy Tarreau082c4572019-08-06 10:11:02 +02002849 /* The upper layer has already closed, this may happen on
2850 * 4xx/redirects during POST, or when receiving a response
2851 * from an H2 server after the client has aborted.
2852 */
2853 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002854 goto strm_err;
2855 }
2856
Willy Tarreau8f650c32017-11-21 19:36:21 +01002857 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002858 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01002859
Willy Tarreau721c9742017-11-07 11:05:42 +01002860 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002861 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002862 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002863 }
2864
2865 /* check for completion : the callee will change this to FRAME_A or
2866 * FRAME_H once done.
2867 */
2868 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02002869 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02002870
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002871 /* last frame */
2872 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002873 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002874 if (h2s->st == H2_SS_OPEN)
2875 h2s->st = H2_SS_HREM;
2876 else
2877 h2s_close(h2s);
2878
Willy Tarreau1915ca22019-01-24 11:49:37 +01002879 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
2880 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002881 TRACE_ERROR("ES on DATA frame before content-length", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002882 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002883 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002884 goto strm_err;
2885 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002886 }
2887
Willy Tarreau7838a792019-08-12 18:42:03 +02002888 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02002889 return 1;
2890
Willy Tarreau454f9052017-10-26 19:40:35 +02002891 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002892 h2s_error(h2s, error);
2893 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002894 fail:
2895 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 +02002896 return 0;
2897}
2898
Willy Tarreau63864812019-08-07 14:25:20 +02002899/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
2900 * valid for the current stream state. This is needed only after parsing the
2901 * frame header but in practice it can be performed at any time during
2902 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
2903 * or 0 in case of error, in which case either h2s or h2c will carry an error.
2904 */
2905static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
2906{
Willy Tarreau7838a792019-08-12 18:42:03 +02002907 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
2908
Willy Tarreau63864812019-08-07 14:25:20 +02002909 if (h2s->st == H2_SS_IDLE &&
2910 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
2911 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
2912 * this state MUST be treated as a connection error
2913 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002914 TRACE_ERROR("invalid frame type for IDLE state", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02002915 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002916 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02002917 /* only log if no other stream can report the error */
2918 sess_log(h2c->conn->owner);
2919 }
Willy Tarreaua3075282020-12-01 10:22:43 +01002920 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02002921 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 +02002922 return 0;
2923 }
2924
Willy Tarreau57a18162019-11-24 14:57:53 +01002925 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
2926 /* only PUSH_PROMISE would be permitted here */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002927 TRACE_ERROR("invalid frame type for IDLE state (back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau57a18162019-11-24 14:57:53 +01002928 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua3075282020-12-01 10:22:43 +01002929 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau57a18162019-11-24 14:57:53 +01002930 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
2931 return 0;
2932 }
2933
Willy Tarreau63864812019-08-07 14:25:20 +02002934 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
2935 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
2936 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
2937 * this state MUST be treated as a stream error.
2938 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
2939 * PUSH_PROMISE/CONTINUATION cause connection errors.
2940 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01002941 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002942 TRACE_ERROR("invalid frame type for HREM state", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02002943 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua3075282020-12-01 10:22:43 +01002944 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Amaury Denoyellea8879232020-10-27 17:16:03 +01002945 }
2946 else {
Willy Tarreau63864812019-08-07 14:25:20 +02002947 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01002948 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002949 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 +02002950 return 0;
2951 }
2952
2953 /* Below the management of frames received in closed state is a
2954 * bit hackish because the spec makes strong differences between
2955 * streams closed by receiving RST, sending RST, and seeing ES
2956 * in both directions. In addition to this, the creation of a
2957 * new stream reusing the identifier of a closed one will be
2958 * detected here. Given that we cannot keep track of all closed
2959 * streams forever, we consider that unknown closed streams were
2960 * closed on RST received, which allows us to respond with an
2961 * RST without breaking the connection (eg: to abort a transfer).
2962 * Some frames have to be silently ignored as well.
2963 */
2964 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
2965 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
2966 /* #5.1.1: The identifier of a newly
2967 * established stream MUST be numerically
2968 * greater than all streams that the initiating
2969 * endpoint has opened or reserved. This
2970 * governs streams that are opened using a
2971 * HEADERS frame and streams that are reserved
2972 * using PUSH_PROMISE. An endpoint that
2973 * receives an unexpected stream identifier
2974 * MUST respond with a connection error.
2975 */
2976 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02002977 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 +02002978 return 0;
2979 }
2980
Willy Tarreau4c08f122019-09-26 08:47:15 +02002981 if (h2s->flags & H2_SF_RST_RCVD &&
2982 !(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 +02002983 /* RFC7540#5.1:closed: an endpoint that
2984 * receives any frame other than PRIORITY after
2985 * receiving a RST_STREAM MUST treat that as a
2986 * stream error of type STREAM_CLOSED.
2987 *
2988 * Note that old streams fall into this category
2989 * and will lead to an RST being sent.
2990 *
2991 * However, we cannot generalize this to all frame types. Those
2992 * carrying compression state must still be processed before
2993 * being dropped or we'll desynchronize the decoder. This can
2994 * happen with request trailers received after sending an
2995 * RST_STREAM, or with header/trailers responses received after
2996 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02002997 *
2998 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002999 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003000 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003001 */
3002 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3003 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003004 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 +02003005 return 0;
3006 }
3007
3008 /* RFC7540#5.1:closed: if this state is reached as a
3009 * result of sending a RST_STREAM frame, the peer that
3010 * receives the RST_STREAM might have already sent
3011 * frames on the stream that cannot be withdrawn. An
3012 * endpoint MUST ignore frames that it receives on
3013 * closed streams after it has sent a RST_STREAM
3014 * frame. An endpoint MAY choose to limit the period
3015 * over which it ignores frames and treat frames that
3016 * arrive after this time as being in error.
3017 */
3018 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3019 /* RFC7540#5.1:closed: any frame other than
3020 * PRIO/WU/RST in this state MUST be treated as
3021 * a connection error
3022 */
3023 if (h2c->dft != H2_FT_RST_STREAM &&
3024 h2c->dft != H2_FT_PRIORITY &&
3025 h2c->dft != H2_FT_WINDOW_UPDATE) {
3026 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003027 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 +02003028 return 0;
3029 }
3030 }
3031 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003032 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003033 return 1;
3034}
3035
Willy Tarreaubc933932017-10-09 16:21:43 +02003036/* process Rx frames to be demultiplexed */
3037static void h2_process_demux(struct h2c *h2c)
3038{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003039 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003040 struct h2_fh hdr;
3041 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003042 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003043
Willy Tarreau7838a792019-08-12 18:42:03 +02003044 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3045
Willy Tarreau081d4722017-05-16 21:51:05 +02003046 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003047 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003048
3049 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3050 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003051 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003052 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003053 goto out;
3054
Willy Tarreau52eed752017-09-22 15:05:09 +02003055 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3056 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003057 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003058 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003059 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003060 sess_log(h2c->conn->owner);
3061 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003062 goto fail;
3063 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003064 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003065
3066 h2c->max_id = 0;
3067 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003068 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003069 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003070
3071 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003072 /* ensure that what is pending is a valid SETTINGS frame
3073 * without an ACK.
3074 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003075 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 +02003076 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003077 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003078 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003079 TRACE_ERROR("failed to receive settings", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_RX_SETTINGS|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003080 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003081 if (!(h2c->flags & H2_CF_IS_BACK))
3082 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003083 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003084 goto fail;
3085 }
3086
3087 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3088 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003089 TRACE_ERROR("unexpected frame type or flags", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_RX_SETTINGS|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003090 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3091 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003092 if (!(h2c->flags & H2_CF_IS_BACK))
3093 sess_log(h2c->conn->owner);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003094 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003095 goto fail;
3096 }
3097
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003098 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003099 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003100 TRACE_ERROR("invalid settings frame length", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_RX_SETTINGS|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003101 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3102 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003103 if (!(h2c->flags & H2_CF_IS_BACK))
3104 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003105 goto fail;
3106 }
3107
Willy Tarreau3bf69182018-12-21 15:34:50 +01003108 /* that's OK, switch to FRAME_P to process it. This is
3109 * a SETTINGS frame whose header has already been
3110 * deleted above.
3111 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003112 padlen = 0;
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003113 HA_ATOMIC_ADD(&h2c->px_counters->settings_rcvd, 1);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003114 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003115 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003116 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003117
3118 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003119 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003120 int ret = 0;
3121
Willy Tarreau7838a792019-08-12 18:42:03 +02003122 if (!b_data(&h2c->dbuf)) {
3123 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
3124 break;
3125 }
3126
3127 if (h2c->st0 >= H2_CS_ERROR) {
3128 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003129 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003130 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003131
3132 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau30d05f32019-08-06 15:49:51 +02003133 h2c->rcvd_s = 0;
3134
Willy Tarreau7838a792019-08-12 18:42:03 +02003135 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Willy Tarreaua4428bd2018-12-22 18:11:41 +01003136 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr))
Willy Tarreau7e98c052017-10-10 15:56:59 +02003137 break;
3138
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003139 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003140 TRACE_ERROR("invalid H2 frame length", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003141 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003142 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003143 /* only log if no other stream can report the error */
3144 sess_log(h2c->conn->owner);
3145 }
Willy Tarreaua3075282020-12-01 10:22:43 +01003146 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003147 break;
3148 }
3149
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003150 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003151 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3152 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3153 * we read the pad length and drop it from the remaining
3154 * payload (one byte + the 9 remaining ones = 10 total
3155 * removed), so we have a frame payload starting after the
3156 * pad len. Flow controlled frames (DATA) also count the
3157 * padlen in the flow control, so it must be adjusted.
3158 */
3159 if (hdr.len < 1) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003160 TRACE_ERROR("invalid H2 padded frame length", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau3bf69182018-12-21 15:34:50 +01003161 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003162 if (!(h2c->flags & H2_CF_IS_BACK))
3163 sess_log(h2c->conn->owner);
Willy Tarreaua3075282020-12-01 10:22:43 +01003164 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau3bf69182018-12-21 15:34:50 +01003165 goto fail;
3166 }
3167 hdr.len--;
3168
3169 if (b_data(&h2c->dbuf) < 10)
3170 break; // missing padlen
3171
3172 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3173
3174 if (padlen > hdr.len) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003175 TRACE_ERROR("invalid H2 padding length", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau3bf69182018-12-21 15:34:50 +01003176 /* RFC7540#6.1 : pad length = length of
3177 * frame payload or greater => error.
3178 */
3179 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003180 if (!(h2c->flags & H2_CF_IS_BACK))
3181 sess_log(h2c->conn->owner);
Willy Tarreaua3075282020-12-01 10:22:43 +01003182 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau3bf69182018-12-21 15:34:50 +01003183 goto fail;
3184 }
3185
3186 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3187 h2c->rcvd_c++;
3188 h2c->rcvd_s++;
3189 }
3190 b_del(&h2c->dbuf, 1);
3191 }
3192 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003193
3194 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003195 h2c->dfl = hdr.len;
3196 h2c->dsi = hdr.sid;
3197 h2c->dft = hdr.ft;
3198 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003199 h2c->dpl = padlen;
Willy Tarreau73db4342019-09-25 07:28:44 +02003200 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 +02003201 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003202
3203 /* check for minimum basic frame format validity */
3204 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3205 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003206 TRACE_ERROR("received invalid H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003207 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003208 if (!(h2c->flags & H2_CF_IS_BACK))
3209 sess_log(h2c->conn->owner);
Willy Tarreaua3075282020-12-01 10:22:43 +01003210 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003211 goto fail;
3212 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003213 }
3214
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003215 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3216 * H2_CS_FRAME_P indicates an incomplete previous operation
3217 * (most often the first attempt) and requires some validity
3218 * checks for the frame and the current state. The two other
3219 * ones are set after completion (or abortion) and must skip
3220 * validity checks.
3221 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003222 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3223
Willy Tarreau567beb82018-12-18 16:52:44 +01003224 if (tmp_h2s != h2s && h2s && h2s->cs &&
3225 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003226 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003227 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003228 (h2s->flags & H2_SF_ES_RCVD) ||
3229 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003230 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003231 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 +01003232 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003233 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003234 }
3235 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003236
Willy Tarreau63864812019-08-07 14:25:20 +02003237 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003238 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3239 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003240 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003241 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003242
Willy Tarreau7e98c052017-10-10 15:56:59 +02003243 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003244 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003245 if (h2c->st0 == H2_CS_FRAME_P) {
3246 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003247 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003248 }
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003249 HA_ATOMIC_ADD(&h2c->px_counters->settings_rcvd, 1);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003250
Willy Tarreau7838a792019-08-12 18:42:03 +02003251 if (h2c->st0 == H2_CS_FRAME_A) {
3252 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 +02003253 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003254 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003255 break;
3256
Willy Tarreaucf68c782017-10-10 17:11:41 +02003257 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003258 if (h2c->st0 == H2_CS_FRAME_P) {
3259 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003260 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003261 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003262
Willy Tarreau7838a792019-08-12 18:42:03 +02003263 if (h2c->st0 == H2_CS_FRAME_A) {
3264 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 +02003265 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003266 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003267 break;
3268
Willy Tarreau26f95952017-07-27 17:18:30 +02003269 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003270 if (h2c->st0 == H2_CS_FRAME_P) {
3271 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 +02003272 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003273 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003274 break;
3275
Willy Tarreau61290ec2017-10-17 08:19:21 +02003276 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003277 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003278 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3279 * frames' parsers consume all following CONTINUATION
3280 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003281 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003282 TRACE_ERROR("received unexpected H2 CONTINUATION frame", H2_EV_RX_FRAME|H2_EV_RX_CONT|H2_EV_H2C_ERR, h2c->conn, h2s);
Willy Tarreauea18f862018-12-22 20:19:26 +01003283 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003284 if (!(h2c->flags & H2_CF_IS_BACK))
3285 sess_log(h2c->conn->owner);
Willy Tarreaua3075282020-12-01 10:22:43 +01003286 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreauea18f862018-12-22 20:19:26 +01003287 goto fail;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003288
Willy Tarreau13278b42017-10-13 19:23:14 +02003289 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003290 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003291 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003292 if (h2c->flags & H2_CF_IS_BACK)
3293 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3294 else
3295 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003296 if (tmp_h2s) {
3297 h2s = tmp_h2s;
3298 ret = 1;
3299 }
3300 }
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003301 HA_ATOMIC_ADD(&h2c->px_counters->headers_rcvd, 1);
Willy Tarreau13278b42017-10-13 19:23:14 +02003302 break;
3303
Willy Tarreau454f9052017-10-26 19:40:35 +02003304 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003305 if (h2c->st0 == H2_CS_FRAME_P) {
3306 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003307 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003308 }
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003309 HA_ATOMIC_ADD(&h2c->px_counters->data_rcvd, 1);
Willy Tarreau454f9052017-10-26 19:40:35 +02003310
Willy Tarreau7838a792019-08-12 18:42:03 +02003311 if (h2c->st0 == H2_CS_FRAME_A) {
3312 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 +02003313 ret = h2c_send_strm_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003314 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003315 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003316
Willy Tarreau92153fc2017-12-03 19:46:19 +01003317 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003318 if (h2c->st0 == H2_CS_FRAME_P) {
3319 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003320 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003321 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003322 break;
3323
Willy Tarreaucd234e92017-08-18 10:59:39 +02003324 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003325 if (h2c->st0 == H2_CS_FRAME_P) {
3326 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 +02003327 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003328 }
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003329 HA_ATOMIC_ADD(&h2c->px_counters->rst_stream_rcvd, 1);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003330 break;
3331
Willy Tarreaue96b0922017-10-30 00:28:29 +01003332 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003333 if (h2c->st0 == H2_CS_FRAME_P) {
3334 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003335 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003336 }
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003337 HA_ATOMIC_ADD(&h2c->px_counters->goaway_rcvd, 1);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003338 break;
3339
Willy Tarreau1c661982017-10-30 13:52:01 +01003340 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003341 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003342 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003343 /* drop frames that we ignore. They may be larger than
3344 * the buffer so we drain all of their contents until
3345 * we reach the end.
3346 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003347 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3348 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003349 h2c->dfl -= ret;
3350 ret = h2c->dfl == 0;
3351 }
3352
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003353 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003354 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003355 if (h2s->st == H2_SS_ERROR) {
3356 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 +01003357 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003358 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003359
Willy Tarreau7838a792019-08-12 18:42:03 +02003360 if (h2c->st0 == H2_CS_FRAME_E) {
3361 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 +01003362 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003363 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003364
Willy Tarreau7e98c052017-10-10 15:56:59 +02003365 /* error or missing data condition met above ? */
Willy Tarreau7838a792019-08-12 18:42:03 +02003366 if (ret <= 0) {
3367 TRACE_DEVEL("insufficient data to proceed", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003368 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003369 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003370
3371 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003372 if (h2c->dfl)
3373 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003374 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3375 b_del(&h2c->dbuf, ret);
3376 h2c->dfl -= ret;
3377 if (!h2c->dfl) {
3378 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3379 h2c->st0 = H2_CS_FRAME_H;
3380 h2c->dsi = -1;
3381 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003382 }
3383 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003384
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003385 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003386 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3387 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003388 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003389 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003390
Willy Tarreau52eed752017-09-22 15:05:09 +02003391 fail:
3392 /* we can go here on missing data, blocked response or error */
Willy Tarreau567beb82018-12-18 16:52:44 +01003393 if (h2s && h2s->cs &&
3394 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003395 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003396 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003397 (h2s->flags & H2_SF_ES_RCVD) ||
3398 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003399 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003400 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 +01003401 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003402 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003403 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003404
Willy Tarreau7838a792019-08-12 18:42:03 +02003405 if (old_iw != h2c->miw) {
3406 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003407 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003408 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003409
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003410 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003411 out:
3412 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreaubc933932017-10-09 16:21:43 +02003413}
3414
Willy Tarreau989539b2020-01-10 17:01:29 +01003415/* resume each h2s eligible for sending in list head <head> */
3416static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3417{
3418 struct h2s *h2s, *h2s_back;
3419
3420 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3421
3422 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3423 if (h2c->mws <= 0 ||
3424 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3425 h2c->st0 >= H2_CS_ERROR)
3426 break;
3427
3428 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003429
Willy Tarreaud9464162020-01-10 18:25:07 +01003430 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003431 continue;
3432
Willy Tarreau5723f292020-01-10 15:16:57 +01003433 /* If the sender changed his mind and unsubscribed, let's just
3434 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003435 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003436 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3437 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003438 LIST_DEL_INIT(&h2s->list);
3439 continue;
3440 }
3441
Willy Tarreauf96508a2020-01-10 11:12:48 +01003442 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003443 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003444 tasklet_wakeup(h2s->subs->tasklet);
3445 h2s->subs->events &= ~SUB_RETRY_SEND;
3446 if (!h2s->subs->events)
3447 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003448 }
3449 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3450 tasklet_wakeup(h2s->shut_tl);
3451 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003452 }
3453
3454 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3455}
3456
Willy Tarreaubc933932017-10-09 16:21:43 +02003457/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3458 * the end.
3459 */
3460static int h2_process_mux(struct h2c *h2c)
3461{
Willy Tarreau7838a792019-08-12 18:42:03 +02003462 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3463
Willy Tarreau01b44822018-10-03 14:26:37 +02003464 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3465 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3466 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3467 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003468 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003469 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003470 goto fail;
3471 }
3472 h2c->st0 = H2_CS_SETTINGS1;
3473 }
3474 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003475 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003476 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003477 }
3478
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003479 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003480 if (h2c->rcvd_s > 0 &&
3481 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3482 h2c_send_strm_wu(h2c) < 0)
3483 goto fail;
3484
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003485 if (h2c->rcvd_c > 0 &&
3486 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3487 h2c_send_conn_wu(h2c) < 0)
3488 goto fail;
3489
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003490 /* First we always process the flow control list because the streams
3491 * waiting there were already elected for immediate emission but were
3492 * blocked just on this.
3493 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003494 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3495 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003496
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003497 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003498 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003499 if (h2c->st0 == H2_CS_ERROR) {
3500 if (h2c->max_id >= 0) {
3501 h2c_send_goaway_error(h2c, NULL);
3502 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003503 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003504 }
3505
3506 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3507 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003508 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003509 done:
3510 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3511 return 1;
3512 out0:
3513 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3514 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003515}
3516
Willy Tarreau62f52692017-10-08 23:01:42 +02003517
Willy Tarreau479998a2018-11-18 06:30:59 +01003518/* Attempt to read data, and subscribe if none available.
3519 * The function returns 1 if data has been received, otherwise zero.
3520 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003521static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003522{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003523 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003524 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003525 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003526 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003527
Willy Tarreau7838a792019-08-12 18:42:03 +02003528 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3529
3530 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3531 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003532 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003533 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003534
Willy Tarreau7838a792019-08-12 18:42:03 +02003535 if (!h2_recv_allowed(h2c)) {
3536 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003537 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003538 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003539
Willy Tarreau44e973f2018-03-01 17:49:30 +01003540 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003541 if (!buf) {
3542 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003543 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003544 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003545 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003546
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003547 b_realign_if_empty(buf);
3548 if (!b_data(buf)) {
3549 /* try to pre-align the buffer like the
3550 * rxbufs will be to optimize memory copies. We'll make
3551 * sure that the frame header lands at the end of the
3552 * HTX block to alias it upon recv. We cannot use the
3553 * head because rcv_buf() will realign the buffer if
3554 * it's empty. Thus we cheat and pretend we already
3555 * have a few bytes there.
3556 */
3557 max = buf_room_for_htx_data(buf) + 9;
3558 buf->head = sizeof(struct htx) - 9;
3559 }
3560 else
3561 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003562
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003563 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003564
Willy Tarreau7838a792019-08-12 18:42:03 +02003565 if (max && !ret && h2_recv_allowed(h2c)) {
3566 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003567 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003568 } else if (ret)
Willy Tarreau022e5e52020-09-10 09:33:15 +02003569 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003570
Olivier Houcharda1411e62018-08-17 18:42:48 +02003571 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003572 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003573 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003574 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003575 }
3576
Willy Tarreau7838a792019-08-12 18:42:03 +02003577 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003578 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003579 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003580 }
3581
3582 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003583 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003584}
3585
Willy Tarreau479998a2018-11-18 06:30:59 +01003586/* Try to send data if possible.
3587 * The function returns 1 if data have been sent, otherwise zero.
3588 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003589static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003590{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003591 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003592 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003593 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003594
Willy Tarreau7838a792019-08-12 18:42:03 +02003595 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003596
Willy Tarreau7838a792019-08-12 18:42:03 +02003597 if (conn->flags & CO_FL_ERROR) {
3598 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3599 return 1;
3600 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003601
Willy Tarreau911db9b2020-01-23 16:27:54 +01003602 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003603 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003604 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003605 }
3606
Willy Tarreaubc933932017-10-09 16:21:43 +02003607 /* This loop is quite simple : it tries to fill as much as it can from
3608 * pending streams into the existing buffer until it's reportedly full
3609 * or the end of send requests is reached. Then it tries to send this
3610 * buffer's contents out, marks it not full if at least one byte could
3611 * be sent, and tries again.
3612 *
3613 * The snd_buf() function normally takes a "flags" argument which may
3614 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3615 * data immediately comes and CO_SFL_STREAMER to indicate that the
3616 * connection is streaming lots of data (used to increase TLS record
3617 * size at the expense of latency). The former can be sent any time
3618 * there's a buffer full flag, as it indicates at least one stream
3619 * attempted to send and failed so there are pending data. An
3620 * alternative would be to set it as long as there's an active stream
3621 * but that would be problematic for ACKs until we have an absolute
3622 * guarantee that all waiters have at least one byte to send. The
3623 * latter should possibly not be set for now.
3624 */
3625
3626 done = 0;
3627 while (!done) {
3628 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003629 unsigned int released = 0;
3630 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003631
3632 /* fill as much as we can into the current buffer */
3633 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3634 done = h2_process_mux(h2c);
3635
Olivier Houchard2b094432019-01-29 18:28:36 +01003636 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003637 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003638
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003639 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
3640 (h2c->st0 == H2_CS_ERROR2) || (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003641 break;
3642
3643 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3644 flags |= CO_SFL_MSG_MORE;
3645
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003646 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3647 if (b_data(buf)) {
3648 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003649 if (!ret) {
3650 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003651 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003652 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003653 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003654 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003655 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003656 if (b_data(buf)) {
3657 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003658 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003659 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003660 }
3661 b_free(buf);
3662 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003663 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003664
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003665 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02003666 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003667
Willy Tarreaubc933932017-10-09 16:21:43 +02003668 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003669 if (sent)
3670 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003671 }
3672
Willy Tarreaua2af5122017-10-09 11:56:46 +02003673 if (conn->flags & CO_FL_SOCK_WR_SH) {
3674 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003675 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003676 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003677 /* We're not full anymore, so we can wake any task that are waiting
3678 * for us.
3679 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003680 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3681 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003682
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003683 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003684 if (!br_data(h2c->mbuf)) {
3685 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003686 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003687 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003688schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003689 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3690 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003691 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003692 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003693
Willy Tarreau7838a792019-08-12 18:42:03 +02003694 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003695 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003696}
3697
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003698/* this is the tasklet referenced in h2c->wait_event.tasklet */
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003699static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short status)
3700{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003701 struct connection *conn;
3702 struct tasklet *tl = (struct tasklet *)t;
3703 int conn_in_list;
3704 struct h2c *h2c;
Olivier Houchard7505f942018-08-21 18:10:44 +02003705 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003706
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003707
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003708 HA_SPIN_LOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003709 if (t->context == NULL) {
3710 /* The connection has been taken over by another thread,
3711 * we're no longer responsible for it, so just free the
3712 * tasklet, and do nothing.
3713 */
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003714 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003715 tasklet_free(tl);
Willy Tarreau38468772020-06-28 00:31:13 +02003716 goto leave;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003717 }
3718 h2c = ctx;
3719 conn = h2c->conn;
3720
3721 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3722
3723 conn_in_list = conn->flags & CO_FL_LIST_MASK;
3724
3725 /* Remove the connection from the list, to be sure nobody attempts
3726 * to use it while we handle the I/O events
3727 */
3728 if (conn_in_list)
3729 MT_LIST_DEL(&conn->list);
3730
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003731 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreau7838a792019-08-12 18:42:03 +02003732
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003733 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003734 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003735 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003736 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003737 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003738 ret = h2_process(h2c);
3739
3740 /* If we were in an idle list, we want to add it back into it,
3741 * unless h2_process() returned -1, which mean it has destroyed
3742 * the connection (testing !ret is enough, if h2_process() wasn't
3743 * called then ret will be 0 anyway.
3744 */
3745 if (!ret && conn_in_list) {
3746 struct server *srv = objt_server(conn->target);
3747
3748 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreaua9d7b762020-07-10 08:28:20 +02003749 MT_LIST_ADDQ(&srv->safe_conns[tid], &conn->list);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003750 else
Willy Tarreaua9d7b762020-07-10 08:28:20 +02003751 MT_LIST_ADDQ(&srv->idle_conns[tid], &conn->list);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003752 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003753
Willy Tarreau38468772020-06-28 00:31:13 +02003754leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02003755 TRACE_LEAVE(H2_EV_H2C_WAKE);
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003756 return NULL;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003757}
Willy Tarreaua2af5122017-10-09 11:56:46 +02003758
Willy Tarreau62f52692017-10-08 23:01:42 +02003759/* callback called on any event by the connection handler.
3760 * It applies changes and returns zero, or < 0 if it wants immediate
3761 * destruction of the connection (which normally doesn not happen in h2).
3762 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003763static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003764{
Olivier Houchard7505f942018-08-21 18:10:44 +02003765 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003766
Willy Tarreau7838a792019-08-12 18:42:03 +02003767 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3768
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003769 if (b_data(&h2c->dbuf) && !(h2c->flags & H2_CF_DEM_BLOCK_ANY)) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003770 h2_process_demux(h2c);
3771
3772 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003773 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003774
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003775 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003776 h2c->flags &= ~H2_CF_DEM_DFULL;
3777 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003778 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003779
Willy Tarreaub1e600c2020-10-13 18:09:15 +02003780 if (unlikely(h2c->proxy->disabled) && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01003781 /* frontend is stopping, reload likely in progress, let's try
3782 * to announce a graceful shutdown if not yet done. We don't
3783 * care if it fails, it will be tried again later.
3784 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003785 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
Willy Tarreau8ec14062017-12-30 18:08:13 +01003786 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3787 if (h2c->last_sid < 0)
3788 h2c->last_sid = (1U << 31) - 1;
3789 h2c_send_goaway_error(h2c, NULL);
3790 }
3791 }
3792
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003793 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003794 * If we received early data, and the handshake is done, wake
3795 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003796 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003797 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01003798 (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 +01003799 struct eb32_node *node;
3800 struct h2s *h2s;
3801
3802 h2c->flags |= H2_CF_WAIT_FOR_HS;
3803 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
3804
3805 while (node) {
3806 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01003807 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01003808 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003809 node = eb32_next(node);
3810 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003811 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003812
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003813 if (conn->flags & CO_FL_ERROR || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01003814 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
3815 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
3816 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02003817 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003818
3819 if (eb_is_empty(&h2c->streams_by_id)) {
3820 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003821 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003822 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003823 return -1;
3824 }
Willy Tarreau4481e262019-10-31 15:36:30 +01003825
3826 /* connections in error must be removed from the idle lists */
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003827 HA_SPIN_LOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreau4481e262019-10-31 15:36:30 +01003828 MT_LIST_DEL((struct mt_list *)&conn->list);
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003829 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreau4481e262019-10-31 15:36:30 +01003830 }
3831 else if (h2c->st0 == H2_CS_ERROR) {
3832 /* connections in error must be removed from the idle lists */
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003833 HA_SPIN_LOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreau4481e262019-10-31 15:36:30 +01003834 MT_LIST_DEL((struct mt_list *)&conn->list);
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003835 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003836 }
3837
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003838 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01003839 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003840
Olivier Houchard53216e72018-10-10 15:46:36 +02003841 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
3842 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
3843 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02003844 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02003845 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
3846 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02003847 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003848
Willy Tarreau3f133572017-10-31 19:21:06 +01003849 if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02003850 if (h2c_may_expire(h2c))
3851 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3852 else
3853 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02003854 task_queue(h2c->task);
Willy Tarreauea392822017-10-31 10:02:25 +01003855 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003856
Olivier Houchard7505f942018-08-21 18:10:44 +02003857 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003858 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003859 return 0;
3860}
3861
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003862/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003863static int h2_wake(struct connection *conn)
3864{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003865 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02003866 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003867
Willy Tarreau7838a792019-08-12 18:42:03 +02003868 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3869 ret = h2_process(h2c);
Willy Tarreau508f9892020-02-11 04:38:56 +01003870 if (ret >= 0)
3871 h2_wake_some_streams(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003872 TRACE_LEAVE(H2_EV_H2C_WAKE);
3873 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003874}
3875
Willy Tarreauea392822017-10-31 10:02:25 +01003876/* Connection timeout management. The principle is that if there's no receipt
3877 * nor sending for a certain amount of time, the connection is closed. If the
3878 * MUX buffer still has lying data or is not allocatable, the connection is
3879 * immediately killed. If it's allocatable and empty, we attempt to send a
3880 * GOAWAY frame.
3881 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02003882static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state)
Willy Tarreauea392822017-10-31 10:02:25 +01003883{
Olivier Houchard9f6af332018-05-25 14:04:04 +02003884 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01003885 int expired = tick_is_expired(t->expire, now_ms);
3886
Willy Tarreau7838a792019-08-12 18:42:03 +02003887 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
3888
Willy Tarreaubd42e922020-06-30 11:19:23 +02003889 if (h2c) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02003890 /* Make sure nobody stole the connection from us */
3891 HA_SPIN_LOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
3892
3893 /* Somebody already stole the connection from us, so we should not
3894 * free it, we just have to free the task.
3895 */
3896 if (!t->context) {
3897 h2c = NULL;
Willy Tarreau46ac7812020-07-04 07:16:18 +02003898 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02003899 goto do_leave;
3900 }
3901
3902
Willy Tarreaubd42e922020-06-30 11:19:23 +02003903 if (!expired) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02003904 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02003905 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
3906 return t;
3907 }
Willy Tarreauea392822017-10-31 10:02:25 +01003908
Willy Tarreaubd42e922020-06-30 11:19:23 +02003909 if (!h2c_may_expire(h2c)) {
3910 /* we do still have streams but all of them are idle, waiting
3911 * for the data layer, so we must not enforce the timeout here.
3912 */
Olivier Houchard48ce6a32020-07-02 11:58:05 +02003913 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02003914 t->expire = TICK_ETERNITY;
3915 return t;
3916 }
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02003917
Willy Tarreaubd42e922020-06-30 11:19:23 +02003918 /* We're about to destroy the connection, so make sure nobody attempts
3919 * to steal it from us.
3920 */
Willy Tarreaubd42e922020-06-30 11:19:23 +02003921 if (h2c->conn->flags & CO_FL_LIST_MASK)
3922 MT_LIST_DEL(&h2c->conn->list);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003923
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003924 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02003925 }
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003926
Olivier Houchard48ce6a32020-07-02 11:58:05 +02003927do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02003928 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02003929
3930 if (!h2c) {
3931 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02003932 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02003933 return NULL;
3934 }
3935
3936 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01003937 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02003938 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01003939
Willy Tarreau662fafc2019-05-26 09:43:07 +02003940 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01003941 /* don't even try to send a GOAWAY, the buffer is stuck */
3942 h2c->flags |= H2_CF_GOAWAY_FAILED;
3943 }
3944
3945 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01003946 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01003947 if (h2c_send_goaway_error(h2c, NULL) <= 0)
3948 h2c->flags |= H2_CF_GOAWAY_FAILED;
3949
Willy Tarreau662fafc2019-05-26 09:43:07 +02003950 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003951 unsigned int released = 0;
3952 struct buffer *buf;
3953
3954 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3955 if (b_data(buf)) {
3956 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
3957 if (!ret)
3958 break;
3959 b_del(buf, ret);
3960 if (b_data(buf))
3961 break;
3962 b_free(buf);
3963 released++;
3964 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02003965 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003966
3967 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02003968 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau787db9a2018-06-14 18:31:46 +02003969 }
Willy Tarreauea392822017-10-31 10:02:25 +01003970
Willy Tarreau4481e262019-10-31 15:36:30 +01003971 /* in any case this connection must not be considered idle anymore */
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003972 HA_SPIN_LOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreau4481e262019-10-31 15:36:30 +01003973 MT_LIST_DEL((struct mt_list *)&h2c->conn->list);
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003974 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreau4481e262019-10-31 15:36:30 +01003975
Willy Tarreau0975f112018-03-29 15:22:59 +02003976 /* either we can release everything now or it will be done later once
3977 * the last stream closes.
3978 */
3979 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02003980 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01003981
Willy Tarreau7838a792019-08-12 18:42:03 +02003982 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01003983 return NULL;
3984}
3985
3986
Willy Tarreau62f52692017-10-08 23:01:42 +02003987/*******************************************/
3988/* functions below are used by the streams */
3989/*******************************************/
3990
3991/*
3992 * Attach a new stream to a connection
3993 * (Used for outgoing connections)
3994 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003995static struct conn_stream *h2_attach(struct connection *conn, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02003996{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003997 struct conn_stream *cs;
3998 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003999 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004000
Willy Tarreau7838a792019-08-12 18:42:03 +02004001 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Christopher Faulet236c93b2020-07-02 09:19:54 +02004002 cs = cs_new(conn, conn->target);
Willy Tarreau7838a792019-08-12 18:42:03 +02004003 if (!cs) {
4004 TRACE_DEVEL("leaving on CS allocation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004005 return NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004006 }
Olivier Houchardf502aca2018-12-14 19:42:40 +01004007 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004008 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004009 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004010 cs_free(cs);
4011 return NULL;
4012 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004013 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004014 return cs;
Willy Tarreau62f52692017-10-08 23:01:42 +02004015}
4016
Willy Tarreaufafd3982018-11-18 21:29:20 +01004017/* Retrieves the first valid conn_stream from this connection, or returns NULL.
4018 * We have to scan because we may have some orphan streams. It might be
4019 * beneficial to scan backwards from the end to reduce the likeliness to find
4020 * orphans.
4021 */
4022static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
4023{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004024 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004025 struct h2s *h2s;
4026 struct eb32_node *node;
4027
4028 node = eb32_first(&h2c->streams_by_id);
4029 while (node) {
4030 h2s = container_of(node, struct h2s, by_id);
4031 if (h2s->cs)
4032 return h2s->cs;
4033 node = eb32_next(node);
4034 }
4035 return NULL;
4036}
4037
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004038static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4039{
4040 int ret = 0;
4041 struct h2c *h2c = conn->ctx;
4042
4043 switch (mux_ctl) {
4044 case MUX_STATUS:
4045 /* Only consider the mux to be ready if we're done with
4046 * the preface and settings, and we had no error.
4047 */
4048 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4049 ret |= MUX_STATUS_READY;
4050 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02004051 case MUX_EXIT_STATUS:
4052 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004053 default:
4054 return -1;
4055 }
4056}
4057
Willy Tarreau62f52692017-10-08 23:01:42 +02004058/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004059 * Destroy the mux and the associated connection, if it is no longer used
4060 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004061static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004062{
Christopher Faulet73c12072019-04-08 11:23:22 +02004063 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004064
Willy Tarreau7838a792019-08-12 18:42:03 +02004065 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02004066 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02004067 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004068 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004069}
4070
4071/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004072 * Detach the stream from the connection and possibly release the connection.
4073 */
4074static void h2_detach(struct conn_stream *cs)
4075{
Willy Tarreau60935142017-10-16 18:11:19 +02004076 struct h2s *h2s = cs->ctx;
4077 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004078 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004079
Willy Tarreau7838a792019-08-12 18:42:03 +02004080 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4081
Willy Tarreau60935142017-10-16 18:11:19 +02004082 cs->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004083 if (!h2s) {
4084 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004085 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004086 }
Willy Tarreau60935142017-10-16 18:11:19 +02004087
Willy Tarreaud9464162020-01-10 18:25:07 +01004088 /* there's no txbuf so we're certain not to be able to send anything */
4089 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004090
Olivier Houchardf502aca2018-12-14 19:42:40 +01004091 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004092 h2c = h2s->h2c;
4093 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02004094 h2c->nb_cs--;
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004095 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
4096 !h2_frt_has_too_many_cs(h2c)) {
4097 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004098 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004099 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004100 }
Willy Tarreau60935142017-10-16 18:11:19 +02004101
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004102 /* this stream may be blocked waiting for some data to leave (possibly
4103 * an ES or RST frame), so orphan it in this case.
4104 */
Willy Tarreau3041fcc2018-03-29 15:41:32 +02004105 if (!(cs->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004106 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004107 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004108 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004109 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004110 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004111 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004112
Willy Tarreau45f752e2017-10-30 15:44:59 +01004113 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
4114 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
4115 /* unblock the connection if it was blocked on this
4116 * stream.
4117 */
4118 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4119 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004120 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004121 }
4122
Willy Tarreau71049cc2018-03-28 13:56:39 +02004123 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004124
Christopher Faulet9b79a102019-07-15 11:22:56 +02004125 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01004126 if (!(h2c->conn->flags &
4127 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004128 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004129 /* Add the connection in the session server list, if not already done */
4130 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4131 h2c->conn->owner = NULL;
4132 if (eb_is_empty(&h2c->streams_by_id)) {
4133 h2c->conn->mux->destroy(h2c);
4134 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4135 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004136 }
4137 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004138 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004139 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4140 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4141 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004142 return;
4143 }
4144 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004145 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004146 else {
4147 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004148 /* If the connection is owned by the session, first remove it
4149 * from its list
4150 */
4151 if (h2c->conn->owner) {
4152 session_unown_conn(h2c->conn->owner, h2c->conn);
4153 h2c->conn->owner = NULL;
4154 }
4155
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004156 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004157 /* The server doesn't want it, let's kill the connection right away */
4158 h2c->conn->mux->destroy(h2c);
4159 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4160 return;
4161 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004162 /* At this point, the connection has been added to the
4163 * server idle list, so another thread may already have
4164 * hijacked it, so we can't do anything with it.
4165 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004166 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4167 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004168
Olivier Houchard8a786902018-12-15 16:05:40 +01004169 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004170 else if (MT_LIST_ISEMPTY(&h2c->conn->list) &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004171 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
4172 !LIST_ADDED(&h2c->conn->session_list)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004173 LIST_ADD(&__objt_server(h2c->conn->target)->available_conns[tid], mt_list_to_list(&h2c->conn->list));
4174 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004175 }
4176 }
4177 }
4178
Willy Tarreaue323f342018-03-28 13:51:45 +02004179 /* We don't want to close right now unless we're removing the
4180 * last stream, and either the connection is in error, or it
4181 * reached the ID already specified in a GOAWAY frame received
4182 * or sent (as seen by last_sid >= 0).
4183 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004184 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004185 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004186 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004187 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004188 }
4189 else if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004190 if (h2c_may_expire(h2c))
4191 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
4192 else
4193 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02004194 task_queue(h2c->task);
Willy Tarreau7838a792019-08-12 18:42:03 +02004195 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004196 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004197 else
4198 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004199}
4200
Willy Tarreau88bdba32019-05-13 18:17:53 +02004201/* Performs a synchronous or asynchronous shutr(). */
4202static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004203{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004204 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004205
Willy Tarreauf983d002019-05-14 10:40:21 +02004206 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004207 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004208
Willy Tarreau7838a792019-08-12 18:42:03 +02004209 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4210
Willy Tarreau18059042019-01-31 19:12:48 +01004211 /* a connstream may require us to immediately kill the whole connection
4212 * for example because of a "tcp-request content reject" rule that is
4213 * normally used to limit abuse. In this case we schedule a goaway to
4214 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004215 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004216 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004217 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004218 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004219 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4220 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4221 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004222 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4223 /* Nothing was never sent for this stream, so reset with
4224 * REFUSED_STREAM error to let the client retry the
4225 * request.
4226 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004227 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004228 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4229 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004230 else {
4231 /* a final response was already provided, we don't want this
4232 * stream anymore. This may happen when the server responds
4233 * before the end of an upload and closes quickly (redirect,
4234 * deny, ...)
4235 */
4236 h2s_error(h2s, H2_ERR_CANCEL);
4237 }
Willy Tarreau18059042019-01-31 19:12:48 +01004238
Willy Tarreau90c32322017-11-24 08:00:30 +01004239 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004240 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004241 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004242
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004243 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004244 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004245 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004246 done:
4247 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004248 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004249 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004250add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004251 /* Let the handler know we want to shutr, and add ourselves to the
4252 * most relevant list if not yet done. h2_deferred_shut() will be
4253 * automatically called via the shut_tl tasklet when there's room
4254 * again.
4255 */
4256 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreauc234ae32019-05-13 17:56:11 +02004257 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004258 if (h2s->flags & H2_SF_BLK_MFCTL)
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004259 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004260 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004261 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004262 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004263 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004264 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004265}
4266
Willy Tarreau88bdba32019-05-13 18:17:53 +02004267/* Performs a synchronous or asynchronous shutw(). */
4268static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004269{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004270 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004271
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004272 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004273 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004274
Willy Tarreau7838a792019-08-12 18:42:03 +02004275 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4276
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004277 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01004278 /* we can cleanly close using an empty data frame only after headers */
4279
4280 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4281 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004282 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004283
4284 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004285 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004286 else
4287 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004288 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004289 /* a connstream may require us to immediately kill the whole connection
4290 * for example because of a "tcp-request content reject" rule that is
4291 * normally used to limit abuse. In this case we schedule a goaway to
4292 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004293 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004294 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004295 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004296 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004297 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4298 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4299 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004300 else {
4301 /* Nothing was never sent for this stream, so reset with
4302 * REFUSED_STREAM error to let the client retry the
4303 * request.
4304 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004305 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004306 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4307 }
Willy Tarreau18059042019-01-31 19:12:48 +01004308
Willy Tarreau90c32322017-11-24 08:00:30 +01004309 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004310 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004311 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004312
Willy Tarreau00dd0782018-03-01 16:31:34 +01004313 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004314 }
4315
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004316 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004317 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004318
4319 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4320
Willy Tarreau88bdba32019-05-13 18:17:53 +02004321 done:
4322 h2s->flags &= ~H2_SF_WANT_SHUTW;
4323 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004324
4325 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004326 /* Let the handler know we want to shutw, and add ourselves to the
4327 * most relevant list if not yet done. h2_deferred_shut() will be
4328 * automatically called via the shut_tl tasklet when there's room
4329 * again.
4330 */
4331 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreauc234ae32019-05-13 17:56:11 +02004332 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004333 if (h2s->flags & H2_SF_BLK_MFCTL)
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004334 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004335 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004336 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004337 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004338 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004339 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004340}
4341
Willy Tarreau5723f292020-01-10 15:16:57 +01004342/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004343 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4344 * and prevented the last frame from being emitted.
4345 */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004346static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state)
4347{
4348 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004349 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004350
Willy Tarreau7838a792019-08-12 18:42:03 +02004351 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4352
Willy Tarreau5723f292020-01-10 15:16:57 +01004353 if (h2s->flags & H2_SF_NOTIFIED) {
4354 /* some data processing remains to be done first */
4355 goto end;
4356 }
4357
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004358 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004359 h2_do_shutw(h2s);
4360
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004361 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004362 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004363
Willy Tarreau88bdba32019-05-13 18:17:53 +02004364 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004365 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004366 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004367
Willy Tarreau88bdba32019-05-13 18:17:53 +02004368 if (!h2s->cs) {
4369 h2s_destroy(h2s);
4370 if (h2c_is_dead(h2c))
4371 h2_release(h2c);
4372 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004373 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004374 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004375 TRACE_LEAVE(H2_EV_STRM_SHUT);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004376 return NULL;
Willy Tarreau62f52692017-10-08 23:01:42 +02004377}
4378
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004379/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004380static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
4381{
4382 struct h2s *h2s = cs->ctx;
4383
Willy Tarreau7838a792019-08-12 18:42:03 +02004384 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004385 if (cs->flags & CS_FL_KILL_CONN)
4386 h2s->flags |= H2_SF_KILL_CONN;
4387
Willy Tarreau7838a792019-08-12 18:42:03 +02004388 if (mode)
4389 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004390
Willy Tarreau7838a792019-08-12 18:42:03 +02004391 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004392}
4393
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004394/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004395static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
4396{
4397 struct h2s *h2s = cs->ctx;
4398
Willy Tarreau7838a792019-08-12 18:42:03 +02004399 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004400 if (cs->flags & CS_FL_KILL_CONN)
4401 h2s->flags |= H2_SF_KILL_CONN;
4402
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004403 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004404 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004405}
4406
Christopher Faulet9b79a102019-07-15 11:22:56 +02004407/* Decode the payload of a HEADERS frame and produce the HTX request or response
4408 * depending on the connection's side. Returns a positive value on success, a
4409 * negative value on failure, or 0 if it couldn't proceed. May report connection
4410 * errors in h2c->errcode if the frame is non-decodable and the connection
4411 * unrecoverable. In absence of connection error when a failure is reported, the
4412 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004413 *
4414 * The function may fold CONTINUATION frames into the initial HEADERS frame
4415 * by removing padding and next frame header, then moving the CONTINUATION
4416 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4417 * leaving a hole between the main frame and the beginning of the next one.
4418 * The possibly remaining incomplete or next frame at the end may be moved
4419 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4420 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4421 *
4422 * A buffer at the beginning of processing may look like this :
4423 *
4424 * ,---.---------.-----.--------------.--------------.------.---.
4425 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4426 * `---^---------^-----^--------------^--------------^------^---'
4427 * | | <-----> | |
4428 * area | dpl | wrap
4429 * |<--------------> |
4430 * | dfl |
4431 * |<-------------------------------------------------->|
4432 * head data
4433 *
4434 * Padding is automatically overwritten when folding, participating to the
4435 * hole size after dfl :
4436 *
4437 * ,---.------------------------.-----.--------------.------.---.
4438 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4439 * `---^------------------------^-----^--------------^------^---'
4440 * | | <-----> | |
4441 * area | hole | wrap
4442 * |<-----------------------> |
4443 * | dfl |
4444 * |<-------------------------------------------------->|
4445 * head data
4446 *
4447 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4448 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4449 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004450 *
4451 * The <flags> field must point to either the stream's flags or to a copy of it
4452 * so that the function can update the following flags :
4453 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004454 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004455 *
4456 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4457 * decoding, in order to detect if we're dealing with a headers or a trailers
4458 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004459 */
Willy Tarreau4790f7c2019-01-24 11:33:02 +01004460static 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 +02004461{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004462 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004463 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004464 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004465 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004466 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004467 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004468 int flen; // header frame len
4469 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004470 int ret = 0;
4471 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004472 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004473
Willy Tarreau7838a792019-08-12 18:42:03 +02004474 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4475
Willy Tarreauea18f862018-12-22 20:19:26 +01004476next_frame:
4477 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4478 goto leave; // incomplete input frame
4479
4480 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4481 * this case, we'll try to paste it immediately after the initial
4482 * HEADERS frame payload and kill any possible padding. The initial
4483 * frame's length will be increased to represent the concatenation
4484 * of the two frames. The next frame is read from position <tlen>
4485 * and written at position <flen> (minus padding if some is present).
4486 */
4487 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4488 struct h2_fh hdr;
4489 int clen; // CONTINUATION frame's payload length
4490
Willy Tarreau7838a792019-08-12 18:42:03 +02004491 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 +01004492 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4493 /* no more data, the buffer may be full, either due to
4494 * too large a frame or because of too large a hole that
4495 * we're going to compact at the end.
4496 */
4497 goto leave;
4498 }
4499
4500 if (hdr.ft != H2_FT_CONTINUATION) {
4501 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004502 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 +01004503 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua3075282020-12-01 10:22:43 +01004504 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreauea18f862018-12-22 20:19:26 +01004505 goto fail;
4506 }
4507
4508 if (hdr.sid != h2c->dsi) {
4509 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004510 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 +01004511 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua3075282020-12-01 10:22:43 +01004512 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreauea18f862018-12-22 20:19:26 +01004513 goto fail;
4514 }
4515
4516 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4517 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004518 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 +01004519 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4520 goto fail;
4521 }
4522
4523 /* detect when we must stop aggragating frames */
4524 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4525
4526 /* Take as much as we can of the CONTINUATION frame's payload */
4527 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4528 if (clen > hdr.len)
4529 clen = hdr.len;
4530
4531 /* Move the frame's payload over the padding, hole and frame
4532 * header. At least one of hole or dpl is null (see diagrams
4533 * above). The hole moves after the new aggragated frame.
4534 */
4535 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole + 9), clen, -(h2c->dpl + hole + 9));
4536 h2c->dfl += clen - h2c->dpl;
4537 hole += h2c->dpl + 9;
4538 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004539 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 +01004540 goto next_frame;
4541 }
4542
4543 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004544
Willy Tarreau13278b42017-10-13 19:23:14 +02004545 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004546 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004547 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004548 copy = alloc_trash_chunk();
4549 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004550 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 +02004551 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4552 goto fail;
4553 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004554 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4555 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4556 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004557 }
4558
Willy Tarreau13278b42017-10-13 19:23:14 +02004559 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4560 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004561 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004562 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004563 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 +01004564 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua3075282020-12-01 10:22:43 +01004565 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004566 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004567 }
4568
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004569 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004570 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 +01004571 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4572 goto fail;
4573 }
4574
Willy Tarreau13278b42017-10-13 19:23:14 +02004575 hdrs += 5; // stream dep = 4, weight = 1
4576 flen -= 5;
4577 }
4578
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004579 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004580 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 +01004581 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004582 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004583 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004584
Willy Tarreau937f7602018-02-26 15:22:17 +01004585 /* we can't retry a failed decompression operation so we must be very
4586 * careful not to take any risks. In practice the output buffer is
4587 * always empty except maybe for trailers, in which case we simply have
4588 * to wait for the upper layer to finish consuming what is available.
4589 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004590 htx = htx_from_buf(rxbuf);
4591 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004592 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 +02004593 h2c->flags |= H2_CF_DEM_SFULL;
4594 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004595 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004596
Willy Tarreau25919232019-01-03 14:48:18 +01004597 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004598 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4599 sizeof(list)/sizeof(list[0]), tmp);
4600 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004601 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 +01004602 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4603 goto fail;
4604 }
4605
Willy Tarreau25919232019-01-03 14:48:18 +01004606 /* The PACK decompressor was updated, let's update the input buffer and
4607 * the parser's state to commit these changes and allow us to later
4608 * fail solely on the stream if needed.
4609 */
4610 b_del(&h2c->dbuf, h2c->dfl + hole);
4611 h2c->dfl = hole = 0;
4612 h2c->st0 = H2_CS_FRAME_H;
4613
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004614 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004615 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004616
Willy Tarreau88d138e2019-01-02 19:38:14 +01004617 if (*flags & H2_SF_HEADERS_RCVD)
4618 goto trailers;
4619
4620 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004621 if (h2c->flags & H2_CF_IS_BACK)
4622 outlen = h2_make_htx_response(list, htx, &msgf, body_len);
4623 else
4624 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004625
4626 if (outlen < 0) {
Willy Tarreau25919232019-01-03 14:48:18 +01004627 /* too large headers? this is a stream error only */
Willy Tarreau7838a792019-08-12 18:42:03 +02004628 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 +01004629 goto fail;
4630 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004631
Willy Tarreau174b06a2018-04-25 18:13:58 +02004632 if (msgf & H2_MSGF_BODY) {
4633 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004634 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004635 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004636 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004637 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004638 }
4639
Willy Tarreau88d138e2019-01-02 19:38:14 +01004640 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004641 /* indicate that a HEADERS frame was received for this stream, except
4642 * for 1xx responses. For 1xx responses, another HEADERS frame is
4643 * expected.
4644 */
4645 if (!(msgf & H2_MSGF_RSP_1XX))
4646 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004647
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02004648 if ((h2c->dff & H2_F_HEADERS_END_STREAM)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02004649 /* Mark the end of message using EOM */
Christopher Faulet810df062020-07-22 16:20:34 +02004650 htx->flags |= HTX_FL_EOI; /* no more data are expected. Only EOM remains to add now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004651 if (!htx_add_endof(htx, HTX_BLK_EOM)) {
4652 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 +02004653 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004654 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004655 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004656
Willy Tarreau86277d42019-01-02 15:36:11 +01004657 /* success */
4658 ret = 1;
4659
Willy Tarreau68dd9852017-07-03 14:44:26 +02004660 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004661 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004662 * move the remaining data over it.
4663 */
4664 if (hole) {
4665 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4666 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4667 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4668 b_sub(&h2c->dbuf, hole);
4669 }
4670
Willy Tarreau97215ca2019-04-29 10:20:21 +02004671 if (b_full(&h2c->dbuf) && h2c->dfl >= b_data(&h2c->dbuf)) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004672 /* too large frames */
4673 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004674 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004675 }
4676
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004677 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004678 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004679 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004680 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004681 return ret;
4682
Willy Tarreau68dd9852017-07-03 14:44:26 +02004683 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004684 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004685 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004686
4687 trailers:
4688 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004689 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4690 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004691 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 +01004692 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua3075282020-12-01 10:22:43 +01004693 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau88d138e2019-01-02 19:38:14 +01004694 goto fail;
4695 }
4696
Christopher Faulet9b79a102019-07-15 11:22:56 +02004697 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02004698 if (h2_make_htx_trailers(list, htx) <= 0) {
4699 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 +02004700 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004701 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004702 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02004703}
4704
Christopher Faulet9b79a102019-07-15 11:22:56 +02004705/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004706 * parser state is automatically updated. Returns > 0 if it could completely
4707 * send the current frame, 0 if it couldn't complete, in which case
4708 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
4709 * DATA frame can return 0 as a valid result). Stream errors are reported in
4710 * h2s->errcode and connection errors in h2c->errcode. The caller must already
4711 * have checked the frame header and ensured that the frame was complete or the
4712 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02004713 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01004714static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02004715{
4716 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004717 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004718 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004719 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004720 struct buffer *csbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004721 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02004722
Willy Tarreau7838a792019-08-12 18:42:03 +02004723 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
4724
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004725 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02004726
Olivier Houchard638b7992018-08-16 15:41:52 +02004727 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004728 if (!csbuf) {
4729 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02004730 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 +01004731 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004732 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004733 htx = htx_from_buf(csbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004734
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004735try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004736 flen = h2c->dfl - h2c->dpl;
4737 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01004738 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004739
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004740 if (flen > b_data(&h2c->dbuf)) {
4741 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004742 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01004743 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004744 }
4745
Christopher Faulet9b79a102019-07-15 11:22:56 +02004746 block = htx_free_data_space(htx);
4747 if (!block) {
4748 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004749 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 +02004750 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004751 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004752 if (flen > block)
4753 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004754
Christopher Faulet9b79a102019-07-15 11:22:56 +02004755 /* here, flen is the max we can copy into the output buffer */
4756 block = b_contig_data(&h2c->dbuf, 0);
4757 if (flen > block)
4758 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004759
Christopher Faulet9b79a102019-07-15 11:22:56 +02004760 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02004761 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 +02004762
Christopher Faulet9b79a102019-07-15 11:22:56 +02004763 b_del(&h2c->dbuf, sent);
4764 h2c->dfl -= sent;
4765 h2c->rcvd_c += sent;
4766 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02004767
Christopher Faulet9b79a102019-07-15 11:22:56 +02004768 if (h2s->flags & H2_SF_DATA_CLEN) {
4769 h2s->body_len -= sent;
4770 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004771 }
4772
Christopher Faulet9b79a102019-07-15 11:22:56 +02004773 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004774 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004775 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 +01004776 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004777 }
4778
Christopher Faulet9b79a102019-07-15 11:22:56 +02004779 goto try_again;
4780
Willy Tarreau4a28da12018-01-04 14:41:00 +01004781 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004782 /* here we're done with the frame, all the payload (except padding) was
4783 * transferred.
4784 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02004785
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004786 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Faulet810df062020-07-22 16:20:34 +02004787 htx->flags |= HTX_FL_EOI; /* no more data are expected. Only EOM remains to add now */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004788 if (!htx_add_endof(htx, HTX_BLK_EOM)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004789 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 +02004790 h2c->flags |= H2_CF_DEM_SFULL;
4791 goto fail;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004792 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02004793 }
4794
Willy Tarreaud1023bb2018-03-22 16:53:12 +01004795 h2c->rcvd_c += h2c->dpl;
4796 h2c->rcvd_s += h2c->dpl;
4797 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004798 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet9b79a102019-07-15 11:22:56 +02004799 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02004800 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004801 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01004802 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004803 if (htx)
4804 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02004805 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01004806 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004807}
4808
Willy Tarreau115e83b2018-12-01 19:17:53 +01004809/* Try to send a HEADERS frame matching HTX response present in HTX message
4810 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4811 * must check the stream's status to detect any error which might have happened
4812 * subsequently to a successful send. The htx blocks are automatically removed
4813 * from the message. The htx message is assumed to be valid since produced from
4814 * the internal code, hence it contains a start line, an optional series of
4815 * header blocks and an end of header, otherwise an invalid frame could be
4816 * emitted and the resulting htx message could be left in an inconsistent state.
4817 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004818static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004819{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004820 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01004821 struct h2c *h2c = h2s->h2c;
4822 struct htx_blk *blk;
4823 struct htx_blk *blk_end;
4824 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004825 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004826 struct htx_sl *sl;
4827 enum htx_blk_type type;
4828 int es_now = 0;
4829 int ret = 0;
4830 int hdr;
4831 int idx;
4832
Willy Tarreau7838a792019-08-12 18:42:03 +02004833 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
4834
Willy Tarreau115e83b2018-12-01 19:17:53 +01004835 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004836 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004837 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02004838 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004839 return 0;
4840 }
4841
Willy Tarreau115e83b2018-12-01 19:17:53 +01004842 /* determine the first block which must not be deleted, blk_end may
4843 * be NULL if all blocks have to be deleted.
4844 */
4845 idx = htx_get_head(htx);
4846 blk_end = NULL;
4847 while (idx != -1) {
4848 type = htx_get_blk_type(htx_get_blk(htx, idx));
4849 idx = htx_get_next(htx, idx);
4850 if (type == HTX_BLK_EOH) {
4851 if (idx != -1)
4852 blk_end = htx_get_blk(htx, idx);
4853 break;
4854 }
4855 }
4856
4857 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004858 blk = htx_get_head_blk(htx);
Christopher Fauletea009732019-11-18 15:50:25 +01004859 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_RES_SL);
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004860 ALREADY_CHECKED(blk);
4861 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004862 h2s->status = sl->info.res.status;
Willy Tarreau7838a792019-08-12 18:42:03 +02004863 if (h2s->status < 100 || h2s->status > 999) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01004864 TRACE_ERROR("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 +01004865 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004866 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004867
4868 /* and the rest of the headers, that we dump starting at header 0 */
4869 hdr = 0;
4870
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004871 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau115e83b2018-12-01 19:17:53 +01004872 while ((idx = htx_get_next(htx, idx)) != -1) {
4873 blk = htx_get_blk(htx, idx);
4874 type = htx_get_blk_type(blk);
4875
4876 if (type == HTX_BLK_UNUSED)
4877 continue;
4878
4879 if (type != HTX_BLK_HDR)
4880 break;
4881
Willy Tarreau7838a792019-08-12 18:42:03 +02004882 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01004883 TRACE_ERROR("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 +01004884 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004885 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004886
4887 list[hdr].n = htx_get_blk_name(htx, blk);
4888 list[hdr].v = htx_get_blk_value(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004889 hdr++;
4890 }
4891
4892 /* marker for end of headers */
4893 list[hdr].n = ist("");
4894
4895 if (h2s->status == 204 || h2s->status == 304) {
4896 /* no contents, claim c-len is present and set to zero */
4897 es_now = 1;
4898 }
4899
Willy Tarreau9c218e72019-05-26 10:08:28 +02004900 mbuf = br_tail(h2c->mbuf);
4901 retry:
4902 if (!h2_get_buf(h2c, mbuf)) {
4903 h2c->flags |= H2_CF_MUX_MALLOC;
4904 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02004905 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 +02004906 return 0;
4907 }
4908
Willy Tarreau115e83b2018-12-01 19:17:53 +01004909 chunk_reset(&outbuf);
4910
4911 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004912 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4913 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004914 break;
4915 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004916 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01004917 }
4918
4919 if (outbuf.size < 9)
4920 goto full;
4921
4922 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4923 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4924 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4925 outbuf.data = 9;
4926
4927 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01004928 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004929 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004930 goto realign_again;
4931 goto full;
4932 }
4933
4934 /* encode all headers, stop at empty name */
4935 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4936 /* these ones do not exist in H2 and must be dropped. */
4937 if (isteq(list[hdr].n, ist("connection")) ||
4938 isteq(list[hdr].n, ist("proxy-connection")) ||
4939 isteq(list[hdr].n, ist("keep-alive")) ||
4940 isteq(list[hdr].n, ist("upgrade")) ||
4941 isteq(list[hdr].n, ist("transfer-encoding")))
4942 continue;
4943
Christopher Faulet86d144c2019-08-14 16:32:25 +02004944 /* Skip all pseudo-headers */
4945 if (*(list[hdr].n.ptr) == ':')
4946 continue;
4947
Willy Tarreau115e83b2018-12-01 19:17:53 +01004948 if (isteq(list[hdr].n, ist("")))
4949 break; // end
4950
4951 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4952 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004953 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004954 goto realign_again;
4955 goto full;
4956 }
4957 }
4958
Willy Tarreaucb985a42019-10-07 16:56:34 +02004959 /* update the frame's size */
4960 h2_set_frame_size(outbuf.area, outbuf.data - 9);
4961
4962 if (outbuf.data > h2c->mfs + 9) {
4963 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
4964 /* output full */
4965 if (b_space_wraps(mbuf))
4966 goto realign_again;
4967 goto full;
4968 }
4969 }
4970
Christopher Faulet0b465482019-02-19 15:14:23 +01004971 /* we may need to add END_STREAM except for 1xx responses.
Willy Tarreau115e83b2018-12-01 19:17:53 +01004972 * FIXME: we should also set it when we know for sure that the
4973 * content-length is zero as well as on 204/304
4974 */
Christopher Faulet0b465482019-02-19 15:14:23 +01004975 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM &&
4976 (h2s->status >= 200 || h2s->status == 101))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004977 es_now = 1;
4978
Willy Tarreau927b88b2019-03-04 08:03:25 +01004979 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004980 es_now = 1;
4981
Willy Tarreau115e83b2018-12-01 19:17:53 +01004982 if (es_now)
4983 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
4984
4985 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02004986 TRACE_USER("sent H2 response", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
Willy Tarreaubcc45952019-05-26 10:05:50 +02004987 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01004988
4989 /* indicates the HEADERS frame was sent, except for 1xx responses. For
4990 * 1xx responses, another HEADERS frame is expected.
4991 */
4992 if (h2s->status >= 200 || h2s->status == 101)
4993 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004994
Willy Tarreau115e83b2018-12-01 19:17:53 +01004995 if (es_now) {
4996 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02004997 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 +01004998 if (h2s->st == H2_SS_OPEN)
4999 h2s->st = H2_SS_HLOC;
5000 else
5001 h2s_close(h2s);
5002 }
5003
5004 /* OK we could properly deliver the response */
5005
5006 /* remove all header blocks including the EOH and compute the
5007 * corresponding size.
5008 *
5009 * FIXME: We should remove everything when es_now is set.
5010 */
5011 ret = 0;
5012 idx = htx_get_head(htx);
5013 blk = htx_get_blk(htx, idx);
5014 while (blk != blk_end) {
5015 ret += htx_get_blksz(blk);
5016 blk = htx_remove_blk(htx, blk);
5017 }
Willy Tarreauc5753ae2018-12-02 12:28:01 +01005018
Christopher Faulet316934d2019-05-15 14:22:48 +02005019 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5020 ret += htx_get_blksz(blk_end);
Willy Tarreauc5753ae2018-12-02 12:28:01 +01005021 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02005022 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005023 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005024 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005025 return ret;
5026 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005027 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5028 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005029 h2c->flags |= H2_CF_MUX_MFULL;
5030 h2s->flags |= H2_SF_BLK_MROOM;
5031 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005032 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 +01005033 goto end;
5034 fail:
5035 /* unparsable HTX messages, too large ones to be produced in the local
5036 * list etc go here (unrecoverable errors).
5037 */
5038 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5039 ret = 0;
5040 goto end;
5041}
5042
Willy Tarreau80739692018-10-05 11:35:57 +02005043/* Try to send a HEADERS frame matching HTX request present in HTX message
5044 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5045 * must check the stream's status to detect any error which might have happened
5046 * subsequently to a successful send. The htx blocks are automatically removed
5047 * from the message. The htx message is assumed to be valid since produced from
5048 * the internal code, hence it contains a start line, an optional series of
5049 * header blocks and an end of header, otherwise an invalid frame could be
5050 * emitted and the resulting htx message could be left in an inconsistent state.
5051 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005052static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005053{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005054 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005055 struct h2c *h2c = h2s->h2c;
5056 struct htx_blk *blk;
5057 struct htx_blk *blk_end;
5058 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005059 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005060 struct htx_sl *sl;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005061 struct ist meth, uri, auth;
Willy Tarreau80739692018-10-05 11:35:57 +02005062 enum htx_blk_type type;
5063 int es_now = 0;
5064 int ret = 0;
5065 int hdr;
5066 int idx;
5067
Willy Tarreau7838a792019-08-12 18:42:03 +02005068 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5069
Willy Tarreau80739692018-10-05 11:35:57 +02005070 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005071 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005072 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005073 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005074 return 0;
5075 }
5076
Willy Tarreau80739692018-10-05 11:35:57 +02005077 /* determine the first block which must not be deleted, blk_end may
5078 * be NULL if all blocks have to be deleted.
5079 */
5080 idx = htx_get_head(htx);
5081 blk_end = NULL;
5082 while (idx != -1) {
5083 type = htx_get_blk_type(htx_get_blk(htx, idx));
5084 idx = htx_get_next(htx, idx);
5085 if (type == HTX_BLK_EOH) {
5086 if (idx != -1)
5087 blk_end = htx_get_blk(htx, idx);
5088 break;
5089 }
5090 }
5091
5092 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02005093 blk = htx_get_head_blk(htx);
Christopher Fauletea009732019-11-18 15:50:25 +01005094 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
Christopher Fauletb77a1d22019-05-13 11:55:10 +02005095 ALREADY_CHECKED(blk);
5096 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau80739692018-10-05 11:35:57 +02005097 meth = htx_sl_req_meth(sl);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005098 uri = htx_sl_req_uri(sl);
5099 if (unlikely(uri.len == 0)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01005100 TRACE_ERROR("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005101 goto fail;
5102 }
Willy Tarreau80739692018-10-05 11:35:57 +02005103
5104 /* and the rest of the headers, that we dump starting at header 0 */
5105 hdr = 0;
5106
Willy Tarreau8e162ee2018-12-06 14:07:27 +01005107 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau80739692018-10-05 11:35:57 +02005108 while ((idx = htx_get_next(htx, idx)) != -1) {
5109 blk = htx_get_blk(htx, idx);
5110 type = htx_get_blk_type(blk);
5111
5112 if (type == HTX_BLK_UNUSED)
5113 continue;
5114
5115 if (type != HTX_BLK_HDR)
5116 break;
5117
Willy Tarreau7838a792019-08-12 18:42:03 +02005118 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01005119 TRACE_ERROR("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 +02005120 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005121 }
Willy Tarreau80739692018-10-05 11:35:57 +02005122
5123 list[hdr].n = htx_get_blk_name(htx, blk);
5124 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005125
5126 /* Skip header if same name is used to add the server name */
5127 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name &&
5128 isteq(list[hdr].n, ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len)))
5129 continue;
5130
Willy Tarreau80739692018-10-05 11:35:57 +02005131 hdr++;
5132 }
5133
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005134 /* Now add the server name to a header (if requested) */
5135 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name) {
5136 struct server *srv = objt_server(h2c->conn->target);
5137
5138 if (srv) {
5139 list[hdr].n = ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len);
5140 list[hdr].v = ist(srv->id);
5141 hdr++;
5142 }
5143 }
5144
Willy Tarreau80739692018-10-05 11:35:57 +02005145 /* marker for end of headers */
5146 list[hdr].n = ist("");
5147
Willy Tarreau9c218e72019-05-26 10:08:28 +02005148 mbuf = br_tail(h2c->mbuf);
5149 retry:
5150 if (!h2_get_buf(h2c, mbuf)) {
5151 h2c->flags |= H2_CF_MUX_MALLOC;
5152 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005153 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 +02005154 return 0;
5155 }
5156
Willy Tarreau80739692018-10-05 11:35:57 +02005157 chunk_reset(&outbuf);
5158
5159 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005160 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5161 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005162 break;
5163 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005164 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005165 }
5166
5167 if (outbuf.size < 9)
5168 goto full;
5169
5170 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5171 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5172 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5173 outbuf.data = 9;
5174
5175 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005176 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005177 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005178 goto realign_again;
5179 goto full;
5180 }
5181
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005182 auth = ist(NULL);
5183
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005184 /* RFC7540 #8.3: the CONNECT method must have :
5185 * - :authority set to the URI part (host:port)
5186 * - :method set to CONNECT
5187 * - :scheme and :path omitted
5188 */
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005189 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT)) {
5190 auth = uri;
5191
5192 if (!hpack_encode_header(&outbuf, ist(":authority"), auth)) {
5193 /* output full */
5194 if (b_space_wraps(mbuf))
5195 goto realign_again;
5196 goto full;
5197 }
5198 } else {
5199 /* other methods need a :scheme. If an authority is known from
5200 * the request line, it must be sent, otherwise only host is
5201 * sent. Host is never sent as the authority.
5202 */
5203 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005204
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005205 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5206 /* the URI seems to start with a scheme */
5207 int len = 1;
5208
5209 while (len < uri.len && uri.ptr[len] != ':')
5210 len++;
5211
5212 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5213 /* make the uri start at the authority now */
5214 scheme.ptr = uri.ptr;
5215 scheme.len = len,
5216 uri.ptr += len + 3;
5217 uri.len -= len + 3;
5218
5219 /* find the auth part of the URI */
5220 auth.ptr = uri.ptr;
5221 auth.len = 0;
5222 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5223 auth.len++;
5224
5225 uri.ptr += auth.len;
5226 uri.len -= auth.len;
5227 }
5228 }
5229
5230 if (!scheme.len) {
5231 /* no explicit scheme, we're using an origin-form URI,
5232 * probably from an H1 request transcoded to H2 via an
5233 * external layer, then received as H2 without authority.
5234 * So we have to look up the scheme from the HTX flags.
5235 * In such a case only http and https are possible, and
5236 * https is the default (sent by browsers).
5237 */
5238 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5239 scheme = ist("http");
5240 else
5241 scheme = ist("https");
5242 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005243
5244 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005245 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005246 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005247 goto realign_again;
5248 goto full;
5249 }
Willy Tarreau80739692018-10-05 11:35:57 +02005250
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005251 if (auth.len && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005252 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005253 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005254 goto realign_again;
5255 goto full;
5256 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005257
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005258 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5259 * be sent as '/' or '*'.
5260 */
5261 if (unlikely(!uri.len)) {
5262 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5263 uri = ist("*");
5264 else
5265 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005266 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005267
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005268 if (!hpack_encode_path(&outbuf, uri)) {
5269 /* output full */
5270 if (b_space_wraps(mbuf))
5271 goto realign_again;
5272 goto full;
5273 }
Willy Tarreau80739692018-10-05 11:35:57 +02005274 }
5275
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005276 /* encode all headers, stop at empty name. Host is only sent if we
5277 * do not provide an authority.
5278 */
Willy Tarreau80739692018-10-05 11:35:57 +02005279 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005280 struct ist n = list[hdr].n;
5281 struct ist v = list[hdr].v;
5282
Willy Tarreau80739692018-10-05 11:35:57 +02005283 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005284 if (isteq(n, ist("connection")) ||
5285 (auth.len && isteq(n, ist("host"))) ||
5286 isteq(n, ist("proxy-connection")) ||
5287 isteq(n, ist("keep-alive")) ||
5288 isteq(n, ist("upgrade")) ||
5289 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005290 continue;
5291
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005292 if (isteq(n, ist("te"))) {
5293 /* "te" may only be sent with "trailers" if this value
5294 * is present, otherwise it must be deleted.
5295 */
5296 v = istist(v, ist("trailers"));
5297 if (!v.ptr || (v.len > 8 && v.ptr[8] != ','))
5298 continue;
5299 v = ist("trailers");
5300 }
5301
Christopher Faulet86d144c2019-08-14 16:32:25 +02005302 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005303 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005304 continue;
5305
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005306 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005307 break; // end
5308
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005309 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005310 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005311 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005312 goto realign_again;
5313 goto full;
5314 }
5315 }
5316
Willy Tarreaucb985a42019-10-07 16:56:34 +02005317 /* update the frame's size */
5318 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5319
5320 if (outbuf.data > h2c->mfs + 9) {
5321 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5322 /* output full */
5323 if (b_space_wraps(mbuf))
5324 goto realign_again;
5325 goto full;
5326 }
5327 }
5328
Willy Tarreau80739692018-10-05 11:35:57 +02005329 /* we may need to add END_STREAM if we have no body :
5330 * - request already closed, or :
5331 * - no transfer-encoding, and :
5332 * - no content-length or content-length:0
5333 * Fixme: this doesn't take into account CONNECT requests.
5334 */
5335 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM)
5336 es_now = 1;
5337
5338 if (sl->flags & HTX_SL_F_BODYLESS)
5339 es_now = 1;
5340
Willy Tarreau927b88b2019-03-04 08:03:25 +01005341 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau80739692018-10-05 11:35:57 +02005342 es_now = 1;
5343
Willy Tarreau80739692018-10-05 11:35:57 +02005344 if (es_now)
5345 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5346
5347 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02005348 TRACE_USER("sent H2 request", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
Willy Tarreaubcc45952019-05-26 10:05:50 +02005349 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005350 h2s->flags |= H2_SF_HEADERS_SENT;
5351 h2s->st = H2_SS_OPEN;
5352
Willy Tarreau80739692018-10-05 11:35:57 +02005353 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005354 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 +02005355 // trim any possibly pending data (eg: inconsistent content-length)
5356 h2s->flags |= H2_SF_ES_SENT;
5357 h2s->st = H2_SS_HLOC;
5358 }
5359
5360 /* remove all header blocks including the EOH and compute the
5361 * corresponding size.
5362 *
5363 * FIXME: We should remove everything when es_now is set.
5364 */
5365 ret = 0;
5366 idx = htx_get_head(htx);
5367 blk = htx_get_blk(htx, idx);
5368 while (blk != blk_end) {
5369 ret += htx_get_blksz(blk);
5370 blk = htx_remove_blk(htx, blk);
5371 }
5372
Christopher Faulet316934d2019-05-15 14:22:48 +02005373 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5374 ret += htx_get_blksz(blk_end);
Willy Tarreau80739692018-10-05 11:35:57 +02005375 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02005376 }
Willy Tarreau80739692018-10-05 11:35:57 +02005377
5378 end:
5379 return ret;
5380 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005381 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5382 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005383 h2c->flags |= H2_CF_MUX_MFULL;
5384 h2s->flags |= H2_SF_BLK_MROOM;
5385 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005386 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 +02005387 goto end;
5388 fail:
5389 /* unparsable HTX messages, too large ones to be produced in the local
5390 * list etc go here (unrecoverable errors).
5391 */
5392 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5393 ret = 0;
5394 goto end;
5395}
5396
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005397/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005398 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5399 * caller must check the stream's status to detect any error which might have
5400 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Faulet54b5e212019-06-04 10:08:28 +02005401 * consumed, or zero if nothing done. Note that EOM count for 1 byte.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005402 */
Christopher Faulet142854b2020-12-02 15:12:40 +01005403static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005404{
5405 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005406 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005407 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005408 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005409 size_t total = 0;
5410 int es_now = 0;
5411 int bsize; /* htx block size */
5412 int fsize; /* h2 frame size */
5413 struct htx_blk *blk;
5414 enum htx_blk_type type;
5415 int idx;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005416 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005417
Willy Tarreau7838a792019-08-12 18:42:03 +02005418 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5419
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005420 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005421 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005422 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005423 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005424 goto end;
5425 }
5426
Willy Tarreau98de12a2018-12-12 07:03:00 +01005427 htx = htx_from_buf(buf);
5428
Christopher Faulet54b5e212019-06-04 10:08:28 +02005429 /* We only come here with HTX_BLK_DATA blocks. However, while looping,
5430 * we can meet an HTX_BLK_EOM block that we'll leave to the caller to
5431 * handle.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005432 */
5433
5434 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005435 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005436 goto end;
5437
5438 idx = htx_get_head(htx);
5439 blk = htx_get_blk(htx, idx);
Christopher Faulet54b5e212019-06-04 10:08:28 +02005440 type = htx_get_blk_type(blk); // DATA or EOM
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005441 bsize = htx_get_blksz(blk);
5442 fsize = bsize;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005443 trunc_out = 0;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005444
Christopher Faulet54b5e212019-06-04 10:08:28 +02005445 if (type == HTX_BLK_EOM) {
Willy Tarreau7eeb10a2019-01-04 09:28:17 +01005446 if (h2s->flags & H2_SF_ES_SENT) {
5447 /* ES already sent */
5448 htx_remove_blk(htx, blk);
5449 total++; // EOM counts as one byte
5450 count--;
5451 goto end;
5452 }
5453 }
5454 else if (type != HTX_BLK_DATA)
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005455 goto end;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005456
Willy Tarreau9c218e72019-05-26 10:08:28 +02005457 mbuf = br_tail(h2c->mbuf);
5458 retry:
5459 if (!h2_get_buf(h2c, mbuf)) {
5460 h2c->flags |= H2_CF_MUX_MALLOC;
5461 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005462 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 +02005463 goto end;
5464 }
5465
Willy Tarreau98de12a2018-12-12 07:03:00 +01005466 /* Perform some optimizations to reduce the number of buffer copies.
5467 * First, if the mux's buffer is empty and the htx area contains
5468 * exactly one data block of the same size as the requested count, and
5469 * this count fits within the frame size, the stream's window size, and
5470 * the connection's window size, then it's possible to simply swap the
5471 * caller's buffer with the mux's output buffer and adjust offsets and
5472 * length to match the entire DATA HTX block in the middle. In this
5473 * case we perform a true zero-copy operation from end-to-end. This is
5474 * the situation that happens all the time with large files. Second, if
5475 * this is not possible, but the mux's output buffer is empty, we still
5476 * have an opportunity to avoid the copy to the intermediary buffer, by
5477 * making the intermediary buffer's area point to the output buffer's
5478 * area. In this case we want to skip the HTX header to make sure that
5479 * copies remain aligned and that this operation remains possible all
5480 * the time. This goes for headers, data blocks and any data extracted
5481 * from the HTX blocks.
5482 */
5483 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005484 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005485 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005486 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005487
Willy Tarreaubcc45952019-05-26 10:05:50 +02005488 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005489 /* Too bad there are data left there. We're willing to memcpy/memmove
5490 * up to 1/4 of the buffer, which means that it's OK to copy a large
5491 * frame into a buffer containing few data if it needs to be realigned,
5492 * and that it's also OK to copy few data without realigning. Otherwise
5493 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005494 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005495 if (fsize + 9 <= b_room(mbuf) &&
5496 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005497 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5498 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 +01005499 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005500 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005501
Willy Tarreau9c218e72019-05-26 10:08:28 +02005502 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5503 goto retry;
5504
Willy Tarreau98de12a2018-12-12 07:03:00 +01005505 h2c->flags |= H2_CF_MUX_MFULL;
5506 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005507 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 +01005508 goto end;
5509 }
5510
5511 /* map an H2 frame to the HTX block so that we can put the
5512 * frame header there.
5513 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005514 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5515 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005516
5517 /* prepend an H2 DATA frame header just before the DATA block */
5518 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5519 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5520 h2_set_frame_size(outbuf.area, fsize);
5521
5522 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005523 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005524 h2c->mws -= fsize;
5525
5526 /* and exchange with our old area */
5527 buf->area = old_area;
5528 buf->data = buf->head = 0;
5529 total += fsize;
Willy Tarreau7838a792019-08-12 18:42:03 +02005530
5531 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 +01005532 goto end;
5533 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005534
Willy Tarreau98de12a2018-12-12 07:03:00 +01005535 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005536 /* for DATA and EOM we'll have to emit a frame, even if empty */
5537
5538 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005539 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5540 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005541 break;
5542 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005543 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005544 }
5545
5546 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005547 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5548 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005549 h2c->flags |= H2_CF_MUX_MFULL;
5550 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005551 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005552 goto end;
5553 }
5554
5555 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5556 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5557 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5558 outbuf.data = 9;
5559
5560 /* we have in <fsize> the exact number of bytes we need to copy from
5561 * the HTX buffer. We need to check this against the connection's and
5562 * the stream's send windows, and to ensure that this fits in the max
5563 * frame size and in the buffer's available space minus 9 bytes (for
5564 * the frame header). The connection's flow control is applied last so
5565 * that we can use a separate list of streams which are immediately
5566 * unblocked on window opening. Note: we don't implement padding.
5567 */
5568
5569 /* EOM is presented with bsize==1 but would lead to the emission of an
5570 * empty frame, thus we force it to zero here.
5571 */
5572 if (type == HTX_BLK_EOM)
5573 bsize = fsize = 0;
5574
5575 if (!fsize)
5576 goto send_empty;
5577
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005578 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005579 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02005580 if (LIST_ADDED(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005581 LIST_DEL_INIT(&h2s->list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02005582 LIST_ADDQ(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005583 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 +01005584 goto end;
5585 }
5586
Willy Tarreauee573762018-12-04 15:25:57 +01005587 if (fsize > count)
5588 fsize = count;
5589
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005590 if (fsize > h2s_mws(h2s))
5591 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005592
5593 if (h2c->mfs && fsize > h2c->mfs)
5594 fsize = h2c->mfs; // >0
5595
5596 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005597 /* It doesn't fit at once. If it at least fits once split and
5598 * the amount of data to move is low, let's defragment the
5599 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005600 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005601 if (b_space_wraps(mbuf) &&
5602 (fsize + 9 <= b_room(mbuf)) &&
5603 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005604 goto realign_again;
5605 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005606 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005607
5608 if (fsize <= 0) {
5609 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005610 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5611 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005612 h2c->flags |= H2_CF_MUX_MFULL;
5613 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005614 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005615 goto end;
5616 }
5617 }
5618
5619 if (h2c->mws <= 0) {
5620 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005621 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 +01005622 goto end;
5623 }
5624
5625 if (fsize > h2c->mws)
5626 fsize = h2c->mws;
5627
5628 /* now let's copy this this into the output buffer */
5629 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005630 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005631 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005632 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005633
5634 send_empty:
5635 /* update the frame's size */
5636 h2_set_frame_size(outbuf.area, fsize);
5637
5638 /* FIXME: for now we only set the ES flag on empty DATA frames, once
5639 * meeting EOM. We should optimize this later.
5640 */
5641 if (type == HTX_BLK_EOM) {
Willy Tarreauee573762018-12-04 15:25:57 +01005642 total++; // EOM counts as one byte
5643 count--;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005644 es_now = 1;
5645 }
5646
5647 if (es_now)
5648 outbuf.area[4] |= H2_F_DATA_END_STREAM;
5649
5650 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005651 b_add(mbuf, fsize + 9);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005652
5653 /* consume incoming HTX block, including EOM */
5654 total += fsize;
5655 if (fsize == bsize) {
5656 htx_remove_blk(htx, blk);
Willy Tarreau7838a792019-08-12 18:42:03 +02005657 if (fsize) {
5658 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 +01005659 goto new_frame;
Willy Tarreau7838a792019-08-12 18:42:03 +02005660 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005661 } else {
5662 /* we've truncated this block */
5663 htx_cut_data_blk(htx, blk, fsize);
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005664 if (trunc_out)
5665 goto new_frame;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005666 }
5667
5668 if (es_now) {
5669 if (h2s->st == H2_SS_OPEN)
5670 h2s->st = H2_SS_HLOC;
5671 else
5672 h2s_close(h2s);
5673
5674 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005675 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 +01005676 }
5677
5678 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005679 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005680 return total;
5681}
5682
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005683/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
5684 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
5685 * processed. The caller must check the stream's status to detect any error
5686 * which might have happened subsequently to a successful send. The htx blocks
5687 * are automatically removed from the message. The htx message is assumed to be
5688 * valid since produced from the internal code. Processing stops when meeting
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005689 * the EOM, which is *not* removed. All trailers are processed at once and sent
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005690 * as a single frame. The ES flag is always set.
5691 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005692static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005693{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005694 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005695 struct h2c *h2c = h2s->h2c;
5696 struct htx_blk *blk;
5697 struct htx_blk *blk_end;
5698 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005699 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005700 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005701 int ret = 0;
5702 int hdr;
5703 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005704
Willy Tarreau7838a792019-08-12 18:42:03 +02005705 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5706
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005707 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005708 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005709 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005710 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005711 goto end;
5712 }
5713
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005714 /* determine the first block which must not be deleted, blk_end may
5715 * be NULL if all blocks have to be deleted. also get trailers.
5716 */
5717 idx = htx_get_head(htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005718 blk_end = NULL;
5719
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005720 hdr = 0;
5721 while (idx != -1) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005722 blk = htx_get_blk(htx, idx);
5723 type = htx_get_blk_type(blk);
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005724 idx = htx_get_next(htx, idx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005725 if (type == HTX_BLK_UNUSED)
5726 continue;
5727
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005728 if (type == HTX_BLK_EOT) {
5729 if (idx != -1)
5730 blk_end = blk;
5731 break;
5732 }
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005733 if (type != HTX_BLK_TLR)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005734 break;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005735
Willy Tarreau7838a792019-08-12 18:42:03 +02005736 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01005737 TRACE_ERROR("too many trailers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005738 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005739 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005740
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005741 list[hdr].n = htx_get_blk_name(htx, blk);
5742 list[hdr].v = htx_get_blk_value(htx, blk);
5743 hdr++;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005744 }
5745
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005746 /* marker for end of trailers */
5747 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005748
Willy Tarreau9c218e72019-05-26 10:08:28 +02005749 mbuf = br_tail(h2c->mbuf);
5750 retry:
5751 if (!h2_get_buf(h2c, mbuf)) {
5752 h2c->flags |= H2_CF_MUX_MALLOC;
5753 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005754 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 +02005755 goto end;
5756 }
5757
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005758 chunk_reset(&outbuf);
5759
5760 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005761 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5762 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005763 break;
5764 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005765 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005766 }
5767
5768 if (outbuf.size < 9)
5769 goto full;
5770
5771 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
5772 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
5773 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5774 outbuf.data = 9;
5775
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005776 /* encode all headers */
5777 for (idx = 0; idx < hdr; idx++) {
5778 /* these ones do not exist in H2 or must not appear in
5779 * trailers and must be dropped.
5780 */
5781 if (isteq(list[idx].n, ist("host")) ||
5782 isteq(list[idx].n, ist("content-length")) ||
5783 isteq(list[idx].n, ist("connection")) ||
5784 isteq(list[idx].n, ist("proxy-connection")) ||
5785 isteq(list[idx].n, ist("keep-alive")) ||
5786 isteq(list[idx].n, ist("upgrade")) ||
5787 isteq(list[idx].n, ist("te")) ||
5788 isteq(list[idx].n, ist("transfer-encoding")))
5789 continue;
5790
Christopher Faulet86d144c2019-08-14 16:32:25 +02005791 /* Skip all pseudo-headers */
5792 if (*(list[idx].n.ptr) == ':')
5793 continue;
5794
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005795 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
5796 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005797 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005798 goto realign_again;
5799 goto full;
5800 }
5801 }
5802
Willy Tarreau5121e5d2019-05-06 15:13:41 +02005803 if (outbuf.data == 9) {
5804 /* here we have a problem, we have nothing to emit (either we
5805 * received an empty trailers block followed or we removed its
5806 * contents above). Because of this we can't send a HEADERS
5807 * frame, so we have to cheat and instead send an empty DATA
5808 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01005809 */
5810 outbuf.area[3] = H2_FT_DATA;
5811 outbuf.area[4] = H2_F_DATA_END_STREAM;
5812 }
5813
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005814 /* update the frame's size */
5815 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5816
Willy Tarreau572d9f52019-10-11 16:58:37 +02005817 if (outbuf.data > h2c->mfs + 9) {
5818 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5819 /* output full */
5820 if (b_space_wraps(mbuf))
5821 goto realign_again;
5822 goto full;
5823 }
5824 }
5825
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005826 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02005827 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 +02005828 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005829 h2s->flags |= H2_SF_ES_SENT;
5830
5831 if (h2s->st == H2_SS_OPEN)
5832 h2s->st = H2_SS_HLOC;
5833 else
5834 h2s_close(h2s);
5835
5836 /* OK we could properly deliver the response */
5837 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005838 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005839 ret = 0;
5840 idx = htx_get_head(htx);
5841 blk = htx_get_blk(htx, idx);
5842 while (blk != blk_end) {
5843 ret += htx_get_blksz(blk);
5844 blk = htx_remove_blk(htx, blk);
5845 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005846
5847 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5848 ret += htx_get_blksz(blk_end);
5849 htx_remove_blk(htx, blk_end);
5850 }
5851
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005852 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005853 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005854 return ret;
5855 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005856 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5857 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005858 h2c->flags |= H2_CF_MUX_MFULL;
5859 h2s->flags |= H2_SF_BLK_MROOM;
5860 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005861 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 +01005862 goto end;
5863 fail:
5864 /* unparsable HTX messages, too large ones to be produced in the local
5865 * list etc go here (unrecoverable errors).
5866 */
5867 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5868 ret = 0;
5869 goto end;
5870}
5871
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005872/* Called from the upper layer, to subscribe <es> to events <event_type>. The
5873 * event subscriber <es> is not allowed to change from a previous call as long
5874 * as at least one event is still subscribed. The <event_type> must only be a
5875 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005876 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005877static int h2_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02005878{
Olivier Houchard6ff20392018-07-17 18:46:31 +02005879 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02005880 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005881
Willy Tarreau7838a792019-08-12 18:42:03 +02005882 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01005883
5884 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005885 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01005886
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005887 es->events |= event_type;
5888 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01005889
5890 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02005891 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01005892
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005893 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005894 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02005895 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
5896 !LIST_ADDED(&h2s->list)) {
5897 if (h2s->flags & H2_SF_BLK_MFCTL)
5898 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
5899 else
5900 LIST_ADDQ(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02005901 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02005902 }
Willy Tarreau7838a792019-08-12 18:42:03 +02005903 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005904 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005905}
5906
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005907/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
5908 * The <es> pointer is not allowed to differ from the one passed to the
5909 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005910 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005911static int h2_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005912{
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005913 struct h2s *h2s = cs->ctx;
5914
Willy Tarreau7838a792019-08-12 18:42:03 +02005915 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01005916
5917 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005918 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01005919
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005920 es->events &= ~event_type;
5921 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01005922 h2s->subs = NULL;
5923
5924 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02005925 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01005926
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005927 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005928 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01005929 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01005930 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
5931 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02005932 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01005933
Willy Tarreau7838a792019-08-12 18:42:03 +02005934 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005935 return 0;
5936}
5937
5938
Olivier Houchard511efea2018-08-16 15:30:32 +02005939/* Called from the upper layer, to receive data */
5940static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
5941{
Olivier Houchard638b7992018-08-16 15:41:52 +02005942 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01005943 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01005944 struct htx *h2s_htx = NULL;
5945 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02005946 size_t ret = 0;
5947
Willy Tarreau7838a792019-08-12 18:42:03 +02005948 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
5949
Olivier Houchard511efea2018-08-16 15:30:32 +02005950 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005951 h2s_htx = htx_from_buf(&h2s->rxbuf);
5952 if (htx_is_empty(h2s_htx)) {
5953 /* Here htx_to_buf() will set buffer data to 0 because
5954 * the HTX is empty.
5955 */
5956 htx_to_buf(h2s_htx, &h2s->rxbuf);
5957 goto end;
5958 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01005959
Christopher Faulet9b79a102019-07-15 11:22:56 +02005960 ret = h2s_htx->data;
5961 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01005962
Christopher Faulet9b79a102019-07-15 11:22:56 +02005963 /* <buf> is empty and the message is small enough, swap the
5964 * buffers. */
5965 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005966 htx_to_buf(buf_htx, buf);
5967 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02005968 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
5969 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01005970 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005971
5972 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_EOM);
5973
5974 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
5975 buf_htx->flags |= HTX_FL_PARSING_ERROR;
5976 if (htx_is_empty(buf_htx))
5977 cs->flags |= CS_FL_EOI;
Willy Tarreau86724e22018-12-01 23:19:43 +01005978 }
Christopher Faulet810df062020-07-22 16:20:34 +02005979 else if (htx_is_empty(h2s_htx))
5980 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOI);
Olivier Houchard511efea2018-08-16 15:30:32 +02005981
Christopher Faulet9b79a102019-07-15 11:22:56 +02005982 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
5983 htx_to_buf(buf_htx, buf);
5984 htx_to_buf(h2s_htx, &h2s->rxbuf);
5985 ret -= h2s_htx->data;
5986
Christopher Faulet37070b22019-02-14 15:12:14 +01005987 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02005988 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01005989 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02005990 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01005991 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletfa922f02019-05-07 10:55:17 +02005992 if (h2s->flags & H2_SF_ES_RCVD)
5993 cs->flags |= CS_FL_EOI;
Christopher Fauletaade4ed2020-10-08 15:38:41 +02005994 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02005995 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01005996 if (cs->flags & CS_FL_ERR_PENDING)
5997 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02005998 if (b_size(&h2s->rxbuf)) {
5999 b_free(&h2s->rxbuf);
6000 offer_buffers(NULL, tasks_run_queue);
6001 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006002 }
6003
Willy Tarreau082f5592018-11-25 08:03:32 +01006004 if (ret && h2c->dsi == h2s->id) {
6005 /* demux is blocking on this stream's buffer */
6006 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006007 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006008 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006009
Willy Tarreau7838a792019-08-12 18:42:03 +02006010 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006011 return ret;
6012}
6013
Olivier Houchardd846c262018-10-19 17:24:29 +02006014
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006015/* Called from the upper layer, to send data from buffer <buf> for no more than
6016 * <count> bytes. Returns the number of bytes effectively sent. Some status
6017 * flags may be updated on the conn_stream.
6018 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02006019static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006020{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006021 struct h2s *h2s = cs->ctx;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006022 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006023 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006024 struct htx *htx;
6025 struct htx_blk *blk;
6026 enum htx_blk_type btype;
6027 uint32_t bsize;
6028 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006029
Willy Tarreau7838a792019-08-12 18:42:03 +02006030 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6031
Olivier Houchardd360ac62019-03-22 17:37:16 +01006032 /* If we were not just woken because we wanted to send but couldn't,
6033 * and there's somebody else that is waiting to send, do nothing,
6034 * we will subscribe later and be put at the end of the list
6035 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006036 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006037 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6038 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 +01006039 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006040 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006041 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006042
Willy Tarreau7838a792019-08-12 18:42:03 +02006043 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6044 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 +02006045 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006046 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006047
Willy Tarreaucab22952019-10-31 15:48:18 +01006048 if (h2s->h2c->st0 >= H2_CS_ERROR) {
6049 cs->flags |= CS_FL_ERROR;
6050 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);
6051 return 0;
6052 }
6053
Christopher Faulet9b79a102019-07-15 11:22:56 +02006054 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006055
Willy Tarreau0bad0432018-06-14 16:54:01 +02006056 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006057 h2s->flags |= H2_SF_OUTGOING_DATA;
6058
Willy Tarreau751f2d02018-10-05 09:35:00 +02006059 if (h2s->id == 0) {
6060 int32_t id = h2c_get_next_sid(h2s->h2c);
6061
6062 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02006063 cs->flags |= CS_FL_ERROR;
Willy Tarreau7838a792019-08-12 18:42:03 +02006064 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 +02006065 return 0;
6066 }
6067
6068 eb32_delete(&h2s->by_id);
6069 h2s->by_id.key = h2s->id = id;
6070 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006071 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006072 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6073 }
6074
Christopher Faulet9b79a102019-07-15 11:22:56 +02006075 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6076 count && !htx_is_empty(htx)) {
6077 idx = htx_get_head(htx);
6078 blk = htx_get_blk(htx, idx);
6079 btype = htx_get_blk_type(blk);
6080 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006081
Christopher Faulet9b79a102019-07-15 11:22:56 +02006082 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006083 case HTX_BLK_REQ_SL:
6084 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006085 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006086 if (ret > 0) {
6087 total += ret;
6088 count -= ret;
6089 if (ret < bsize)
6090 goto done;
6091 }
6092 break;
6093
Willy Tarreau115e83b2018-12-01 19:17:53 +01006094 case HTX_BLK_RES_SL:
6095 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006096 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006097 if (ret > 0) {
6098 total += ret;
6099 count -= ret;
6100 if (ret < bsize)
6101 goto done;
6102 }
6103 break;
6104
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006105 case HTX_BLK_DATA:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006106 case HTX_BLK_EOM:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006107 /* all these cause the emission of a DATA frame (possibly empty).
6108 * This EOM necessarily is one before trailers, as the EOM following
6109 * trailers would have been consumed by the trailers parser.
6110 */
Christopher Faulet142854b2020-12-02 15:12:40 +01006111 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006112 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006113 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006114 total += ret;
6115 count -= ret;
6116 if (ret < bsize)
6117 goto done;
6118 }
6119 break;
6120
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006121 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006122 case HTX_BLK_EOT:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006123 /* This is the first trailers block, all the subsequent ones AND
6124 * the EOM will be swallowed by the parser.
6125 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006126 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006127 if (ret > 0) {
6128 total += ret;
6129 count -= ret;
6130 if (ret < bsize)
6131 goto done;
6132 }
6133 break;
6134
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006135 default:
6136 htx_remove_blk(htx, blk);
6137 total += bsize;
6138 count -= bsize;
6139 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006140 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006141 }
6142
Christopher Faulet9b79a102019-07-15 11:22:56 +02006143 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006144 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006145 /* trim any possibly pending data after we close (extra CR-LF,
6146 * unprocessed trailers, abnormal extra data, ...)
6147 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006148 total += count;
6149 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006150 }
6151
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006152 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006153 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006154 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 +01006155 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006156 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006157 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006158 }
6159
Christopher Faulet9b79a102019-07-15 11:22:56 +02006160 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006161
Olivier Houchard7505f942018-08-21 18:10:44 +02006162 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006163 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006164 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 +02006165 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006166 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006167
Olivier Houchard7505f942018-08-21 18:10:44 +02006168 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006169 /* If we're waiting for flow control, and we got a shutr on the
6170 * connection, we will never be unlocked, so add an error on
6171 * the conn_stream.
6172 */
6173 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
6174 !b_data(&h2s->h2c->dbuf) &&
6175 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006176 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 +01006177 if (cs->flags & CS_FL_EOS)
6178 cs->flags |= CS_FL_ERROR;
6179 else
6180 cs->flags |= CS_FL_ERR_PENDING;
6181 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006182
Willy Tarreau5723f292020-01-10 15:16:57 +01006183 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6184 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006185 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006186 LIST_DEL_INIT(&h2s->list);
6187 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006188
Willy Tarreau7838a792019-08-12 18:42:03 +02006189 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006190 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006191}
6192
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006193/* for debugging with CLI's "show fd" command */
Willy Tarreau83061a82018-07-13 11:56:34 +02006194static void h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006195{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01006196 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01006197 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006198 struct eb32_node *node;
6199 int fctl_cnt = 0;
6200 int send_cnt = 0;
6201 int tree_cnt = 0;
6202 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02006203 struct buffer *hmbuf, *tmbuf;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006204
6205 if (!h2c)
6206 return;
6207
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006208 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006209 fctl_cnt++;
6210
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006211 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006212 send_cnt++;
6213
Willy Tarreau3af37712018-12-18 14:34:41 +01006214 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006215 node = eb32_first(&h2c->streams_by_id);
6216 while (node) {
6217 h2s = container_of(node, struct h2s, by_id);
6218 tree_cnt++;
6219 if (!h2s->cs)
6220 orph_cnt++;
6221 node = eb32_next(node);
6222 }
6223
Willy Tarreau60f62682019-05-26 11:32:27 +02006224 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006225 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006226 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau987c0632018-12-18 10:32:05 +01006227 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02006228 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
6229 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006230 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau616ac812018-07-24 14:12:42 +02006231 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006232 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006233 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
6234 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
6235 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02006236 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6237 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6238 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006239 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6240 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006241
6242 if (h2s) {
Willy Tarreaued4464e2021-01-20 15:50:03 +01006243 chunk_appendf(msg, " last_h2s=%p .id=%d .st=%s .flg=0x%04x .rxbuf=%u@%p+%u/%u .cs=%p",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006244 h2s, h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
Willy Tarreau987c0632018-12-18 10:32:05 +01006245 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
6246 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
6247 h2s->cs);
6248 if (h2s->cs)
6249 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
6250 h2s->cs->flags, h2s->cs->data);
6251 }
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006252}
Willy Tarreau62f52692017-10-08 23:01:42 +02006253
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006254/* Migrate the the connection to the current thread.
6255 * Return 0 if successful, non-zero otherwise.
6256 * Expected to be called with the old thread lock held.
6257 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006258static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006259{
6260 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006261 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006262
6263 if (fd_takeover(conn->handle.fd, conn) != 0)
6264 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006265
6266 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6267 /* We failed to takeover the xprt, even if the connection may
6268 * still be valid, flag it as error'd, as we have already
6269 * taken over the fd, and wake the tasklet, so that it will
6270 * destroy it.
6271 */
6272 conn->flags |= CO_FL_ERROR;
6273 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6274 return -1;
6275 }
6276
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006277 if (h2c->wait_event.events)
6278 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6279 h2c->wait_event.events, &h2c->wait_event);
6280 /* To let the tasklet know it should free itself, and do nothing else,
6281 * set its context to NULL.
6282 */
6283 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006284 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006285
6286 task = h2c->task;
6287 if (task) {
6288 task->context = NULL;
6289 h2c->task = NULL;
6290 __ha_barrier_store();
6291 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006292
6293 h2c->task = task_new(tid_bit);
6294 if (!h2c->task) {
6295 h2_release(h2c);
6296 return -1;
6297 }
6298 h2c->task->process = h2_timeout_task;
6299 h2c->task->context = h2c;
6300 }
6301 h2c->wait_event.tasklet = tasklet_new();
6302 if (!h2c->wait_event.tasklet) {
6303 h2_release(h2c);
6304 return -1;
6305 }
6306 h2c->wait_event.tasklet->process = h2_io_cb;
6307 h2c->wait_event.tasklet->context = h2c;
6308 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6309 SUB_RETRY_RECV, &h2c->wait_event);
6310
6311 return 0;
6312}
6313
Willy Tarreau62f52692017-10-08 23:01:42 +02006314/*******************************************************/
6315/* functions below are dedicated to the config parsers */
6316/*******************************************************/
6317
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006318/* config parser for global "tune.h2.header-table-size" */
6319static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
6320 struct proxy *defpx, const char *file, int line,
6321 char **err)
6322{
6323 if (too_many_args(1, args, err, NULL))
6324 return -1;
6325
6326 h2_settings_header_table_size = atoi(args[1]);
6327 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6328 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6329 return -1;
6330 }
6331 return 0;
6332}
Willy Tarreau62f52692017-10-08 23:01:42 +02006333
Willy Tarreaue6baec02017-07-27 11:45:11 +02006334/* config parser for global "tune.h2.initial-window-size" */
6335static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
6336 struct proxy *defpx, const char *file, int line,
6337 char **err)
6338{
6339 if (too_many_args(1, args, err, NULL))
6340 return -1;
6341
6342 h2_settings_initial_window_size = atoi(args[1]);
6343 if (h2_settings_initial_window_size < 0) {
6344 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6345 return -1;
6346 }
6347 return 0;
6348}
6349
Willy Tarreau5242ef82017-07-27 11:47:28 +02006350/* config parser for global "tune.h2.max-concurrent-streams" */
6351static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
6352 struct proxy *defpx, const char *file, int line,
6353 char **err)
6354{
6355 if (too_many_args(1, args, err, NULL))
6356 return -1;
6357
6358 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006359 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006360 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6361 return -1;
6362 }
6363 return 0;
6364}
6365
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006366/* config parser for global "tune.h2.max-frame-size" */
6367static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
6368 struct proxy *defpx, const char *file, int line,
6369 char **err)
6370{
6371 if (too_many_args(1, args, err, NULL))
6372 return -1;
6373
6374 h2_settings_max_frame_size = atoi(args[1]);
6375 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6376 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6377 return -1;
6378 }
6379 return 0;
6380}
6381
Willy Tarreau62f52692017-10-08 23:01:42 +02006382
6383/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006384/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006385/***************************************/
6386
6387/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006388static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006389 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006390 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006391 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006392 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006393 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006394 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006395 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01006396 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02006397 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006398 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006399 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006400 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006401 .shutr = h2_shutr,
6402 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006403 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006404 .show_fd = h2_show_fd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006405 .takeover = h2_takeover,
Amaury Denoyelle3d3c0912020-10-14 18:17:06 +02006406 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX|MX_FL_HOL_RISK,
Willy Tarreau62f52692017-10-08 23:01:42 +02006407 .name = "H2",
6408};
6409
Christopher Faulet32f61c02018-04-10 14:33:41 +02006410static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006411 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006412
Willy Tarreau0108d902018-11-25 19:14:37 +01006413INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6414
Willy Tarreau62f52692017-10-08 23:01:42 +02006415/* config keyword parsers */
6416static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006417 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006418 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006419 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006420 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006421 { 0, NULL, NULL }
6422}};
6423
Willy Tarreau0108d902018-11-25 19:14:37 +01006424INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006425
6426/* initialize internal structs after the config is parsed.
6427 * Returns zero on success, non-zero on error.
6428 */
6429static int init_h2()
6430{
6431 pool_head_hpack_tbl = create_pool("hpack_tbl",
6432 h2_settings_header_table_size,
6433 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01006434 if (!pool_head_hpack_tbl) {
6435 ha_alert("failed to allocate hpack_tbl memory pool\n");
6436 return (ERR_ALERT | ERR_FATAL);
6437 }
6438 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006439}
6440
6441REGISTER_POST_CHECK(init_h2);