blob: 0a4a62af53858018db537222c3a65946bd75971c [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);
Willy Tarreau691d5032021-01-20 14:55:01 +0100548/* h2_io_cb is exported to see it resolved in "show fd" */
549struct task *h2_io_cb(struct task *t, void *ctx, unsigned short state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100550static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Willy Tarreau4790f7c2019-01-24 11:33:02 +0100551static 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 +0100552static int h2_frt_transfer_data(struct h2s *h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +0200553static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state);
Olivier Houchardf502aca2018-12-14 19:42:40 +0100554static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100555static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200556
Willy Tarreauab2ec452019-08-30 07:07:08 +0200557/* returns a h2c state as an abbreviated 3-letter string, or "???" if unknown */
558static inline const char *h2c_st_to_str(enum h2_cs st)
559{
560 switch (st) {
561 case H2_CS_PREFACE: return "PRF";
562 case H2_CS_SETTINGS1: return "STG";
563 case H2_CS_FRAME_H: return "FRH";
564 case H2_CS_FRAME_P: return "FRP";
565 case H2_CS_FRAME_A: return "FRA";
566 case H2_CS_FRAME_E: return "FRE";
567 case H2_CS_ERROR: return "ERR";
568 case H2_CS_ERROR2: return "ER2";
569 default: return "???";
570 }
571}
572
573/* returns a h2s state as an abbreviated 3-letter string, or "???" if unknown */
574static inline const char *h2s_st_to_str(enum h2_ss st)
575{
576 switch (st) {
577 case H2_SS_IDLE: return "IDL"; // idle
578 case H2_SS_RLOC: return "RSL"; // reserved local
579 case H2_SS_RREM: return "RSR"; // reserved remote
580 case H2_SS_OPEN: return "OPN"; // open
581 case H2_SS_HREM: return "HCR"; // half-closed remote
582 case H2_SS_HLOC: return "HCL"; // half-closed local
583 case H2_SS_ERROR : return "ERR"; // error
584 case H2_SS_CLOSED: return "CLO"; // closed
585 default: return "???";
586 }
587}
588
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200589/* the H2 traces always expect that arg1, if non-null, is of type connection
590 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
591 * that arg3, if non-null, is either of type htx for tx headers, or of type
592 * buffer for everything else.
593 */
594static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
595 const struct ist where, const struct ist func,
596 const void *a1, const void *a2, const void *a3, const void *a4)
597{
598 const struct connection *conn = a1;
599 const struct h2c *h2c = conn ? conn->ctx : NULL;
600 const struct h2s *h2s = a2;
601 const struct buffer *buf = a3;
602 const struct htx *htx;
603 int pos;
604
605 if (!h2c) // nothing to add
606 return;
607
Willy Tarreau17104d42019-08-30 07:12:55 +0200608 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200609 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
610
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100611 if (h2c->errcode)
612 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
613
Willy Tarreau73db4342019-09-25 07:28:44 +0200614 if (h2c->dsi >= 0 &&
615 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
Willy Tarreau8520d872020-09-18 07:39:29 +0200616 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 +0200617 }
618
619 if (h2s) {
620 if (h2s->id <= 0)
621 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
622 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100623 if (h2s->id && h2s->errcode)
624 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200625 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200626 }
627
628 /* Let's dump decoded requests and responses right after parsing. They
629 * are traced at level USER with a few recognizable flags.
630 */
631 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
632 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
633 htx = htxbuf(buf); // recv req/res
634 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
635 htx = a3; // send req/res
636 else
637 htx = NULL;
638
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200639 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200640 const struct htx_blk *blk = htx_get_blk(htx, pos);
641 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
642 enum htx_blk_type type = htx_get_blk_type(blk);
643
644 if (type == HTX_BLK_REQ_SL)
645 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200646 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200647 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
648 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
649 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
650 else if (type == HTX_BLK_RES_SL)
651 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200652 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200653 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
654 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
655 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
656 }
657}
658
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200659
660/* Detect a pending read0 for a H2 connection. It happens if a read0 is pending
661 * on the connection AND if there is no more data in the demux buffer. The
662 * function returns 1 to report a read0 or 0 otherwise.
663 */
664static int h2c_read0_pending(struct h2c *h2c)
665{
666 if (conn_xprt_read0_pending(h2c->conn) && !b_data(&h2c->dbuf))
667 return 1;
668 return 0;
669}
670
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200671/* returns true if the connection is allowed to expire, false otherwise. A
672 * connection may expire when:
673 * - it has no stream
674 * - it has data in the mux buffer
675 * - it has streams in the blocked list
676 * - it has streams in the fctl list
677 * - it has streams in the send list
678 * Otherwise it means some streams are waiting in the data layer and it should
679 * not expire.
680 */
681static inline int h2c_may_expire(const struct h2c *h2c)
682{
683 return eb_is_empty(&h2c->streams_by_id) ||
684 br_data(h2c->mbuf) ||
685 !LIST_ISEMPTY(&h2c->blocked_list) ||
686 !LIST_ISEMPTY(&h2c->fctl_list) ||
Willy Tarreaud9464162020-01-10 18:25:07 +0100687 !LIST_ISEMPTY(&h2c->send_list);
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200688}
689
Olivier Houchard7a977432019-03-21 15:47:13 +0100690static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200691h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100692{
693 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
694 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
695 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
696 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200697 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100698 (conn_xprt_read0_pending(h2c->conn) ||
699 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
700 return 1;
701
702 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100703}
704
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200705/*****************************************************/
706/* functions below are for dynamic buffer management */
707/*****************************************************/
708
Willy Tarreau315d8072017-12-10 22:17:57 +0100709/* indicates whether or not the we may call the h2_recv() function to attempt
710 * to receive data into the buffer and/or demux pending data. The condition is
711 * a bit complex due to some API limits for now. The rules are the following :
712 * - if an error or a shutdown was detected on the connection and the buffer
713 * is empty, we must not attempt to receive
714 * - if the demux buf failed to be allocated, we must not try to receive and
715 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100716 * - if no flag indicates a blocking condition, we may attempt to receive,
717 * regardless of whether the demux buffer is full or not, so that only
718 * de demux part decides whether or not to block. This is needed because
719 * the connection API indeed prevents us from re-enabling receipt that is
720 * already enabled in a polled state, so we must always immediately stop
721 * as soon as the demux can't proceed so as never to hit an end of read
722 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100723 * - otherwise must may not attempt
724 */
725static inline int h2_recv_allowed(const struct h2c *h2c)
726{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200727 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100728 (h2c->st0 >= H2_CS_ERROR ||
729 h2c->conn->flags & CO_FL_ERROR ||
730 conn_xprt_read0_pending(h2c->conn)))
731 return 0;
732
733 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100734 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100735 return 1;
736
737 return 0;
738}
739
Willy Tarreau47b515a2018-12-21 16:09:41 +0100740/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200741static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100742{
743 if (!h2_recv_allowed(h2c))
744 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200745 if ((!consider_buffer || !b_data(&h2c->dbuf))
746 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100747 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200748 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100749}
750
751
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100752/* returns true if the front connection has too many conn_streams attached */
753static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200754{
Willy Tarreaua8754662018-12-23 20:43:58 +0100755 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200756}
757
Willy Tarreau44e973f2018-03-01 17:49:30 +0100758/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
759 * flags are used to figure what buffer was requested. It returns 1 if the
760 * allocation succeeds, in which case the connection is woken up, or 0 if it's
761 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200762 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100763static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200764{
765 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100766 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200767
Willy Tarreau44e973f2018-03-01 17:49:30 +0100768 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc_margin(&h2c->dbuf, 0)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200769 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200770 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200771 return 1;
772 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200773
Willy Tarreau51330962019-05-26 09:38:07 +0200774 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc_margin(br_tail(h2c->mbuf), 0)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100775 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200776
777 if (h2c->flags & H2_CF_DEM_MROOM) {
778 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200779 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200780 }
Willy Tarreau14398122017-09-22 14:26:04 +0200781 return 1;
782 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100783
784 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
785 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Olivier Houchard638b7992018-08-16 15:41:52 +0200786 b_alloc_margin(&h2s->rxbuf, 0)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100787 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200788 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100789 return 1;
790 }
791
Willy Tarreau14398122017-09-22 14:26:04 +0200792 return 0;
793}
794
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200795static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200796{
797 struct buffer *buf = NULL;
798
Willy Tarreau21046592020-02-26 10:39:36 +0100799 if (likely(!MT_LIST_ADDED(&h2c->buf_wait.list)) &&
Willy Tarreau44e973f2018-03-01 17:49:30 +0100800 unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) {
801 h2c->buf_wait.target = h2c;
802 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreau86891272020-07-10 08:22:26 +0200803 MT_LIST_ADDQ(&buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200804 }
805 return buf;
806}
807
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200808static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200809{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200810 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100811 b_free(bptr);
Willy Tarreau201840a2019-05-29 17:50:48 +0200812 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau14398122017-09-22 14:26:04 +0200813 }
814}
815
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200816static inline void h2_release_mbuf(struct h2c *h2c)
817{
818 struct buffer *buf;
819 unsigned int count = 0;
820
821 while (b_size(buf = br_head_pick(h2c->mbuf))) {
822 b_free(buf);
823 count++;
824 }
825 if (count)
Willy Tarreau201840a2019-05-29 17:50:48 +0200826 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200827}
828
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100829/* returns the number of allocatable outgoing streams for the connection taking
830 * the last_sid and the reserved ones into account.
831 */
832static inline int h2_streams_left(const struct h2c *h2c)
833{
834 int ret;
835
836 /* consider the number of outgoing streams we're allowed to create before
837 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
838 * nb_reserved is the number of streams which don't yet have an ID.
839 */
840 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
841 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
842 if (ret < 0)
843 ret = 0;
844 return ret;
845}
846
Willy Tarreau00f18a32019-01-26 12:19:01 +0100847/* returns the number of streams in use on a connection to figure if it's
848 * idle or not. We check nb_cs and not nb_streams as the caller will want
849 * to know if it was the last one after a detach().
850 */
851static int h2_used_streams(struct connection *conn)
852{
853 struct h2c *h2c = conn->ctx;
854
855 return h2c->nb_cs;
856}
857
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100858/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100859static int h2_avail_streams(struct connection *conn)
860{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100861 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100862 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100863 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100864
Willy Tarreau6afec462019-01-28 06:40:19 +0100865 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
866 * streams on the connection.
867 */
868 if (h2c->last_sid >= 0)
869 return 0;
870
Willy Tarreauc61966f2019-10-31 15:10:03 +0100871 if (h2c->st0 >= H2_CS_ERROR)
872 return 0;
873
Willy Tarreau86949782019-01-31 10:42:05 +0100874 /* note: may be negative if a SETTINGS frame changes the limit */
875 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100876
877 /* we must also consider the limit imposed by stream IDs */
878 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100879 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100880 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100881 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
882 ret1 = MIN(ret1, ret2);
883 }
884 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100885}
886
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200887
Willy Tarreau62f52692017-10-08 23:01:42 +0200888/*****************************************************************/
889/* functions below are dedicated to the mux setup and management */
890/*****************************************************************/
891
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200892/* Initialize the mux once it's attached. For outgoing connections, the context
893 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200894 * connections from the fact that the context is still NULL (even during mux
895 * upgrades). <input> is always used as Input buffer and may contain data. It is
896 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200897 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200898static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
899 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200900{
901 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100902 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200903 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200904
Christopher Fauletf81ef032019-10-04 15:19:43 +0200905 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200906
Willy Tarreaubafbe012017-11-24 17:34:44 +0100907 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200908 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200909 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200910
Christopher Faulete9b70722019-04-08 10:46:02 +0200911 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200912 h2c->flags = H2_CF_IS_BACK;
913 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
914 if (tick_isset(prx->timeout.serverfin))
915 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100916
917 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
918 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200919 } else {
920 h2c->flags = H2_CF_NONE;
921 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
922 if (tick_isset(prx->timeout.clientfin))
923 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100924
925 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
926 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200927 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100928
Willy Tarreau0b37d652018-10-03 10:33:02 +0200929 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100930 h2c->task = NULL;
Willy Tarreau3f133572017-10-31 19:21:06 +0100931 if (tick_isset(h2c->timeout)) {
932 t = task_new(tid_bit);
933 if (!t)
934 goto fail;
935
936 h2c->task = t;
937 t->process = h2_timeout_task;
938 t->context = h2c;
939 t->expire = tick_add(now_ms, h2c->timeout);
940 }
Willy Tarreauea392822017-10-31 10:02:25 +0100941
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200942 h2c->wait_event.tasklet = tasklet_new();
943 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200944 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200945 h2c->wait_event.tasklet->process = h2_io_cb;
946 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100947 h2c->wait_event.events = 0;
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200948
Willy Tarreau2bdcc702020-05-19 11:31:11 +0200949 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +0200950 if (!h2c->ddht)
951 goto fail;
952
953 /* Initialise the context. */
954 h2c->st0 = H2_CS_PREFACE;
955 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100956 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200957 h2c->max_id = -1;
958 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100959 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200960 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +0100961 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200962 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100963 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100964 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200965
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200966 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200967 h2c->dsi = -1;
968 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100969
Willy Tarreau32218eb2017-09-22 08:07:25 +0200970 h2c->last_sid = -1;
971
Willy Tarreau51330962019-05-26 09:38:07 +0200972 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +0200973 h2c->miw = 65535; /* mux initial window size */
974 h2c->mws = 65535; /* mux window size */
975 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +0200976 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200977 LIST_INIT(&h2c->send_list);
978 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200979 LIST_INIT(&h2c->blocked_list);
Willy Tarreau21046592020-02-26 10:39:36 +0100980 MT_LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200981
Christopher Fauletf81ef032019-10-04 15:19:43 +0200982 conn->ctx = h2c;
983
Willy Tarreau3f133572017-10-31 19:21:06 +0100984 if (t)
985 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +0100986
Willy Tarreau01b44822018-10-03 14:26:37 +0200987 if (h2c->flags & H2_CF_IS_BACK) {
988 /* FIXME: this is temporary, for outgoing connections we need
989 * to immediately allocate a stream until the code is modified
990 * so that the caller calls ->attach(). For now the outgoing cs
Christopher Fauletf81ef032019-10-04 15:19:43 +0200991 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +0200992 */
993 struct h2s *h2s;
994
Christopher Fauletf81ef032019-10-04 15:19:43 +0200995 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +0200996 if (!h2s)
997 goto fail_stream;
998 }
999
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001000 HA_ATOMIC_ADD(&h2c->px_counters->open_conns, 1);
Amaury Denoyellee7b891f2020-11-03 15:04:45 +01001001 HA_ATOMIC_ADD(&h2c->px_counters->total_conns, 1);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001002
Willy Tarreau0f383582018-10-03 14:22:21 +02001003 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02001004 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001005 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001006 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +02001007 fail_stream:
1008 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +02001009 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001010 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001011 if (h2c->wait_event.tasklet)
1012 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001013 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +02001014 fail_no_h2c:
Christopher Fauletf81ef032019-10-04 15:19:43 +02001015 conn->ctx = conn_ctx; /* restore saved ctx */
1016 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001017 return -1;
1018}
1019
Willy Tarreau751f2d02018-10-05 09:35:00 +02001020/* returns the next allocatable outgoing stream ID for the H2 connection, or
1021 * -1 if no more is allocatable.
1022 */
1023static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1024{
1025 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001026
1027 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001028 id = -1;
1029 return id;
1030}
1031
Willy Tarreau2373acc2017-10-12 17:35:14 +02001032/* returns the stream associated with id <id> or NULL if not found */
1033static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1034{
1035 struct eb32_node *node;
1036
Willy Tarreau751f2d02018-10-05 09:35:00 +02001037 if (id == 0)
1038 return (struct h2s *)h2_closed_stream;
1039
Willy Tarreau2a856182017-05-16 15:20:39 +02001040 if (id > h2c->max_id)
1041 return (struct h2s *)h2_idle_stream;
1042
Willy Tarreau2373acc2017-10-12 17:35:14 +02001043 node = eb32_lookup(&h2c->streams_by_id, id);
1044 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001045 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001046
1047 return container_of(node, struct h2s, by_id);
1048}
1049
Christopher Faulet73c12072019-04-08 11:23:22 +02001050/* release function. This one should be called to free all resources allocated
1051 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001052 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001053static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001054{
William Dauchy477757c2020-08-07 22:19:23 +02001055 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001056
Willy Tarreau7838a792019-08-12 18:42:03 +02001057 TRACE_ENTER(H2_EV_H2C_END);
1058
Willy Tarreau32218eb2017-09-22 08:07:25 +02001059 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +02001060 /* The connection must be aattached to this mux to be released */
1061 if (h2c->conn && h2c->conn->ctx == h2c)
1062 conn = h2c->conn;
1063
Willy Tarreau7838a792019-08-12 18:42:03 +02001064 TRACE_DEVEL("freeing h2c", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001065 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +02001066
Willy Tarreau21046592020-02-26 10:39:36 +01001067 if (MT_LIST_ADDED(&h2c->buf_wait.list))
1068 MT_LIST_DEL(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001069
Willy Tarreau44e973f2018-03-01 17:49:30 +01001070 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +02001071 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +01001072
Willy Tarreauea392822017-10-31 10:02:25 +01001073 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +02001074 h2c->task->context = NULL;
1075 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +01001076 h2c->task = NULL;
1077 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001078 if (h2c->wait_event.tasklet)
1079 tasklet_free(h2c->wait_event.tasklet);
Christopher Faulet21d849f2019-09-18 11:07:20 +02001080 if (conn && h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001081 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Christopher Faulet21d849f2019-09-18 11:07:20 +02001082 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001083
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001084 HA_ATOMIC_SUB(&h2c->px_counters->open_conns, 1);
1085
Willy Tarreaubafbe012017-11-24 17:34:44 +01001086 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001087 }
1088
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001089 if (conn) {
1090 conn->mux = NULL;
1091 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001092 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001093
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001094 conn_stop_tracking(conn);
1095 conn_full_close(conn);
1096 if (conn->destroy_cb)
1097 conn->destroy_cb(conn);
1098 conn_free(conn);
1099 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001100
1101 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001102}
1103
1104
Willy Tarreau71681172017-10-23 14:39:06 +02001105/******************************************************/
1106/* functions below are for the H2 protocol processing */
1107/******************************************************/
1108
1109/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001110static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001111{
1112 return h2s ? h2s->id : 0;
1113}
1114
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001115/* returns the sum of the stream's own window size and the mux's initial
1116 * window, which together form the stream's effective window size.
1117 */
1118static inline int h2s_mws(const struct h2s *h2s)
1119{
1120 return h2s->sws + h2s->h2c->miw;
1121}
1122
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001123/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001124static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001125{
1126 if (h2c->msi < 0)
1127 return 0;
1128
1129 if (h2c->msi == h2s_id(h2s))
1130 return 0;
1131
1132 return 1;
1133}
1134
Willy Tarreau741d6df2017-10-17 08:00:59 +02001135/* marks an error on the connection */
Willy Tarreau1f094672017-11-20 21:27:45 +01001136static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001137{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001138 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001139 h2c->errcode = err;
1140 h2c->st0 = H2_CS_ERROR;
1141}
1142
Willy Tarreau175cebb2019-01-24 10:02:24 +01001143/* marks an error on the stream. It may also update an already closed stream
1144 * (e.g. to report an error after an RST was received).
1145 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001146static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001147{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001148 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001149 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001150 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001151 if (h2s->st < H2_SS_ERROR)
1152 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +01001153 if (h2s->cs)
1154 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001155 }
1156}
1157
Willy Tarreau7e094452018-12-19 18:08:52 +01001158/* attempt to notify the data layer of recv availability */
1159static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1160{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001161 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001162 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001163 tasklet_wakeup(h2s->subs->tasklet);
1164 h2s->subs->events &= ~SUB_RETRY_RECV;
1165 if (!h2s->subs->events)
1166 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001167 }
1168}
1169
1170/* attempt to notify the data layer of send availability */
1171static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1172{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001173 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001174 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001175 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001176 tasklet_wakeup(h2s->subs->tasklet);
1177 h2s->subs->events &= ~SUB_RETRY_SEND;
1178 if (!h2s->subs->events)
1179 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001180 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001181 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1182 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1183 tasklet_wakeup(h2s->shut_tl);
1184 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001185}
1186
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001187/* alerts the data layer, trying to wake it up by all means, following
1188 * this sequence :
1189 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1190 * - if its subscribed to send, then it's woken up for send
1191 * - if it was subscribed to neither, its ->wake() callback is called
1192 * It is safe to call this function with a closed stream which doesn't have a
1193 * conn_stream anymore.
1194 */
1195static void __maybe_unused h2s_alert(struct h2s *h2s)
1196{
Willy Tarreau7838a792019-08-12 18:42:03 +02001197 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1198
Willy Tarreauf96508a2020-01-10 11:12:48 +01001199 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001200 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001201 h2s_notify_recv(h2s);
1202 h2s_notify_send(h2s);
1203 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001204 else if (h2s->cs && h2s->cs->data_cb->wake != NULL) {
1205 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001206 h2s->cs->data_cb->wake(h2s->cs);
Willy Tarreau7838a792019-08-12 18:42:03 +02001207 }
1208
1209 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001210}
1211
Willy Tarreaue4820742017-07-27 13:37:23 +02001212/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001213static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001214{
1215 uint8_t *out = frame;
1216
1217 *out = len >> 16;
1218 write_n16(out + 1, len);
1219}
1220
Willy Tarreau54c15062017-10-10 17:10:03 +02001221/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1222 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1223 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001224 * available in the buffer's input prior to calling this function. The buffer
1225 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001226 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001227static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001228 const struct buffer *b, int o)
1229{
Willy Tarreau591d4452018-06-15 17:21:00 +02001230 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 +02001231}
1232
Willy Tarreau1f094672017-11-20 21:27:45 +01001233static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001234{
Willy Tarreau591d4452018-06-15 17:21:00 +02001235 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001236}
1237
Willy Tarreau1f094672017-11-20 21:27:45 +01001238static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001239{
Willy Tarreau591d4452018-06-15 17:21:00 +02001240 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001241}
1242
Willy Tarreau1f094672017-11-20 21:27:45 +01001243static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001244{
Willy Tarreau591d4452018-06-15 17:21:00 +02001245 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001246}
1247
1248
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001249/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1250 * The algorithm is not obvious. It turns out that H2 headers are neither
1251 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1252 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001253 *
1254 * b0 b1 b2 b3 b4 b5..b8
1255 * +----------+---------+--------+----+----+----------------------+
1256 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1257 * +----------+---------+--------+----+----+----------------------+
1258 *
1259 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1260 * we get the sid properly aligned and ordered, and 16 bits of len properly
1261 * ordered as well. The type and flags can be extracted using bit shifts from
1262 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001263 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1264 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001265 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001266static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001267{
1268 uint64_t w;
1269
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001270 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001271 return 0;
1272
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001273 w = h2_get_n64(b, o + 1);
1274 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001275 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1276 h->ff = w >> 32;
1277 h->ft = w >> 40;
1278 h->len += w >> 48;
1279 return 1;
1280}
1281
1282/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1283 * h2_peek_frame_hdr() above.
1284 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001285static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001286{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001287 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001288}
1289
1290/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001291static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001292{
1293 int ret;
1294
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001295 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001296 if (ret > 0)
1297 h2_skip_frame_hdr(b);
1298 return ret;
1299}
1300
Willy Tarreaucb985a42019-10-07 16:56:34 +02001301
1302/* try to fragment the headers frame present at the beginning of buffer <b>,
1303 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1304 * success. Typical causes of failure include a buffer not large enough to
1305 * add extra frame headers. The existing frame size is read in the current
1306 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1307 * and its length will be adjusted. The stream ID for continuation frames will
1308 * be copied from the initial frame's.
1309 */
1310static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1311{
1312 size_t remain = b->data - 9;
1313 int extra_frames = (remain - 1) / mfs;
1314 size_t fsize;
1315 char *fptr;
1316 int frame;
1317
1318 if (b->data <= mfs + 9)
1319 return 1;
1320
1321 /* Too large a frame, we need to fragment it using CONTINUATION
1322 * frames. We start from the end and move tails as needed.
1323 */
1324 if (b->data + extra_frames * 9 > b->size)
1325 return 0;
1326
1327 for (frame = extra_frames; frame; frame--) {
1328 fsize = ((remain - 1) % mfs) + 1;
1329 remain -= fsize;
1330
1331 /* move data */
1332 fptr = b->area + 9 + remain + (frame - 1) * 9;
1333 memmove(fptr + 9, b->area + 9 + remain, fsize);
1334 b->data += 9;
1335
1336 /* write new frame header */
1337 h2_set_frame_size(fptr, fsize);
1338 fptr[3] = H2_FT_CONTINUATION;
1339 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1340 write_n32(fptr + 5, read_n32(b->area + 5));
1341 }
1342
1343 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1344 h2_set_frame_size(b->area, remain);
1345 return 1;
1346}
1347
1348
Willy Tarreau00dd0782018-03-01 16:31:34 +01001349/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1350 * its connection if the stream was not yet closed. Please use this exclusively
1351 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001352 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001353static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001354{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001355 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001356 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001357 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001358 if (!h2s->id)
1359 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +01001360 if (h2s->cs) {
Willy Tarreaua27db382019-03-25 18:13:16 +01001361 if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf))
1362 h2s_notify_recv(h2s);
1363 }
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001364 HA_ATOMIC_SUB(&h2s->h2c->px_counters->open_streams, 1);
1365
Willy Tarreau7838a792019-08-12 18:42:03 +02001366 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001367 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001368 h2s->st = H2_SS_CLOSED;
1369}
1370
Willy Tarreau71049cc2018-03-28 13:56:39 +02001371/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001372/* h2s_destroy should only ever be called by the thread that owns the stream,
1373 * that means that a tasklet should be used if we want to destroy the h2s
1374 * from another thread
1375 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001376static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001377{
Willy Tarreau7838a792019-08-12 18:42:03 +02001378 struct connection *conn = h2s->h2c->conn;
1379
1380 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1381
Willy Tarreau0a10de62018-03-01 16:27:53 +01001382 h2s_close(h2s);
1383 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001384 if (b_size(&h2s->rxbuf)) {
1385 b_free(&h2s->rxbuf);
1386 offer_buffers(NULL, tasks_run_queue);
1387 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001388
1389 if (h2s->subs)
1390 h2s->subs->events = 0;
1391
Joseph Herlantd77575d2018-11-25 10:54:45 -08001392 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001393 * reference left would be in the h2c send_list/fctl_list, and if
1394 * we're in it, we're getting out anyway
1395 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001396 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001397
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001398 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001399 tasklet_free(h2s->shut_tl);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001400 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001401
1402 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001403}
1404
Willy Tarreaua8e49542018-10-03 18:53:55 +02001405/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1406 * stream tree. In case of error, nothing is added and NULL is returned. The
1407 * causes of errors can be any failed memory allocation. The caller is
1408 * responsible for checking if the connection may support an extra stream
1409 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001410 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001411static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001412{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001413 struct h2s *h2s;
1414
Willy Tarreau7838a792019-08-12 18:42:03 +02001415 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1416
Willy Tarreaubafbe012017-11-24 17:34:44 +01001417 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001418 if (!h2s)
1419 goto out;
1420
Willy Tarreau5723f292020-01-10 15:16:57 +01001421 h2s->shut_tl = tasklet_new();
1422 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001423 pool_free(pool_head_h2s, h2s);
1424 goto out;
1425 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001426 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001427 h2s->shut_tl->process = h2_deferred_shut;
1428 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001429 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001430 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001431 h2s->cs = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001432 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001433 h2s->flags = H2_SF_NONE;
1434 h2s->errcode = H2_ERR_NO_ERROR;
1435 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001436 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001437 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001438 h2s->rxbuf = BUF_NULL;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001439
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001440 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001441 if (id > 0)
1442 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001443 else
1444 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001445
1446 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001447 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001448 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001449
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001450 HA_ATOMIC_ADD(&h2c->px_counters->open_streams, 1);
Amaury Denoyellee7b891f2020-11-03 15:04:45 +01001451 HA_ATOMIC_ADD(&h2c->px_counters->total_streams, 1);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001452
Willy Tarreau7838a792019-08-12 18:42:03 +02001453 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001454 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001455 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001456 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001457 return NULL;
1458}
1459
1460/* creates a new stream <id> on the h2c connection and returns it, or NULL in
1461 * case of memory allocation error.
1462 */
1463static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id)
1464{
1465 struct session *sess = h2c->conn->owner;
1466 struct conn_stream *cs;
1467 struct h2s *h2s;
1468
Willy Tarreau7838a792019-08-12 18:42:03 +02001469 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1470
Willy Tarreaua8e49542018-10-03 18:53:55 +02001471 if (h2c->nb_streams >= h2_settings_max_concurrent_streams)
1472 goto out;
1473
1474 h2s = h2s_new(h2c, id);
1475 if (!h2s)
1476 goto out;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001477
Christopher Faulet236c93b2020-07-02 09:19:54 +02001478 cs = cs_new(h2c->conn, h2c->conn->target);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001479 if (!cs)
1480 goto out_close;
1481
Olivier Houchard746fb772018-12-15 19:42:00 +01001482 cs->flags |= CS_FL_NOT_FIRST;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001483 h2s->cs = cs;
1484 cs->ctx = h2s;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001485 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001486
Christopher Faulet26256f82020-09-14 11:40:13 +02001487 if (stream_create_from_cs(cs, &BUF_NULL) < 0)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001488 goto out_free_cs;
1489
Willy Tarreau590a0512018-09-05 11:56:48 +02001490 /* We want the accept date presented to the next stream to be the one
1491 * we have now, the handshake time to be null (since the next stream
1492 * is not delayed by a handshake), and the idle time to count since
1493 * right now.
1494 */
1495 sess->accept_date = date;
1496 sess->tv_accept = now;
1497 sess->t_handshake = 0;
1498
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001499 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001500 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001501 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001502 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001503 return h2s;
1504
1505 out_free_cs:
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001506 h2c->nb_cs--;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001507 cs_free(cs);
Olivier Houchard58d87f32019-05-29 16:44:17 +02001508 h2s->cs = NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001509 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001510 h2s_destroy(h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001511 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001512 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001513 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001514 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001515}
1516
Willy Tarreau751f2d02018-10-05 09:35:00 +02001517/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1518 * and returns it, or NULL in case of memory allocation error or if the highest
1519 * possible stream ID was reached.
1520 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001521static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001522{
1523 struct h2s *h2s = NULL;
1524
Willy Tarreau7838a792019-08-12 18:42:03 +02001525 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1526
Willy Tarreau86949782019-01-31 10:42:05 +01001527 if (h2c->nb_streams >= h2c->streams_limit)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001528 goto out;
1529
Willy Tarreaua80dca82019-01-24 17:08:28 +01001530 if (h2_streams_left(h2c) < 1)
1531 goto out;
1532
Willy Tarreau751f2d02018-10-05 09:35:00 +02001533 /* Defer choosing the ID until we send the first message to create the stream */
1534 h2s = h2s_new(h2c, 0);
1535 if (!h2s)
1536 goto out;
1537
1538 h2s->cs = cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001539 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001540 cs->ctx = h2s;
1541 h2c->nb_cs++;
1542
Willy Tarreau751f2d02018-10-05 09:35:00 +02001543 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001544 if (likely(h2s))
1545 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1546 else
1547 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001548 return h2s;
1549}
1550
Willy Tarreaube5b7152017-09-25 16:25:39 +02001551/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1552 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1553 * the various settings codes.
1554 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001555static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001556{
1557 struct buffer *res;
1558 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001559 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001560 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001561 int ret = 0;
1562
1563 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001564
1565 if (h2c_mux_busy(h2c, NULL)) {
1566 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001567 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001568 }
1569
Willy Tarreaube5b7152017-09-25 16:25:39 +02001570 chunk_init(&buf, buf_data, sizeof(buf_data));
1571 chunk_memcpy(&buf,
1572 "\x00\x00\x00" /* length : 0 for now */
1573 "\x04\x00" /* type : 4 (settings), flags : 0 */
1574 "\x00\x00\x00\x00", /* stream ID : 0 */
1575 9);
1576
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001577 if (h2c->flags & H2_CF_IS_BACK) {
1578 /* send settings_enable_push=0 */
1579 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1580 }
1581
Willy Tarreaube5b7152017-09-25 16:25:39 +02001582 if (h2_settings_header_table_size != 4096) {
1583 char str[6] = "\x00\x01"; /* header_table_size */
1584
1585 write_n32(str + 2, h2_settings_header_table_size);
1586 chunk_memcat(&buf, str, 6);
1587 }
1588
1589 if (h2_settings_initial_window_size != 65535) {
1590 char str[6] = "\x00\x04"; /* initial_window_size */
1591
1592 write_n32(str + 2, h2_settings_initial_window_size);
1593 chunk_memcat(&buf, str, 6);
1594 }
1595
1596 if (h2_settings_max_concurrent_streams != 0) {
1597 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1598
1599 /* Note: 0 means "unlimited" for haproxy's config but not for
1600 * the protocol, so never send this value!
1601 */
1602 write_n32(str + 2, h2_settings_max_concurrent_streams);
1603 chunk_memcat(&buf, str, 6);
1604 }
1605
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001606 mfs = h2_settings_max_frame_size;
1607 if (mfs > global.tune.bufsize)
1608 mfs = global.tune.bufsize;
1609
1610 if (!mfs)
1611 mfs = global.tune.bufsize;
1612
1613 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001614 char str[6] = "\x00\x05"; /* max_frame_size */
1615
1616 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1617 * match bufsize - rewrite size, but at the moment it seems
1618 * that clients don't take care of it.
1619 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001620 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001621 chunk_memcat(&buf, str, 6);
1622 }
1623
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001624 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001625
1626 res = br_tail(h2c->mbuf);
1627 retry:
1628 if (!h2_get_buf(h2c, res)) {
1629 h2c->flags |= H2_CF_MUX_MALLOC;
1630 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001631 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001632 }
1633
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001634 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001635 if (unlikely(ret <= 0)) {
1636 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001637 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1638 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001639 h2c->flags |= H2_CF_MUX_MFULL;
1640 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001641 }
1642 else {
1643 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001644 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001645 }
1646 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001647 out:
1648 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001649 return ret;
1650}
1651
Willy Tarreau52eed752017-09-22 15:05:09 +02001652/* Try to receive a connection preface, then upon success try to send our
1653 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1654 * missing data. It may return an error in h2c.
1655 */
1656static int h2c_frt_recv_preface(struct h2c *h2c)
1657{
1658 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001659 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001660
Willy Tarreau7838a792019-08-12 18:42:03 +02001661 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1662
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001663 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001664
1665 if (unlikely(ret1 <= 0)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02001666 if (ret1 < 0)
1667 sess_log(h2c->conn->owner);
1668
Amaury Denoyellea8879232020-10-27 17:16:03 +01001669 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001670 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 +02001671 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001672 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
1673 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001674 ret2 = 0;
1675 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001676 }
1677
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001678 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001679 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001680 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001681 out:
1682 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001683 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001684}
1685
Willy Tarreau01b44822018-10-03 14:26:37 +02001686/* Try to send a connection preface, then upon success try to send our
1687 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1688 * missing data. It may return an error in h2c.
1689 */
1690static int h2c_bck_send_preface(struct h2c *h2c)
1691{
1692 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001693 int ret = 0;
1694
1695 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001696
1697 if (h2c_mux_busy(h2c, NULL)) {
1698 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001699 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001700 }
1701
Willy Tarreaubcc45952019-05-26 10:05:50 +02001702 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001703 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001704 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001705 h2c->flags |= H2_CF_MUX_MALLOC;
1706 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001707 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001708 }
1709
1710 if (!b_data(res)) {
1711 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001712 ret = b_istput(res, ist(H2_CONN_PREFACE));
1713 if (unlikely(ret <= 0)) {
1714 if (!ret) {
1715 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1716 goto retry;
1717 h2c->flags |= H2_CF_MUX_MFULL;
1718 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001719 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001720 }
1721 else {
1722 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001723 ret = 0;
1724 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001725 }
1726 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001727 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001728 ret = h2c_send_settings(h2c);
1729 out:
1730 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1731 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001732}
1733
Willy Tarreau081d4722017-05-16 21:51:05 +02001734/* try to send a GOAWAY frame on the connection to report an error or a graceful
1735 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1736 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1737 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1738 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1739 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1740 * on unrecoverable failure. It will not attempt to send one again in this last
1741 * case so that it is safe to use h2c_error() to report such errors.
1742 */
1743static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1744{
1745 struct buffer *res;
1746 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001747 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001748
Willy Tarreau7838a792019-08-12 18:42:03 +02001749 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1750
1751 if (h2c->flags & H2_CF_GOAWAY_FAILED) {
1752 ret = 1; // claim that it worked
1753 goto out;
1754 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001755
1756 if (h2c_mux_busy(h2c, h2s)) {
1757 if (h2s)
1758 h2s->flags |= H2_SF_BLK_MBUSY;
1759 else
1760 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001761 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001762 }
1763
Willy Tarreau9c218e72019-05-26 10:08:28 +02001764 /* len: 8, type: 7, flags: none, sid: 0 */
1765 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1766
1767 if (h2c->last_sid < 0)
1768 h2c->last_sid = h2c->max_id;
1769
1770 write_n32(str + 9, h2c->last_sid);
1771 write_n32(str + 13, h2c->errcode);
1772
Willy Tarreaubcc45952019-05-26 10:05:50 +02001773 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001774 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001775 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001776 h2c->flags |= H2_CF_MUX_MALLOC;
1777 if (h2s)
1778 h2s->flags |= H2_SF_BLK_MROOM;
1779 else
1780 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001781 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001782 }
1783
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001784 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001785 if (unlikely(ret <= 0)) {
1786 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001787 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1788 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001789 h2c->flags |= H2_CF_MUX_MFULL;
1790 if (h2s)
1791 h2s->flags |= H2_SF_BLK_MROOM;
1792 else
1793 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001794 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001795 }
1796 else {
1797 /* we cannot report this error using GOAWAY, so we mark
1798 * it and claim a success.
1799 */
1800 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1801 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001802 ret = 1;
1803 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001804 }
1805 }
1806 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001807
1808 /* some codes are not for real errors, just attempts to close cleanly */
1809 switch (h2c->errcode) {
1810 case H2_ERR_NO_ERROR:
1811 case H2_ERR_ENHANCE_YOUR_CALM:
1812 case H2_ERR_REFUSED_STREAM:
1813 case H2_ERR_CANCEL:
1814 break;
1815 default:
1816 HA_ATOMIC_ADD(&h2c->px_counters->goaway_resp, 1);
1817 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001818 out:
1819 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001820 return ret;
1821}
1822
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001823/* Try to send an RST_STREAM frame on the connection for the indicated stream
1824 * during mux operations. This stream must be valid and cannot be closed
1825 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1826 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1827 * not yet.
1828 *
1829 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1830 * to write the message, it subscribes the stream to future notifications.
1831 */
1832static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1833{
1834 struct buffer *res;
1835 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001836 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001837
Willy Tarreau7838a792019-08-12 18:42:03 +02001838 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1839
1840 if (!h2s || h2s->st == H2_SS_CLOSED) {
1841 ret = 1;
1842 goto out;
1843 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001844
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001845 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1846 * RST_STREAM in response to a RST_STREAM frame.
1847 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001848 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001849 ret = 1;
1850 goto ignore;
1851 }
1852
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001853 if (h2c_mux_busy(h2c, h2s)) {
1854 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001855 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001856 }
1857
Willy Tarreau9c218e72019-05-26 10:08:28 +02001858 /* len: 4, type: 3, flags: none */
1859 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1860 write_n32(str + 5, h2s->id);
1861 write_n32(str + 9, h2s->errcode);
1862
Willy Tarreaubcc45952019-05-26 10:05:50 +02001863 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001864 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001865 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001866 h2c->flags |= H2_CF_MUX_MALLOC;
1867 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001868 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001869 }
1870
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001871 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001872 if (unlikely(ret <= 0)) {
1873 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001874 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1875 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001876 h2c->flags |= H2_CF_MUX_MFULL;
1877 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001878 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001879 }
1880 else {
1881 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001882 ret = 0;
1883 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001884 }
1885 }
1886
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001887 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001888 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001889 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001890 out:
1891 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001892 return ret;
1893}
1894
1895/* Try to send an RST_STREAM frame on the connection for the stream being
1896 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001897 * error code, even if the stream is one of the dummy ones, and will update
1898 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001899 *
1900 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1901 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001902 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001903 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001904 */
1905static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1906{
1907 struct buffer *res;
1908 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001909 int ret = 0;
1910
1911 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001912
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001913 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1914 * RST_STREAM in response to a RST_STREAM frame.
1915 */
1916 if (h2c->dft == H2_FT_RST_STREAM) {
1917 ret = 1;
1918 goto ignore;
1919 }
1920
Willy Tarreau27a84c92017-10-17 08:10:17 +02001921 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001922 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001923 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001924 }
1925
Willy Tarreau9c218e72019-05-26 10:08:28 +02001926 /* len: 4, type: 3, flags: none */
1927 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1928
1929 write_n32(str + 5, h2c->dsi);
1930 write_n32(str + 9, h2s->errcode);
1931
Willy Tarreaubcc45952019-05-26 10:05:50 +02001932 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001933 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001934 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001935 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001936 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001937 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001938 }
1939
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001940 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02001941 if (unlikely(ret <= 0)) {
1942 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001943 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1944 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001945 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001946 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001947 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001948 }
1949 else {
1950 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001951 ret = 0;
1952 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001953 }
1954 }
1955
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001956 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02001957 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001958 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001959 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001960 }
1961
Willy Tarreau7838a792019-08-12 18:42:03 +02001962 out:
Amaury Denoyellea8879232020-10-27 17:16:03 +01001963 HA_ATOMIC_ADD(&h2c->px_counters->rst_stream_resp, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001964 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001965 return ret;
1966}
1967
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001968/* try to send an empty DATA frame with the ES flag set to notify about the
1969 * end of stream and match a shutdown(write). If an ES was already sent as
1970 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
1971 * on success or zero if nothing was done. In case of lack of room to write the
1972 * message, it subscribes the requesting stream to future notifications.
1973 */
1974static int h2_send_empty_data_es(struct h2s *h2s)
1975{
1976 struct h2c *h2c = h2s->h2c;
1977 struct buffer *res;
1978 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02001979 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001980
Willy Tarreau7838a792019-08-12 18:42:03 +02001981 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
1982
1983 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
1984 ret = 1;
1985 goto out;
1986 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001987
1988 if (h2c_mux_busy(h2c, h2s)) {
1989 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001990 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001991 }
1992
Willy Tarreau9c218e72019-05-26 10:08:28 +02001993 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
1994 memcpy(str, "\x00\x00\x00\x00\x01", 5);
1995 write_n32(str + 5, h2s->id);
1996
Willy Tarreaubcc45952019-05-26 10:05:50 +02001997 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001998 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001999 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002000 h2c->flags |= H2_CF_MUX_MALLOC;
2001 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002002 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002003 }
2004
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002005 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002006 if (likely(ret > 0)) {
2007 h2s->flags |= H2_SF_ES_SENT;
2008 }
2009 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002010 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2011 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002012 h2c->flags |= H2_CF_MUX_MFULL;
2013 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002014 }
2015 else {
2016 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002017 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002018 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002019 out:
2020 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002021 return ret;
2022}
2023
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002024/* wake a specific stream and assign its conn_stream some CS_FL_* flags among
Willy Tarreau99ad1b32019-05-14 11:46:28 +02002025 * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002026 * is automatically updated accordingly. If the stream is orphaned, it is
2027 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002028 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002029static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002030{
Willy Tarreau7838a792019-08-12 18:42:03 +02002031 struct h2c *h2c = h2s->h2c;
2032
2033 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2034
Christopher Fauletf02ca002019-03-07 16:21:34 +01002035 if (!h2s->cs) {
2036 /* this stream was already orphaned */
2037 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002038 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002039 return;
2040 }
2041
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002042 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002043 if (h2s->st == H2_SS_OPEN)
2044 h2s->st = H2_SS_HREM;
2045 else if (h2s->st == H2_SS_HLOC)
2046 h2s_close(h2s);
2047 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002048
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002049 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
2050 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
2051 h2s->cs->flags |= CS_FL_ERR_PENDING;
2052 if (h2s->cs->flags & CS_FL_EOS)
2053 h2s->cs->flags |= CS_FL_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02002054
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002055 if (h2s->st < H2_SS_ERROR)
2056 h2s->st = H2_SS_ERROR;
2057 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002058
2059 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002060 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002061}
2062
2063/* wake the streams attached to the connection, whose id is greater than <last>
2064 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002065 */
Willy Tarreau23482912019-05-07 15:23:14 +02002066static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002067{
2068 struct eb32_node *node;
2069 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002070
Willy Tarreau7838a792019-08-12 18:42:03 +02002071 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2072
Christopher Fauletf02ca002019-03-07 16:21:34 +01002073 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002074 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2075 while (node) {
2076 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002077 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002078 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002079 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002080
Christopher Fauletf02ca002019-03-07 16:21:34 +01002081 /* Wake all streams with unassigned ID (ID == 0) */
2082 node = eb32_lookup(&h2c->streams_by_id, 0);
2083 while (node) {
2084 h2s = container_of(node, struct h2s, by_id);
2085 if (h2s->id > 0)
2086 break;
2087 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002088 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002089 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002090
2091 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002092}
2093
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002094/* Wake up all blocked streams whose window size has become positive after the
2095 * mux's initial window was adjusted. This should be done after having processed
2096 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002097 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002098static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002099{
2100 struct h2s *h2s;
2101 struct eb32_node *node;
2102
Willy Tarreau7838a792019-08-12 18:42:03 +02002103 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2104
Willy Tarreau3421aba2017-07-27 15:41:03 +02002105 node = eb32_first(&h2c->streams_by_id);
2106 while (node) {
2107 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002108 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002109 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002110 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002111 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2112 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002113 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002114 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002115 node = eb32_next(node);
2116 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002117
2118 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002119}
2120
2121/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2122 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002123 * return an error in h2c. The caller must have already verified frame length
2124 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002125 */
2126static int h2c_handle_settings(struct h2c *h2c)
2127{
2128 unsigned int offset;
2129 int error;
2130
Willy Tarreau7838a792019-08-12 18:42:03 +02002131 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2132
Willy Tarreau3421aba2017-07-27 15:41:03 +02002133 if (h2c->dff & H2_F_SETTINGS_ACK) {
2134 if (h2c->dfl) {
2135 error = H2_ERR_FRAME_SIZE_ERROR;
2136 goto fail;
2137 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002138 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002139 }
2140
Willy Tarreau3421aba2017-07-27 15:41:03 +02002141 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002142 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002143 goto out0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002144
2145 /* parse the frame */
2146 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002147 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2148 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002149
2150 switch (type) {
2151 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2152 /* we need to update all existing streams with the
2153 * difference from the previous iws.
2154 */
2155 if (arg < 0) { // RFC7540#6.5.2
2156 error = H2_ERR_FLOW_CONTROL_ERROR;
2157 goto fail;
2158 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002159 h2c->miw = arg;
2160 break;
2161 case H2_SETTINGS_MAX_FRAME_SIZE:
2162 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002163 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 +02002164 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002165 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002166 goto fail;
2167 }
2168 h2c->mfs = arg;
2169 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002170 case H2_SETTINGS_ENABLE_PUSH:
2171 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002172 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002173 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002174 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002175 goto fail;
2176 }
2177 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002178 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2179 if (h2c->flags & H2_CF_IS_BACK) {
2180 /* the limit is only for the backend; for the frontend it is our limit */
2181 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2182 arg = h2_settings_max_concurrent_streams;
2183 h2c->streams_limit = arg;
2184 }
2185 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002186 }
2187 }
2188
2189 /* need to ACK this frame now */
2190 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002191 done:
2192 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002193 return 1;
2194 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002195 if (!(h2c->flags & H2_CF_IS_BACK))
2196 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002197 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002198 out0:
2199 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 +02002200 return 0;
2201}
2202
2203/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2204 * success or one of the h2_status values.
2205 */
2206static int h2c_ack_settings(struct h2c *h2c)
2207{
2208 struct buffer *res;
2209 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002210 int ret = 0;
2211
2212 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002213
2214 if (h2c_mux_busy(h2c, NULL)) {
2215 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002216 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002217 }
2218
Willy Tarreau9c218e72019-05-26 10:08:28 +02002219 memcpy(str,
2220 "\x00\x00\x00" /* length : 0 (no data) */
2221 "\x04" "\x01" /* type : 4, flags : ACK */
2222 "\x00\x00\x00\x00" /* stream ID */, 9);
2223
Willy Tarreaubcc45952019-05-26 10:05:50 +02002224 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002225 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002226 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002227 h2c->flags |= H2_CF_MUX_MALLOC;
2228 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002229 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002230 }
2231
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002232 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002233 if (unlikely(ret <= 0)) {
2234 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002235 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2236 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002237 h2c->flags |= H2_CF_MUX_MFULL;
2238 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002239 }
2240 else {
2241 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002242 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002243 }
2244 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002245 out:
2246 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002247 return ret;
2248}
2249
Willy Tarreaucf68c782017-10-10 17:11:41 +02002250/* processes a PING frame and schedules an ACK if needed. The caller must pass
2251 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002252 * missing data. The caller must have already verified frame length
2253 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002254 */
2255static int h2c_handle_ping(struct h2c *h2c)
2256{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002257 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002258 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002259 h2c->st0 = H2_CS_FRAME_A;
2260 return 1;
2261}
2262
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002263/* Try to send a window update for stream id <sid> and value <increment>.
2264 * Returns > 0 on success or zero on missing room or failure. It may return an
2265 * error in h2c.
2266 */
2267static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2268{
2269 struct buffer *res;
2270 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002271 int ret = 0;
2272
2273 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002274
2275 if (h2c_mux_busy(h2c, NULL)) {
2276 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002277 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002278 }
2279
Willy Tarreau9c218e72019-05-26 10:08:28 +02002280 /* length: 4, type: 8, flags: none */
2281 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2282 write_n32(str + 5, sid);
2283 write_n32(str + 9, increment);
2284
Willy Tarreaubcc45952019-05-26 10:05:50 +02002285 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002286 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002287 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002288 h2c->flags |= H2_CF_MUX_MALLOC;
2289 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002290 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002291 }
2292
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002293 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002294 if (unlikely(ret <= 0)) {
2295 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002296 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2297 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002298 h2c->flags |= H2_CF_MUX_MFULL;
2299 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002300 }
2301 else {
2302 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002303 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002304 }
2305 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002306 out:
2307 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002308 return ret;
2309}
2310
2311/* try to send pending window update for the connection. It's safe to call it
2312 * with no pending updates. Returns > 0 on success or zero on missing room or
2313 * failure. It may return an error in h2c.
2314 */
2315static int h2c_send_conn_wu(struct h2c *h2c)
2316{
2317 int ret = 1;
2318
Willy Tarreau7838a792019-08-12 18:42:03 +02002319 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2320
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002321 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002322 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002323
Willy Tarreau97aaa672018-12-23 09:49:04 +01002324 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2325 /* increase the advertised connection window to 2G on
2326 * first update.
2327 */
2328 h2c->flags |= H2_CF_WINDOW_OPENED;
2329 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2330 }
2331
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002332 /* send WU for the connection */
2333 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2334 if (ret > 0)
2335 h2c->rcvd_c = 0;
2336
Willy Tarreau7838a792019-08-12 18:42:03 +02002337 out:
2338 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002339 return ret;
2340}
2341
2342/* try to send pending window update for the current dmux stream. It's safe to
2343 * call it with no pending updates. Returns > 0 on success or zero on missing
2344 * room or failure. It may return an error in h2c.
2345 */
2346static int h2c_send_strm_wu(struct h2c *h2c)
2347{
2348 int ret = 1;
2349
Willy Tarreau7838a792019-08-12 18:42:03 +02002350 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2351
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002352 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002353 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002354
2355 /* send WU for the stream */
2356 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2357 if (ret > 0)
2358 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002359 out:
2360 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002361 return ret;
2362}
2363
Willy Tarreaucf68c782017-10-10 17:11:41 +02002364/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2365 * success, 0 on missing data or one of the h2_status values.
2366 */
2367static int h2c_ack_ping(struct h2c *h2c)
2368{
2369 struct buffer *res;
2370 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002371 int ret = 0;
2372
2373 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002374
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002375 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002376 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002377
2378 if (h2c_mux_busy(h2c, NULL)) {
2379 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002380 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002381 }
2382
Willy Tarreaucf68c782017-10-10 17:11:41 +02002383 memcpy(str,
2384 "\x00\x00\x08" /* length : 8 (same payload) */
2385 "\x06" "\x01" /* type : 6, flags : ACK */
2386 "\x00\x00\x00\x00" /* stream ID */, 9);
2387
2388 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002389 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002390
Willy Tarreau9c218e72019-05-26 10:08:28 +02002391 res = br_tail(h2c->mbuf);
2392 retry:
2393 if (!h2_get_buf(h2c, res)) {
2394 h2c->flags |= H2_CF_MUX_MALLOC;
2395 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002396 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002397 }
2398
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002399 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002400 if (unlikely(ret <= 0)) {
2401 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002402 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2403 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002404 h2c->flags |= H2_CF_MUX_MFULL;
2405 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002406 }
2407 else {
2408 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002409 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002410 }
2411 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002412 out:
2413 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002414 return ret;
2415}
2416
Willy Tarreau26f95952017-07-27 17:18:30 +02002417/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2418 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002419 * h2c or h2s. The caller must have already verified frame length and stream ID
2420 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002421 */
2422static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2423{
2424 int32_t inc;
2425 int error;
2426
Willy Tarreau7838a792019-08-12 18:42:03 +02002427 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2428
Willy Tarreau26f95952017-07-27 17:18:30 +02002429 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002430 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002431 goto out0;
Willy Tarreau26f95952017-07-27 17:18:30 +02002432
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002433 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002434
2435 if (h2c->dsi != 0) {
2436 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002437
2438 /* it's not an error to receive WU on a closed stream */
2439 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002440 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002441
2442 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002443 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 +02002444 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002445 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau26f95952017-07-27 17:18:30 +02002446 goto strm_err;
2447 }
2448
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002449 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002450 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 +02002451 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreaua3075282020-12-01 10:22:43 +01002452 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau26f95952017-07-27 17:18:30 +02002453 goto strm_err;
2454 }
2455
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002456 h2s->sws += inc;
2457 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002458 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002459 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002460 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2461 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Olivier Houcharddddfe312018-10-10 18:51:00 +02002462 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002463 }
2464 }
2465 else {
2466 /* connection window update */
2467 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002468 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002469 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002470 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau26f95952017-07-27 17:18:30 +02002471 goto conn_err;
2472 }
2473
2474 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2475 error = H2_ERR_FLOW_CONTROL_ERROR;
2476 goto conn_err;
2477 }
2478
2479 h2c->mws += inc;
2480 }
2481
Willy Tarreau7838a792019-08-12 18:42:03 +02002482 done:
2483 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002484 return 1;
2485
2486 conn_err:
2487 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002488 out0:
2489 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 +02002490 return 0;
2491
2492 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002493 h2s_error(h2s, error);
2494 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002495 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002496 return 0;
2497}
2498
Willy Tarreaue96b0922017-10-30 00:28:29 +01002499/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002500 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2501 * have already verified frame length and stream ID validity. Described in
2502 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002503 */
2504static int h2c_handle_goaway(struct h2c *h2c)
2505{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002506 int last;
2507
Willy Tarreau7838a792019-08-12 18:42:03 +02002508 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002509 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002510 if (b_data(&h2c->dbuf) < h2c->dfl) {
2511 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002512 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002513 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002514
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002515 last = h2_get_n32(&h2c->dbuf, 0);
2516 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002517 if (h2c->last_sid < 0)
2518 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002519 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002520 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002521 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002522}
2523
Willy Tarreau92153fc2017-12-03 19:46:19 +01002524/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002525 * invalid. Returns > 0 on success or zero on missing data. It may return an
2526 * error in h2c. The caller must have already verified frame length and stream
2527 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002528 */
2529static int h2c_handle_priority(struct h2c *h2c)
2530{
Willy Tarreau7838a792019-08-12 18:42:03 +02002531 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2532
Willy Tarreau92153fc2017-12-03 19:46:19 +01002533 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002534 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002535 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002536 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002537 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002538
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002539 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002540 /* 7540#5.3 : can't depend on itself */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002541 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002542 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua3075282020-12-01 10:22:43 +01002543 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02002544 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002545 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002546 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002547 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002548 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002549}
2550
Willy Tarreaucd234e92017-08-18 10:59:39 +02002551/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002552 * Returns > 0 on success or zero on missing data. The caller must have already
2553 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002554 */
2555static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2556{
Willy Tarreau7838a792019-08-12 18:42:03 +02002557 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2558
Willy Tarreaucd234e92017-08-18 10:59:39 +02002559 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002560 if (b_data(&h2c->dbuf) < h2c->dfl) {
2561 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 +02002562 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002563 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002564
2565 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002566 if (h2s->st == H2_SS_CLOSED) {
2567 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 +02002568 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002569 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002570
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002571 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002572 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002573
2574 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01002575 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01002576 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002577 }
2578
2579 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002580 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002581 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002582}
2583
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002584/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2585 * It may return an error in h2c or h2s. The caller must consider that the
2586 * return value is the new h2s in case one was allocated (most common case).
2587 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002588 * errors here are reported as connection errors since it's impossible to
2589 * recover from such errors after the compression context has been altered.
2590 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002591static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002592{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002593 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002594 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002595 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002596 int error;
2597
Willy Tarreau7838a792019-08-12 18:42:03 +02002598 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2599
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002600 if (!b_size(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002601 goto out; // empty buffer
Willy Tarreau13278b42017-10-13 19:23:14 +02002602
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002603 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002604 goto out; // incomplete frame
Willy Tarreau13278b42017-10-13 19:23:14 +02002605
2606 /* now either the frame is complete or the buffer is complete */
2607 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002608 /* The stream exists/existed, this must be a trailers frame */
2609 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreauaab1a602019-05-06 11:12:18 +02002610 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len);
2611 /* unrecoverable error ? */
2612 if (h2c->st0 >= H2_CS_ERROR)
2613 goto out;
2614
2615 if (error == 0)
2616 goto out; // missing data
2617
2618 if (error < 0) {
2619 /* Failed to decode this frame (e.g. too large request)
2620 * but the HPACK decompressor is still synchronized.
2621 */
2622 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2623 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002624 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002625 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002626 goto done;
2627 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002628 /* the connection was already killed by an RST, let's consume
2629 * the data and send another RST.
2630 */
2631 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
2632 h2s = (struct h2s*)h2_error_stream;
2633 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002634 }
2635 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2636 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2637 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002638 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Amaury Denoyellea8879232020-10-27 17:16:03 +01002639 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002640 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002641 goto conn_err;
2642 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002643 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2644 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002645
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002646 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002647
Willy Tarreau25919232019-01-03 14:48:18 +01002648 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002649 if (h2c->st0 >= H2_CS_ERROR)
2650 goto out;
2651
Willy Tarreau25919232019-01-03 14:48:18 +01002652 if (error <= 0) {
2653 if (error == 0)
2654 goto out; // missing data
2655
2656 /* Failed to decode this stream (e.g. too large request)
2657 * but the HPACK decompressor is still synchronized.
2658 */
2659 h2s = (struct h2s*)h2_error_stream;
2660 goto send_rst;
2661 }
2662
Willy Tarreau22de8d32018-09-05 19:55:58 +02002663 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002664 * positively from h2c_frt_stream_new(), the stream will report the error,
2665 * and if we return in error, h2c_frt_stream_new() will emit the error.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002666 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02002667 h2s = h2c_frt_stream_new(h2c, h2c->dsi);
Willy Tarreau13278b42017-10-13 19:23:14 +02002668 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002669 h2s = (struct h2s*)h2_refused_stream;
2670 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002671 }
2672
2673 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002674 h2s->rxbuf = rxbuf;
2675 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002676 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002677
Willy Tarreau88d138e2019-01-02 19:38:14 +01002678 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002679 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002680 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002681
2682 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002683 if (h2s->st == H2_SS_OPEN)
2684 h2s->st = H2_SS_HREM;
2685 else
2686 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002687 }
2688
Willy Tarreau3a429f02019-01-03 11:41:50 +01002689 /* update the max stream ID if the request is being processed */
2690 if (h2s->id > h2c->max_id)
2691 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002692
Willy Tarreau022e5e52020-09-10 09:33:15 +02002693 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 +01002694 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002695
2696 conn_err:
2697 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002698 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002699
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002700 out:
2701 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002702 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 +01002703 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002704
2705 send_rst:
2706 /* make the demux send an RST for the current stream. We may only
2707 * do this if we're certain that the HEADERS frame was properly
2708 * decompressed so that the HPACK decoder is still kept up to date.
2709 */
2710 h2_release_buf(h2c, &rxbuf);
2711 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002712
Willy Tarreau022e5e52020-09-10 09:33:15 +02002713 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 +02002714 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002715 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002716}
2717
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002718/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2719 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2720 * errors here are reported as connection errors since it's impossible to
2721 * recover from such errors after the compression context has been altered.
2722 */
2723static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2724{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002725 struct buffer rxbuf = BUF_NULL;
2726 unsigned long long body_len = 0;
2727 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002728 int error;
2729
Willy Tarreau7838a792019-08-12 18:42:03 +02002730 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2731
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002732 if (!b_size(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002733 goto fail; // empty buffer
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002734
2735 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002736 goto fail; // incomplete frame
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002737
Christopher Faulet6884aa32019-09-23 15:28:20 +02002738 if (h2s->st != H2_SS_CLOSED) {
2739 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len);
2740 }
2741 else {
2742 /* the connection was already killed by an RST, let's consume
2743 * the data and send another RST.
2744 */
2745 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002746 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002747 h2c->st0 = H2_CS_FRAME_E;
2748 goto send_rst;
2749 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002750
Willy Tarreau25919232019-01-03 14:48:18 +01002751 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002752 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002753 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002754
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002755 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2756 /* RFC7540#5.1 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002757 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 +01002758 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2759 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreaua3075282020-12-01 10:22:43 +01002760 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02002761 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002762 }
2763
Willy Tarreau25919232019-01-03 14:48:18 +01002764 if (error <= 0) {
2765 if (error == 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002766 goto fail; // missing data
Willy Tarreau25919232019-01-03 14:48:18 +01002767
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002768 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002769 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 +01002770 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002771 h2c->st0 = H2_CS_FRAME_E;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002772 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02002773 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002774 }
2775
Christopher Fauletfa922f02019-05-07 10:55:17 +02002776 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002777 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002778
Willy Tarreau927b88b2019-03-04 08:03:25 +01002779 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002780 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002781 else if (h2s->flags & H2_SF_ES_RCVD) {
2782 if (h2s->st == H2_SS_OPEN)
2783 h2s->st = H2_SS_HREM;
2784 else if (h2s->st == H2_SS_HLOC)
2785 h2s_close(h2s);
2786 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002787
Willy Tarreau022e5e52020-09-10 09:33:15 +02002788 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 +02002789 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002790 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002791 fail:
2792 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2793 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002794
2795 send_rst:
2796 /* make the demux send an RST for the current stream. We may only
2797 * do this if we're certain that the HEADERS frame was properly
2798 * decompressed so that the HPACK decoder is still kept up to date.
2799 */
2800 h2_release_buf(h2c, &rxbuf);
2801 h2c->st0 = H2_CS_FRAME_E;
2802
Willy Tarreau022e5e52020-09-10 09:33:15 +02002803 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 +02002804 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2805 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002806}
2807
Willy Tarreau454f9052017-10-26 19:40:35 +02002808/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2809 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2810 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01002811static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02002812{
2813 int error;
2814
Willy Tarreau7838a792019-08-12 18:42:03 +02002815 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2816
Willy Tarreau454f9052017-10-26 19:40:35 +02002817 /* note that empty DATA frames are perfectly valid and sometimes used
2818 * to signal an end of stream (with the ES flag).
2819 */
2820
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002821 if (!b_size(&h2c->dbuf) && h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002822 goto fail; // empty buffer
Willy Tarreau454f9052017-10-26 19:40:35 +02002823
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002824 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002825 goto fail; // incomplete frame
Willy Tarreau454f9052017-10-26 19:40:35 +02002826
2827 /* now either the frame is complete or the buffer is complete */
2828
Willy Tarreau454f9052017-10-26 19:40:35 +02002829 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2830 /* RFC7540#6.1 */
2831 error = H2_ERR_STREAM_CLOSED;
2832 goto strm_err;
2833 }
2834
Christopher Faulet4f09ec82019-06-19 09:25:58 +02002835 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002836 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002837 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 +01002838 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002839 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002840 goto strm_err;
2841 }
2842
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002843 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02002844 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002845
Willy Tarreau454f9052017-10-26 19:40:35 +02002846 /* call the upper layers to process the frame, then let the upper layer
2847 * notify the stream about any change.
2848 */
2849 if (!h2s->cs) {
Willy Tarreau082c4572019-08-06 10:11:02 +02002850 /* The upper layer has already closed, this may happen on
2851 * 4xx/redirects during POST, or when receiving a response
2852 * from an H2 server after the client has aborted.
2853 */
2854 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002855 goto strm_err;
2856 }
2857
Willy Tarreau8f650c32017-11-21 19:36:21 +01002858 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002859 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01002860
Willy Tarreau721c9742017-11-07 11:05:42 +01002861 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002862 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002863 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002864 }
2865
2866 /* check for completion : the callee will change this to FRAME_A or
2867 * FRAME_H once done.
2868 */
2869 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02002870 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02002871
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002872 /* last frame */
2873 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002874 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002875 if (h2s->st == H2_SS_OPEN)
2876 h2s->st = H2_SS_HREM;
2877 else
2878 h2s_close(h2s);
2879
Willy Tarreau1915ca22019-01-24 11:49:37 +01002880 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
2881 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002882 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 +01002883 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002884 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002885 goto strm_err;
2886 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002887 }
2888
Willy Tarreau7838a792019-08-12 18:42:03 +02002889 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02002890 return 1;
2891
Willy Tarreau454f9052017-10-26 19:40:35 +02002892 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002893 h2s_error(h2s, error);
2894 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002895 fail:
2896 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 +02002897 return 0;
2898}
2899
Willy Tarreau63864812019-08-07 14:25:20 +02002900/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
2901 * valid for the current stream state. This is needed only after parsing the
2902 * frame header but in practice it can be performed at any time during
2903 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
2904 * or 0 in case of error, in which case either h2s or h2c will carry an error.
2905 */
2906static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
2907{
Willy Tarreau7838a792019-08-12 18:42:03 +02002908 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
2909
Willy Tarreau63864812019-08-07 14:25:20 +02002910 if (h2s->st == H2_SS_IDLE &&
2911 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
2912 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
2913 * this state MUST be treated as a connection error
2914 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002915 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 +02002916 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002917 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02002918 /* only log if no other stream can report the error */
2919 sess_log(h2c->conn->owner);
2920 }
Willy Tarreaua3075282020-12-01 10:22:43 +01002921 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02002922 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 +02002923 return 0;
2924 }
2925
Willy Tarreau57a18162019-11-24 14:57:53 +01002926 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
2927 /* only PUSH_PROMISE would be permitted here */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002928 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 +01002929 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua3075282020-12-01 10:22:43 +01002930 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau57a18162019-11-24 14:57:53 +01002931 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
2932 return 0;
2933 }
2934
Willy Tarreau63864812019-08-07 14:25:20 +02002935 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
2936 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
2937 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
2938 * this state MUST be treated as a stream error.
2939 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
2940 * PUSH_PROMISE/CONTINUATION cause connection errors.
2941 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01002942 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002943 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 +02002944 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua3075282020-12-01 10:22:43 +01002945 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Amaury Denoyellea8879232020-10-27 17:16:03 +01002946 }
2947 else {
Willy Tarreau63864812019-08-07 14:25:20 +02002948 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01002949 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002950 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 +02002951 return 0;
2952 }
2953
2954 /* Below the management of frames received in closed state is a
2955 * bit hackish because the spec makes strong differences between
2956 * streams closed by receiving RST, sending RST, and seeing ES
2957 * in both directions. In addition to this, the creation of a
2958 * new stream reusing the identifier of a closed one will be
2959 * detected here. Given that we cannot keep track of all closed
2960 * streams forever, we consider that unknown closed streams were
2961 * closed on RST received, which allows us to respond with an
2962 * RST without breaking the connection (eg: to abort a transfer).
2963 * Some frames have to be silently ignored as well.
2964 */
2965 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
2966 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
2967 /* #5.1.1: The identifier of a newly
2968 * established stream MUST be numerically
2969 * greater than all streams that the initiating
2970 * endpoint has opened or reserved. This
2971 * governs streams that are opened using a
2972 * HEADERS frame and streams that are reserved
2973 * using PUSH_PROMISE. An endpoint that
2974 * receives an unexpected stream identifier
2975 * MUST respond with a connection error.
2976 */
2977 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02002978 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 +02002979 return 0;
2980 }
2981
Willy Tarreau4c08f122019-09-26 08:47:15 +02002982 if (h2s->flags & H2_SF_RST_RCVD &&
2983 !(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 +02002984 /* RFC7540#5.1:closed: an endpoint that
2985 * receives any frame other than PRIORITY after
2986 * receiving a RST_STREAM MUST treat that as a
2987 * stream error of type STREAM_CLOSED.
2988 *
2989 * Note that old streams fall into this category
2990 * and will lead to an RST being sent.
2991 *
2992 * However, we cannot generalize this to all frame types. Those
2993 * carrying compression state must still be processed before
2994 * being dropped or we'll desynchronize the decoder. This can
2995 * happen with request trailers received after sending an
2996 * RST_STREAM, or with header/trailers responses received after
2997 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02002998 *
2999 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003000 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003001 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003002 */
3003 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3004 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003005 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 +02003006 return 0;
3007 }
3008
3009 /* RFC7540#5.1:closed: if this state is reached as a
3010 * result of sending a RST_STREAM frame, the peer that
3011 * receives the RST_STREAM might have already sent
3012 * frames on the stream that cannot be withdrawn. An
3013 * endpoint MUST ignore frames that it receives on
3014 * closed streams after it has sent a RST_STREAM
3015 * frame. An endpoint MAY choose to limit the period
3016 * over which it ignores frames and treat frames that
3017 * arrive after this time as being in error.
3018 */
3019 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3020 /* RFC7540#5.1:closed: any frame other than
3021 * PRIO/WU/RST in this state MUST be treated as
3022 * a connection error
3023 */
3024 if (h2c->dft != H2_FT_RST_STREAM &&
3025 h2c->dft != H2_FT_PRIORITY &&
3026 h2c->dft != H2_FT_WINDOW_UPDATE) {
3027 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003028 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 +02003029 return 0;
3030 }
3031 }
3032 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003033 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003034 return 1;
3035}
3036
Willy Tarreaubc933932017-10-09 16:21:43 +02003037/* process Rx frames to be demultiplexed */
3038static void h2_process_demux(struct h2c *h2c)
3039{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003040 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003041 struct h2_fh hdr;
3042 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003043 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003044
Willy Tarreau7838a792019-08-12 18:42:03 +02003045 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3046
Willy Tarreau081d4722017-05-16 21:51:05 +02003047 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003048 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003049
3050 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3051 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003052 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003053 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003054 goto out;
3055
Willy Tarreau52eed752017-09-22 15:05:09 +02003056 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3057 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003058 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003059 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003060 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003061 sess_log(h2c->conn->owner);
3062 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003063 goto fail;
3064 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003065 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003066
3067 h2c->max_id = 0;
3068 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003069 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003070 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003071
3072 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003073 /* ensure that what is pending is a valid SETTINGS frame
3074 * without an ACK.
3075 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003076 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 +02003077 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003078 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003079 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003080 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 +02003081 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003082 if (!(h2c->flags & H2_CF_IS_BACK))
3083 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003084 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003085 goto fail;
3086 }
3087
3088 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3089 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003090 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 +02003091 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3092 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003093 if (!(h2c->flags & H2_CF_IS_BACK))
3094 sess_log(h2c->conn->owner);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003095 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003096 goto fail;
3097 }
3098
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003099 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003100 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003101 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 +02003102 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3103 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003104 if (!(h2c->flags & H2_CF_IS_BACK))
3105 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003106 goto fail;
3107 }
3108
Willy Tarreau3bf69182018-12-21 15:34:50 +01003109 /* that's OK, switch to FRAME_P to process it. This is
3110 * a SETTINGS frame whose header has already been
3111 * deleted above.
3112 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003113 padlen = 0;
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003114 HA_ATOMIC_ADD(&h2c->px_counters->settings_rcvd, 1);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003115 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003116 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003117 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003118
3119 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003120 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003121 int ret = 0;
3122
Willy Tarreau7838a792019-08-12 18:42:03 +02003123 if (!b_data(&h2c->dbuf)) {
3124 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
3125 break;
3126 }
3127
3128 if (h2c->st0 >= H2_CS_ERROR) {
3129 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003130 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003131 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003132
3133 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau30d05f32019-08-06 15:49:51 +02003134 h2c->rcvd_s = 0;
3135
Willy Tarreau7838a792019-08-12 18:42:03 +02003136 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Willy Tarreaua4428bd2018-12-22 18:11:41 +01003137 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr))
Willy Tarreau7e98c052017-10-10 15:56:59 +02003138 break;
3139
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003140 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003141 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 +02003142 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003143 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003144 /* only log if no other stream can report the error */
3145 sess_log(h2c->conn->owner);
3146 }
Willy Tarreaua3075282020-12-01 10:22:43 +01003147 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003148 break;
3149 }
3150
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003151 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003152 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3153 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3154 * we read the pad length and drop it from the remaining
3155 * payload (one byte + the 9 remaining ones = 10 total
3156 * removed), so we have a frame payload starting after the
3157 * pad len. Flow controlled frames (DATA) also count the
3158 * padlen in the flow control, so it must be adjusted.
3159 */
3160 if (hdr.len < 1) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003161 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 +01003162 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003163 if (!(h2c->flags & H2_CF_IS_BACK))
3164 sess_log(h2c->conn->owner);
Willy Tarreaua3075282020-12-01 10:22:43 +01003165 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau3bf69182018-12-21 15:34:50 +01003166 goto fail;
3167 }
3168 hdr.len--;
3169
3170 if (b_data(&h2c->dbuf) < 10)
3171 break; // missing padlen
3172
3173 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3174
3175 if (padlen > hdr.len) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003176 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 +01003177 /* RFC7540#6.1 : pad length = length of
3178 * frame payload or greater => error.
3179 */
3180 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003181 if (!(h2c->flags & H2_CF_IS_BACK))
3182 sess_log(h2c->conn->owner);
Willy Tarreaua3075282020-12-01 10:22:43 +01003183 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau3bf69182018-12-21 15:34:50 +01003184 goto fail;
3185 }
3186
3187 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3188 h2c->rcvd_c++;
3189 h2c->rcvd_s++;
3190 }
3191 b_del(&h2c->dbuf, 1);
3192 }
3193 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003194
3195 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003196 h2c->dfl = hdr.len;
3197 h2c->dsi = hdr.sid;
3198 h2c->dft = hdr.ft;
3199 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003200 h2c->dpl = padlen;
Willy Tarreau73db4342019-09-25 07:28:44 +02003201 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 +02003202 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003203
3204 /* check for minimum basic frame format validity */
3205 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3206 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003207 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 +01003208 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003209 if (!(h2c->flags & H2_CF_IS_BACK))
3210 sess_log(h2c->conn->owner);
Willy Tarreaua3075282020-12-01 10:22:43 +01003211 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003212 goto fail;
3213 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003214 }
3215
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003216 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3217 * H2_CS_FRAME_P indicates an incomplete previous operation
3218 * (most often the first attempt) and requires some validity
3219 * checks for the frame and the current state. The two other
3220 * ones are set after completion (or abortion) and must skip
3221 * validity checks.
3222 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003223 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3224
Willy Tarreau567beb82018-12-18 16:52:44 +01003225 if (tmp_h2s != h2s && h2s && h2s->cs &&
3226 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003227 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003228 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003229 (h2s->flags & H2_SF_ES_RCVD) ||
3230 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003231 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003232 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 +01003233 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003234 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003235 }
3236 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003237
Willy Tarreau63864812019-08-07 14:25:20 +02003238 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003239 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3240 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003241 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003242 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003243
Willy Tarreau7e98c052017-10-10 15:56:59 +02003244 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003245 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003246 if (h2c->st0 == H2_CS_FRAME_P) {
3247 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003248 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003249 }
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003250 HA_ATOMIC_ADD(&h2c->px_counters->settings_rcvd, 1);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003251
Willy Tarreau7838a792019-08-12 18:42:03 +02003252 if (h2c->st0 == H2_CS_FRAME_A) {
3253 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 +02003254 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003255 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003256 break;
3257
Willy Tarreaucf68c782017-10-10 17:11:41 +02003258 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003259 if (h2c->st0 == H2_CS_FRAME_P) {
3260 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003261 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003262 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003263
Willy Tarreau7838a792019-08-12 18:42:03 +02003264 if (h2c->st0 == H2_CS_FRAME_A) {
3265 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 +02003266 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003267 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003268 break;
3269
Willy Tarreau26f95952017-07-27 17:18:30 +02003270 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003271 if (h2c->st0 == H2_CS_FRAME_P) {
3272 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 +02003273 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003274 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003275 break;
3276
Willy Tarreau61290ec2017-10-17 08:19:21 +02003277 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003278 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003279 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3280 * frames' parsers consume all following CONTINUATION
3281 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003282 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003283 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 +01003284 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003285 if (!(h2c->flags & H2_CF_IS_BACK))
3286 sess_log(h2c->conn->owner);
Willy Tarreaua3075282020-12-01 10:22:43 +01003287 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreauea18f862018-12-22 20:19:26 +01003288 goto fail;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003289
Willy Tarreau13278b42017-10-13 19:23:14 +02003290 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003291 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003292 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003293 if (h2c->flags & H2_CF_IS_BACK)
3294 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3295 else
3296 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003297 if (tmp_h2s) {
3298 h2s = tmp_h2s;
3299 ret = 1;
3300 }
3301 }
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003302 HA_ATOMIC_ADD(&h2c->px_counters->headers_rcvd, 1);
Willy Tarreau13278b42017-10-13 19:23:14 +02003303 break;
3304
Willy Tarreau454f9052017-10-26 19:40:35 +02003305 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003306 if (h2c->st0 == H2_CS_FRAME_P) {
3307 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003308 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003309 }
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003310 HA_ATOMIC_ADD(&h2c->px_counters->data_rcvd, 1);
Willy Tarreau454f9052017-10-26 19:40:35 +02003311
Willy Tarreau7838a792019-08-12 18:42:03 +02003312 if (h2c->st0 == H2_CS_FRAME_A) {
3313 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 +02003314 ret = h2c_send_strm_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003315 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003316 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003317
Willy Tarreau92153fc2017-12-03 19:46:19 +01003318 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003319 if (h2c->st0 == H2_CS_FRAME_P) {
3320 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003321 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003322 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003323 break;
3324
Willy Tarreaucd234e92017-08-18 10:59:39 +02003325 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003326 if (h2c->st0 == H2_CS_FRAME_P) {
3327 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 +02003328 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003329 }
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003330 HA_ATOMIC_ADD(&h2c->px_counters->rst_stream_rcvd, 1);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003331 break;
3332
Willy Tarreaue96b0922017-10-30 00:28:29 +01003333 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003334 if (h2c->st0 == H2_CS_FRAME_P) {
3335 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003336 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003337 }
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003338 HA_ATOMIC_ADD(&h2c->px_counters->goaway_rcvd, 1);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003339 break;
3340
Willy Tarreau1c661982017-10-30 13:52:01 +01003341 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003342 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003343 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003344 /* drop frames that we ignore. They may be larger than
3345 * the buffer so we drain all of their contents until
3346 * we reach the end.
3347 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003348 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3349 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003350 h2c->dfl -= ret;
3351 ret = h2c->dfl == 0;
3352 }
3353
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003354 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003355 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003356 if (h2s->st == H2_SS_ERROR) {
3357 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 +01003358 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003359 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003360
Willy Tarreau7838a792019-08-12 18:42:03 +02003361 if (h2c->st0 == H2_CS_FRAME_E) {
3362 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 +01003363 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003364 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003365
Willy Tarreau7e98c052017-10-10 15:56:59 +02003366 /* error or missing data condition met above ? */
Willy Tarreau7838a792019-08-12 18:42:03 +02003367 if (ret <= 0) {
3368 TRACE_DEVEL("insufficient data to proceed", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003369 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003370 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003371
3372 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003373 if (h2c->dfl)
3374 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003375 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3376 b_del(&h2c->dbuf, ret);
3377 h2c->dfl -= ret;
3378 if (!h2c->dfl) {
3379 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3380 h2c->st0 = H2_CS_FRAME_H;
3381 h2c->dsi = -1;
3382 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003383 }
3384 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003385
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003386 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003387 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3388 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003389 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003390 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003391
Willy Tarreau52eed752017-09-22 15:05:09 +02003392 fail:
3393 /* we can go here on missing data, blocked response or error */
Willy Tarreau567beb82018-12-18 16:52:44 +01003394 if (h2s && h2s->cs &&
3395 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003396 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003397 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003398 (h2s->flags & H2_SF_ES_RCVD) ||
3399 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003400 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003401 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 +01003402 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003403 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003404 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003405
Willy Tarreau7838a792019-08-12 18:42:03 +02003406 if (old_iw != h2c->miw) {
3407 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003408 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003409 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003410
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003411 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003412 out:
3413 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreaubc933932017-10-09 16:21:43 +02003414}
3415
Willy Tarreau989539b2020-01-10 17:01:29 +01003416/* resume each h2s eligible for sending in list head <head> */
3417static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3418{
3419 struct h2s *h2s, *h2s_back;
3420
3421 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3422
3423 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3424 if (h2c->mws <= 0 ||
3425 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3426 h2c->st0 >= H2_CS_ERROR)
3427 break;
3428
3429 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003430
Willy Tarreaud9464162020-01-10 18:25:07 +01003431 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003432 continue;
3433
Willy Tarreau5723f292020-01-10 15:16:57 +01003434 /* If the sender changed his mind and unsubscribed, let's just
3435 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003436 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003437 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3438 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003439 LIST_DEL_INIT(&h2s->list);
3440 continue;
3441 }
3442
Willy Tarreauf96508a2020-01-10 11:12:48 +01003443 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003444 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003445 tasklet_wakeup(h2s->subs->tasklet);
3446 h2s->subs->events &= ~SUB_RETRY_SEND;
3447 if (!h2s->subs->events)
3448 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003449 }
3450 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3451 tasklet_wakeup(h2s->shut_tl);
3452 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003453 }
3454
3455 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3456}
3457
Willy Tarreaubc933932017-10-09 16:21:43 +02003458/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3459 * the end.
3460 */
3461static int h2_process_mux(struct h2c *h2c)
3462{
Willy Tarreau7838a792019-08-12 18:42:03 +02003463 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3464
Willy Tarreau01b44822018-10-03 14:26:37 +02003465 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3466 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3467 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3468 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003469 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003470 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003471 goto fail;
3472 }
3473 h2c->st0 = H2_CS_SETTINGS1;
3474 }
3475 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003476 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003477 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003478 }
3479
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003480 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003481 if (h2c->rcvd_s > 0 &&
3482 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3483 h2c_send_strm_wu(h2c) < 0)
3484 goto fail;
3485
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003486 if (h2c->rcvd_c > 0 &&
3487 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3488 h2c_send_conn_wu(h2c) < 0)
3489 goto fail;
3490
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003491 /* First we always process the flow control list because the streams
3492 * waiting there were already elected for immediate emission but were
3493 * blocked just on this.
3494 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003495 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3496 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003497
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003498 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003499 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003500 if (h2c->st0 == H2_CS_ERROR) {
3501 if (h2c->max_id >= 0) {
3502 h2c_send_goaway_error(h2c, NULL);
3503 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003504 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003505 }
3506
3507 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3508 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003509 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003510 done:
3511 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3512 return 1;
3513 out0:
3514 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3515 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003516}
3517
Willy Tarreau62f52692017-10-08 23:01:42 +02003518
Willy Tarreau479998a2018-11-18 06:30:59 +01003519/* Attempt to read data, and subscribe if none available.
3520 * The function returns 1 if data has been received, otherwise zero.
3521 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003522static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003523{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003524 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003525 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003526 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003527 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003528
Willy Tarreau7838a792019-08-12 18:42:03 +02003529 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3530
3531 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3532 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003533 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003534 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003535
Willy Tarreau7838a792019-08-12 18:42:03 +02003536 if (!h2_recv_allowed(h2c)) {
3537 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003538 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003539 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003540
Willy Tarreau44e973f2018-03-01 17:49:30 +01003541 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003542 if (!buf) {
3543 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003544 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003545 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003546 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003547
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003548 b_realign_if_empty(buf);
3549 if (!b_data(buf)) {
3550 /* try to pre-align the buffer like the
3551 * rxbufs will be to optimize memory copies. We'll make
3552 * sure that the frame header lands at the end of the
3553 * HTX block to alias it upon recv. We cannot use the
3554 * head because rcv_buf() will realign the buffer if
3555 * it's empty. Thus we cheat and pretend we already
3556 * have a few bytes there.
3557 */
3558 max = buf_room_for_htx_data(buf) + 9;
3559 buf->head = sizeof(struct htx) - 9;
3560 }
3561 else
3562 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003563
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003564 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003565
Willy Tarreau7838a792019-08-12 18:42:03 +02003566 if (max && !ret && h2_recv_allowed(h2c)) {
3567 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003568 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003569 } else if (ret)
Willy Tarreau022e5e52020-09-10 09:33:15 +02003570 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003571
Olivier Houcharda1411e62018-08-17 18:42:48 +02003572 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003573 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003574 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003575 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003576 }
3577
Willy Tarreau7838a792019-08-12 18:42:03 +02003578 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003579 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003580 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003581 }
3582
3583 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003584 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003585}
3586
Willy Tarreau479998a2018-11-18 06:30:59 +01003587/* Try to send data if possible.
3588 * The function returns 1 if data have been sent, otherwise zero.
3589 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003590static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003591{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003592 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003593 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003594 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003595
Willy Tarreau7838a792019-08-12 18:42:03 +02003596 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003597
Willy Tarreau7838a792019-08-12 18:42:03 +02003598 if (conn->flags & CO_FL_ERROR) {
3599 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3600 return 1;
3601 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003602
Willy Tarreau911db9b2020-01-23 16:27:54 +01003603 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003604 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003605 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003606 }
3607
Willy Tarreaubc933932017-10-09 16:21:43 +02003608 /* This loop is quite simple : it tries to fill as much as it can from
3609 * pending streams into the existing buffer until it's reportedly full
3610 * or the end of send requests is reached. Then it tries to send this
3611 * buffer's contents out, marks it not full if at least one byte could
3612 * be sent, and tries again.
3613 *
3614 * The snd_buf() function normally takes a "flags" argument which may
3615 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3616 * data immediately comes and CO_SFL_STREAMER to indicate that the
3617 * connection is streaming lots of data (used to increase TLS record
3618 * size at the expense of latency). The former can be sent any time
3619 * there's a buffer full flag, as it indicates at least one stream
3620 * attempted to send and failed so there are pending data. An
3621 * alternative would be to set it as long as there's an active stream
3622 * but that would be problematic for ACKs until we have an absolute
3623 * guarantee that all waiters have at least one byte to send. The
3624 * latter should possibly not be set for now.
3625 */
3626
3627 done = 0;
3628 while (!done) {
3629 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003630 unsigned int released = 0;
3631 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003632
3633 /* fill as much as we can into the current buffer */
3634 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3635 done = h2_process_mux(h2c);
3636
Olivier Houchard2b094432019-01-29 18:28:36 +01003637 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003638 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003639
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003640 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
3641 (h2c->st0 == H2_CS_ERROR2) || (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003642 break;
3643
3644 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3645 flags |= CO_SFL_MSG_MORE;
3646
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003647 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3648 if (b_data(buf)) {
3649 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003650 if (!ret) {
3651 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003652 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003653 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003654 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003655 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003656 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003657 if (b_data(buf)) {
3658 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003659 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003660 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003661 }
3662 b_free(buf);
3663 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003664 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003665
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003666 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02003667 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003668
Willy Tarreaubc933932017-10-09 16:21:43 +02003669 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003670 if (sent)
3671 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003672 }
3673
Willy Tarreaua2af5122017-10-09 11:56:46 +02003674 if (conn->flags & CO_FL_SOCK_WR_SH) {
3675 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003676 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003677 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003678 /* We're not full anymore, so we can wake any task that are waiting
3679 * for us.
3680 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003681 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3682 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003683
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003684 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003685 if (!br_data(h2c->mbuf)) {
3686 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003687 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003688 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003689schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003690 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3691 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003692 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003693 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003694
Willy Tarreau7838a792019-08-12 18:42:03 +02003695 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003696 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003697}
3698
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003699/* this is the tasklet referenced in h2c->wait_event.tasklet */
Willy Tarreau691d5032021-01-20 14:55:01 +01003700struct task *h2_io_cb(struct task *t, void *ctx, unsigned short status)
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003701{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003702 struct connection *conn;
3703 struct tasklet *tl = (struct tasklet *)t;
3704 int conn_in_list;
3705 struct h2c *h2c;
Olivier Houchard7505f942018-08-21 18:10:44 +02003706 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003707
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003708
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003709 HA_SPIN_LOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003710 if (t->context == NULL) {
3711 /* The connection has been taken over by another thread,
3712 * we're no longer responsible for it, so just free the
3713 * tasklet, and do nothing.
3714 */
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003715 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003716 tasklet_free(tl);
Willy Tarreau38468772020-06-28 00:31:13 +02003717 goto leave;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003718 }
3719 h2c = ctx;
3720 conn = h2c->conn;
3721
3722 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3723
3724 conn_in_list = conn->flags & CO_FL_LIST_MASK;
3725
3726 /* Remove the connection from the list, to be sure nobody attempts
3727 * to use it while we handle the I/O events
3728 */
3729 if (conn_in_list)
3730 MT_LIST_DEL(&conn->list);
3731
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003732 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreau7838a792019-08-12 18:42:03 +02003733
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003734 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003735 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003736 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003737 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003738 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003739 ret = h2_process(h2c);
3740
3741 /* If we were in an idle list, we want to add it back into it,
3742 * unless h2_process() returned -1, which mean it has destroyed
3743 * the connection (testing !ret is enough, if h2_process() wasn't
3744 * called then ret will be 0 anyway.
3745 */
3746 if (!ret && conn_in_list) {
3747 struct server *srv = objt_server(conn->target);
3748
3749 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreaua9d7b762020-07-10 08:28:20 +02003750 MT_LIST_ADDQ(&srv->safe_conns[tid], &conn->list);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003751 else
Willy Tarreaua9d7b762020-07-10 08:28:20 +02003752 MT_LIST_ADDQ(&srv->idle_conns[tid], &conn->list);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003753 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003754
Willy Tarreau38468772020-06-28 00:31:13 +02003755leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02003756 TRACE_LEAVE(H2_EV_H2C_WAKE);
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003757 return NULL;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003758}
Willy Tarreaua2af5122017-10-09 11:56:46 +02003759
Willy Tarreau62f52692017-10-08 23:01:42 +02003760/* callback called on any event by the connection handler.
3761 * It applies changes and returns zero, or < 0 if it wants immediate
3762 * destruction of the connection (which normally doesn not happen in h2).
3763 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003764static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003765{
Olivier Houchard7505f942018-08-21 18:10:44 +02003766 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003767
Willy Tarreau7838a792019-08-12 18:42:03 +02003768 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3769
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003770 if (b_data(&h2c->dbuf) && !(h2c->flags & H2_CF_DEM_BLOCK_ANY)) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003771 h2_process_demux(h2c);
3772
3773 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003774 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003775
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003776 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003777 h2c->flags &= ~H2_CF_DEM_DFULL;
3778 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003779 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003780
Willy Tarreaub1e600c2020-10-13 18:09:15 +02003781 if (unlikely(h2c->proxy->disabled) && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01003782 /* frontend is stopping, reload likely in progress, let's try
3783 * to announce a graceful shutdown if not yet done. We don't
3784 * care if it fails, it will be tried again later.
3785 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003786 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
Willy Tarreau8ec14062017-12-30 18:08:13 +01003787 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3788 if (h2c->last_sid < 0)
3789 h2c->last_sid = (1U << 31) - 1;
3790 h2c_send_goaway_error(h2c, NULL);
3791 }
3792 }
3793
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003794 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003795 * If we received early data, and the handshake is done, wake
3796 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003797 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003798 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01003799 (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 +01003800 struct eb32_node *node;
3801 struct h2s *h2s;
3802
3803 h2c->flags |= H2_CF_WAIT_FOR_HS;
3804 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
3805
3806 while (node) {
3807 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01003808 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01003809 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003810 node = eb32_next(node);
3811 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003812 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003813
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003814 if (conn->flags & CO_FL_ERROR || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01003815 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
3816 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
3817 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02003818 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003819
3820 if (eb_is_empty(&h2c->streams_by_id)) {
3821 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003822 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003823 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003824 return -1;
3825 }
Willy Tarreau4481e262019-10-31 15:36:30 +01003826
3827 /* connections in error must be removed from the idle lists */
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003828 HA_SPIN_LOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreau4481e262019-10-31 15:36:30 +01003829 MT_LIST_DEL((struct mt_list *)&conn->list);
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003830 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreau4481e262019-10-31 15:36:30 +01003831 }
3832 else if (h2c->st0 == H2_CS_ERROR) {
3833 /* connections in error must be removed from the idle lists */
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003834 HA_SPIN_LOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreau4481e262019-10-31 15:36:30 +01003835 MT_LIST_DEL((struct mt_list *)&conn->list);
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003836 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003837 }
3838
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003839 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01003840 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003841
Olivier Houchard53216e72018-10-10 15:46:36 +02003842 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
3843 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
3844 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02003845 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02003846 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
3847 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02003848 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003849
Willy Tarreau3f133572017-10-31 19:21:06 +01003850 if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02003851 if (h2c_may_expire(h2c))
3852 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3853 else
3854 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02003855 task_queue(h2c->task);
Willy Tarreauea392822017-10-31 10:02:25 +01003856 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003857
Olivier Houchard7505f942018-08-21 18:10:44 +02003858 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003859 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003860 return 0;
3861}
3862
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003863/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003864static int h2_wake(struct connection *conn)
3865{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003866 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02003867 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003868
Willy Tarreau7838a792019-08-12 18:42:03 +02003869 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3870 ret = h2_process(h2c);
Willy Tarreau508f9892020-02-11 04:38:56 +01003871 if (ret >= 0)
3872 h2_wake_some_streams(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003873 TRACE_LEAVE(H2_EV_H2C_WAKE);
3874 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003875}
3876
Willy Tarreauea392822017-10-31 10:02:25 +01003877/* Connection timeout management. The principle is that if there's no receipt
3878 * nor sending for a certain amount of time, the connection is closed. If the
3879 * MUX buffer still has lying data or is not allocatable, the connection is
3880 * immediately killed. If it's allocatable and empty, we attempt to send a
3881 * GOAWAY frame.
3882 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02003883static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state)
Willy Tarreauea392822017-10-31 10:02:25 +01003884{
Olivier Houchard9f6af332018-05-25 14:04:04 +02003885 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01003886 int expired = tick_is_expired(t->expire, now_ms);
3887
Willy Tarreau7838a792019-08-12 18:42:03 +02003888 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
3889
Willy Tarreaubd42e922020-06-30 11:19:23 +02003890 if (h2c) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02003891 /* Make sure nobody stole the connection from us */
3892 HA_SPIN_LOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
3893
3894 /* Somebody already stole the connection from us, so we should not
3895 * free it, we just have to free the task.
3896 */
3897 if (!t->context) {
3898 h2c = NULL;
Willy Tarreau46ac7812020-07-04 07:16:18 +02003899 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02003900 goto do_leave;
3901 }
3902
3903
Willy Tarreaubd42e922020-06-30 11:19:23 +02003904 if (!expired) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02003905 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02003906 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
3907 return t;
3908 }
Willy Tarreauea392822017-10-31 10:02:25 +01003909
Willy Tarreaubd42e922020-06-30 11:19:23 +02003910 if (!h2c_may_expire(h2c)) {
3911 /* we do still have streams but all of them are idle, waiting
3912 * for the data layer, so we must not enforce the timeout here.
3913 */
Olivier Houchard48ce6a32020-07-02 11:58:05 +02003914 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02003915 t->expire = TICK_ETERNITY;
3916 return t;
3917 }
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02003918
Willy Tarreaubd42e922020-06-30 11:19:23 +02003919 /* We're about to destroy the connection, so make sure nobody attempts
3920 * to steal it from us.
3921 */
Willy Tarreaubd42e922020-06-30 11:19:23 +02003922 if (h2c->conn->flags & CO_FL_LIST_MASK)
3923 MT_LIST_DEL(&h2c->conn->list);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003924
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003925 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02003926 }
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003927
Olivier Houchard48ce6a32020-07-02 11:58:05 +02003928do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02003929 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02003930
3931 if (!h2c) {
3932 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02003933 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02003934 return NULL;
3935 }
3936
3937 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01003938 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02003939 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01003940
Willy Tarreau662fafc2019-05-26 09:43:07 +02003941 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01003942 /* don't even try to send a GOAWAY, the buffer is stuck */
3943 h2c->flags |= H2_CF_GOAWAY_FAILED;
3944 }
3945
3946 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01003947 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01003948 if (h2c_send_goaway_error(h2c, NULL) <= 0)
3949 h2c->flags |= H2_CF_GOAWAY_FAILED;
3950
Willy Tarreau662fafc2019-05-26 09:43:07 +02003951 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003952 unsigned int released = 0;
3953 struct buffer *buf;
3954
3955 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3956 if (b_data(buf)) {
3957 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
3958 if (!ret)
3959 break;
3960 b_del(buf, ret);
3961 if (b_data(buf))
3962 break;
3963 b_free(buf);
3964 released++;
3965 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02003966 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003967
3968 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02003969 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau787db9a2018-06-14 18:31:46 +02003970 }
Willy Tarreauea392822017-10-31 10:02:25 +01003971
Willy Tarreau4481e262019-10-31 15:36:30 +01003972 /* in any case this connection must not be considered idle anymore */
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003973 HA_SPIN_LOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreau4481e262019-10-31 15:36:30 +01003974 MT_LIST_DEL((struct mt_list *)&h2c->conn->list);
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003975 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreau4481e262019-10-31 15:36:30 +01003976
Willy Tarreau0975f112018-03-29 15:22:59 +02003977 /* either we can release everything now or it will be done later once
3978 * the last stream closes.
3979 */
3980 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02003981 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01003982
Willy Tarreau7838a792019-08-12 18:42:03 +02003983 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01003984 return NULL;
3985}
3986
3987
Willy Tarreau62f52692017-10-08 23:01:42 +02003988/*******************************************/
3989/* functions below are used by the streams */
3990/*******************************************/
3991
3992/*
3993 * Attach a new stream to a connection
3994 * (Used for outgoing connections)
3995 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003996static struct conn_stream *h2_attach(struct connection *conn, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02003997{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003998 struct conn_stream *cs;
3999 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004000 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004001
Willy Tarreau7838a792019-08-12 18:42:03 +02004002 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Christopher Faulet236c93b2020-07-02 09:19:54 +02004003 cs = cs_new(conn, conn->target);
Willy Tarreau7838a792019-08-12 18:42:03 +02004004 if (!cs) {
4005 TRACE_DEVEL("leaving on CS allocation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004006 return NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004007 }
Olivier Houchardf502aca2018-12-14 19:42:40 +01004008 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004009 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004010 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004011 cs_free(cs);
4012 return NULL;
4013 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004014 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004015 return cs;
Willy Tarreau62f52692017-10-08 23:01:42 +02004016}
4017
Willy Tarreaufafd3982018-11-18 21:29:20 +01004018/* Retrieves the first valid conn_stream from this connection, or returns NULL.
4019 * We have to scan because we may have some orphan streams. It might be
4020 * beneficial to scan backwards from the end to reduce the likeliness to find
4021 * orphans.
4022 */
4023static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
4024{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004025 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004026 struct h2s *h2s;
4027 struct eb32_node *node;
4028
4029 node = eb32_first(&h2c->streams_by_id);
4030 while (node) {
4031 h2s = container_of(node, struct h2s, by_id);
4032 if (h2s->cs)
4033 return h2s->cs;
4034 node = eb32_next(node);
4035 }
4036 return NULL;
4037}
4038
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004039static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4040{
4041 int ret = 0;
4042 struct h2c *h2c = conn->ctx;
4043
4044 switch (mux_ctl) {
4045 case MUX_STATUS:
4046 /* Only consider the mux to be ready if we're done with
4047 * the preface and settings, and we had no error.
4048 */
4049 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4050 ret |= MUX_STATUS_READY;
4051 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02004052 case MUX_EXIT_STATUS:
4053 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004054 default:
4055 return -1;
4056 }
4057}
4058
Willy Tarreau62f52692017-10-08 23:01:42 +02004059/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004060 * Destroy the mux and the associated connection, if it is no longer used
4061 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004062static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004063{
Christopher Faulet73c12072019-04-08 11:23:22 +02004064 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004065
Willy Tarreau7838a792019-08-12 18:42:03 +02004066 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02004067 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02004068 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004069 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004070}
4071
4072/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004073 * Detach the stream from the connection and possibly release the connection.
4074 */
4075static void h2_detach(struct conn_stream *cs)
4076{
Willy Tarreau60935142017-10-16 18:11:19 +02004077 struct h2s *h2s = cs->ctx;
4078 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004079 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004080
Willy Tarreau7838a792019-08-12 18:42:03 +02004081 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4082
Willy Tarreau60935142017-10-16 18:11:19 +02004083 cs->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004084 if (!h2s) {
4085 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004086 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004087 }
Willy Tarreau60935142017-10-16 18:11:19 +02004088
Willy Tarreaud9464162020-01-10 18:25:07 +01004089 /* there's no txbuf so we're certain not to be able to send anything */
4090 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004091
Olivier Houchardf502aca2018-12-14 19:42:40 +01004092 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004093 h2c = h2s->h2c;
4094 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02004095 h2c->nb_cs--;
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004096 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
4097 !h2_frt_has_too_many_cs(h2c)) {
4098 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004099 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004100 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004101 }
Willy Tarreau60935142017-10-16 18:11:19 +02004102
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004103 /* this stream may be blocked waiting for some data to leave (possibly
4104 * an ES or RST frame), so orphan it in this case.
4105 */
Willy Tarreau3041fcc2018-03-29 15:41:32 +02004106 if (!(cs->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004107 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004108 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004109 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004110 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004111 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004112 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004113
Willy Tarreau45f752e2017-10-30 15:44:59 +01004114 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
4115 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
4116 /* unblock the connection if it was blocked on this
4117 * stream.
4118 */
4119 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4120 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004121 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004122 }
4123
Willy Tarreau71049cc2018-03-28 13:56:39 +02004124 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004125
Christopher Faulet9b79a102019-07-15 11:22:56 +02004126 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01004127 if (!(h2c->conn->flags &
4128 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004129 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004130 /* Add the connection in the session server list, if not already done */
4131 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4132 h2c->conn->owner = NULL;
4133 if (eb_is_empty(&h2c->streams_by_id)) {
4134 h2c->conn->mux->destroy(h2c);
4135 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4136 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004137 }
4138 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004139 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004140 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4141 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4142 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004143 return;
4144 }
4145 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004146 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004147 else {
4148 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004149 /* If the connection is owned by the session, first remove it
4150 * from its list
4151 */
4152 if (h2c->conn->owner) {
4153 session_unown_conn(h2c->conn->owner, h2c->conn);
4154 h2c->conn->owner = NULL;
4155 }
4156
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004157 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004158 /* The server doesn't want it, let's kill the connection right away */
4159 h2c->conn->mux->destroy(h2c);
4160 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4161 return;
4162 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004163 /* At this point, the connection has been added to the
4164 * server idle list, so another thread may already have
4165 * hijacked it, so we can't do anything with it.
4166 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004167 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4168 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004169
Olivier Houchard8a786902018-12-15 16:05:40 +01004170 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004171 else if (MT_LIST_ISEMPTY(&h2c->conn->list) &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004172 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
4173 !LIST_ADDED(&h2c->conn->session_list)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004174 LIST_ADD(&__objt_server(h2c->conn->target)->available_conns[tid], mt_list_to_list(&h2c->conn->list));
4175 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004176 }
4177 }
4178 }
4179
Willy Tarreaue323f342018-03-28 13:51:45 +02004180 /* We don't want to close right now unless we're removing the
4181 * last stream, and either the connection is in error, or it
4182 * reached the ID already specified in a GOAWAY frame received
4183 * or sent (as seen by last_sid >= 0).
4184 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004185 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004186 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004187 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004188 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004189 }
4190 else if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004191 if (h2c_may_expire(h2c))
4192 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
4193 else
4194 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02004195 task_queue(h2c->task);
Willy Tarreau7838a792019-08-12 18:42:03 +02004196 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004197 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004198 else
4199 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004200}
4201
Willy Tarreau88bdba32019-05-13 18:17:53 +02004202/* Performs a synchronous or asynchronous shutr(). */
4203static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004204{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004205 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004206
Willy Tarreauf983d002019-05-14 10:40:21 +02004207 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004208 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004209
Willy Tarreau7838a792019-08-12 18:42:03 +02004210 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4211
Willy Tarreau18059042019-01-31 19:12:48 +01004212 /* a connstream may require us to immediately kill the whole connection
4213 * for example because of a "tcp-request content reject" rule that is
4214 * normally used to limit abuse. In this case we schedule a goaway to
4215 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004216 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004217 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004218 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004219 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004220 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4221 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4222 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004223 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4224 /* Nothing was never sent for this stream, so reset with
4225 * REFUSED_STREAM error to let the client retry the
4226 * request.
4227 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004228 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004229 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4230 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004231 else {
4232 /* a final response was already provided, we don't want this
4233 * stream anymore. This may happen when the server responds
4234 * before the end of an upload and closes quickly (redirect,
4235 * deny, ...)
4236 */
4237 h2s_error(h2s, H2_ERR_CANCEL);
4238 }
Willy Tarreau18059042019-01-31 19:12:48 +01004239
Willy Tarreau90c32322017-11-24 08:00:30 +01004240 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004241 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004242 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004243
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004244 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004245 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004246 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004247 done:
4248 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004249 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004250 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004251add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004252 /* Let the handler know we want to shutr, and add ourselves to the
4253 * most relevant list if not yet done. h2_deferred_shut() will be
4254 * automatically called via the shut_tl tasklet when there's room
4255 * again.
4256 */
4257 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreauc234ae32019-05-13 17:56:11 +02004258 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004259 if (h2s->flags & H2_SF_BLK_MFCTL)
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004260 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004261 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004262 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004263 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004264 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004265 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004266}
4267
Willy Tarreau88bdba32019-05-13 18:17:53 +02004268/* Performs a synchronous or asynchronous shutw(). */
4269static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004270{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004271 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004272
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004273 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004274 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004275
Willy Tarreau7838a792019-08-12 18:42:03 +02004276 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4277
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004278 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01004279 /* we can cleanly close using an empty data frame only after headers */
4280
4281 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4282 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004283 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004284
4285 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004286 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004287 else
4288 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004289 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004290 /* a connstream may require us to immediately kill the whole connection
4291 * for example because of a "tcp-request content reject" rule that is
4292 * normally used to limit abuse. In this case we schedule a goaway to
4293 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004294 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004295 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004296 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004297 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004298 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4299 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4300 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004301 else {
4302 /* Nothing was never sent for this stream, so reset with
4303 * REFUSED_STREAM error to let the client retry the
4304 * request.
4305 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004306 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004307 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4308 }
Willy Tarreau18059042019-01-31 19:12:48 +01004309
Willy Tarreau90c32322017-11-24 08:00:30 +01004310 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004311 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004312 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004313
Willy Tarreau00dd0782018-03-01 16:31:34 +01004314 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004315 }
4316
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004317 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004318 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004319
4320 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4321
Willy Tarreau88bdba32019-05-13 18:17:53 +02004322 done:
4323 h2s->flags &= ~H2_SF_WANT_SHUTW;
4324 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004325
4326 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004327 /* Let the handler know we want to shutw, and add ourselves to the
4328 * most relevant list if not yet done. h2_deferred_shut() will be
4329 * automatically called via the shut_tl tasklet when there's room
4330 * again.
4331 */
4332 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreauc234ae32019-05-13 17:56:11 +02004333 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004334 if (h2s->flags & H2_SF_BLK_MFCTL)
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004335 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004336 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004337 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004338 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004339 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004340 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004341}
4342
Willy Tarreau5723f292020-01-10 15:16:57 +01004343/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004344 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4345 * and prevented the last frame from being emitted.
4346 */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004347static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state)
4348{
4349 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004350 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004351
Willy Tarreau7838a792019-08-12 18:42:03 +02004352 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4353
Willy Tarreau5723f292020-01-10 15:16:57 +01004354 if (h2s->flags & H2_SF_NOTIFIED) {
4355 /* some data processing remains to be done first */
4356 goto end;
4357 }
4358
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004359 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004360 h2_do_shutw(h2s);
4361
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004362 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004363 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004364
Willy Tarreau88bdba32019-05-13 18:17:53 +02004365 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004366 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004367 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004368
Willy Tarreau88bdba32019-05-13 18:17:53 +02004369 if (!h2s->cs) {
4370 h2s_destroy(h2s);
4371 if (h2c_is_dead(h2c))
4372 h2_release(h2c);
4373 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004374 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004375 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004376 TRACE_LEAVE(H2_EV_STRM_SHUT);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004377 return NULL;
Willy Tarreau62f52692017-10-08 23:01:42 +02004378}
4379
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004380/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004381static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
4382{
4383 struct h2s *h2s = cs->ctx;
4384
Willy Tarreau7838a792019-08-12 18:42:03 +02004385 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004386 if (cs->flags & CS_FL_KILL_CONN)
4387 h2s->flags |= H2_SF_KILL_CONN;
4388
Willy Tarreau7838a792019-08-12 18:42:03 +02004389 if (mode)
4390 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004391
Willy Tarreau7838a792019-08-12 18:42:03 +02004392 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004393}
4394
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004395/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004396static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
4397{
4398 struct h2s *h2s = cs->ctx;
4399
Willy Tarreau7838a792019-08-12 18:42:03 +02004400 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004401 if (cs->flags & CS_FL_KILL_CONN)
4402 h2s->flags |= H2_SF_KILL_CONN;
4403
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004404 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004405 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004406}
4407
Christopher Faulet9b79a102019-07-15 11:22:56 +02004408/* Decode the payload of a HEADERS frame and produce the HTX request or response
4409 * depending on the connection's side. Returns a positive value on success, a
4410 * negative value on failure, or 0 if it couldn't proceed. May report connection
4411 * errors in h2c->errcode if the frame is non-decodable and the connection
4412 * unrecoverable. In absence of connection error when a failure is reported, the
4413 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004414 *
4415 * The function may fold CONTINUATION frames into the initial HEADERS frame
4416 * by removing padding and next frame header, then moving the CONTINUATION
4417 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4418 * leaving a hole between the main frame and the beginning of the next one.
4419 * The possibly remaining incomplete or next frame at the end may be moved
4420 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4421 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4422 *
4423 * A buffer at the beginning of processing may look like this :
4424 *
4425 * ,---.---------.-----.--------------.--------------.------.---.
4426 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4427 * `---^---------^-----^--------------^--------------^------^---'
4428 * | | <-----> | |
4429 * area | dpl | wrap
4430 * |<--------------> |
4431 * | dfl |
4432 * |<-------------------------------------------------->|
4433 * head data
4434 *
4435 * Padding is automatically overwritten when folding, participating to the
4436 * hole size after dfl :
4437 *
4438 * ,---.------------------------.-----.--------------.------.---.
4439 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4440 * `---^------------------------^-----^--------------^------^---'
4441 * | | <-----> | |
4442 * area | hole | wrap
4443 * |<-----------------------> |
4444 * | dfl |
4445 * |<-------------------------------------------------->|
4446 * head data
4447 *
4448 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4449 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4450 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004451 *
4452 * The <flags> field must point to either the stream's flags or to a copy of it
4453 * so that the function can update the following flags :
4454 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004455 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004456 *
4457 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4458 * decoding, in order to detect if we're dealing with a headers or a trailers
4459 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004460 */
Willy Tarreau4790f7c2019-01-24 11:33:02 +01004461static 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 +02004462{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004463 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004464 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004465 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004466 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004467 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004468 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004469 int flen; // header frame len
4470 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004471 int ret = 0;
4472 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004473 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004474
Willy Tarreau7838a792019-08-12 18:42:03 +02004475 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4476
Willy Tarreauea18f862018-12-22 20:19:26 +01004477next_frame:
4478 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4479 goto leave; // incomplete input frame
4480
4481 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4482 * this case, we'll try to paste it immediately after the initial
4483 * HEADERS frame payload and kill any possible padding. The initial
4484 * frame's length will be increased to represent the concatenation
4485 * of the two frames. The next frame is read from position <tlen>
4486 * and written at position <flen> (minus padding if some is present).
4487 */
4488 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4489 struct h2_fh hdr;
4490 int clen; // CONTINUATION frame's payload length
4491
Willy Tarreau7838a792019-08-12 18:42:03 +02004492 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 +01004493 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4494 /* no more data, the buffer may be full, either due to
4495 * too large a frame or because of too large a hole that
4496 * we're going to compact at the end.
4497 */
4498 goto leave;
4499 }
4500
4501 if (hdr.ft != H2_FT_CONTINUATION) {
4502 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004503 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 +01004504 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua3075282020-12-01 10:22:43 +01004505 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreauea18f862018-12-22 20:19:26 +01004506 goto fail;
4507 }
4508
4509 if (hdr.sid != h2c->dsi) {
4510 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004511 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 +01004512 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua3075282020-12-01 10:22:43 +01004513 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreauea18f862018-12-22 20:19:26 +01004514 goto fail;
4515 }
4516
4517 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4518 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004519 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 +01004520 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4521 goto fail;
4522 }
4523
4524 /* detect when we must stop aggragating frames */
4525 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4526
4527 /* Take as much as we can of the CONTINUATION frame's payload */
4528 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4529 if (clen > hdr.len)
4530 clen = hdr.len;
4531
4532 /* Move the frame's payload over the padding, hole and frame
4533 * header. At least one of hole or dpl is null (see diagrams
4534 * above). The hole moves after the new aggragated frame.
4535 */
4536 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole + 9), clen, -(h2c->dpl + hole + 9));
4537 h2c->dfl += clen - h2c->dpl;
4538 hole += h2c->dpl + 9;
4539 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004540 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 +01004541 goto next_frame;
4542 }
4543
4544 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004545
Willy Tarreau13278b42017-10-13 19:23:14 +02004546 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004547 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004548 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004549 copy = alloc_trash_chunk();
4550 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004551 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 +02004552 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4553 goto fail;
4554 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004555 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4556 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4557 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004558 }
4559
Willy Tarreau13278b42017-10-13 19:23:14 +02004560 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4561 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004562 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004563 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004564 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 +01004565 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua3075282020-12-01 10:22:43 +01004566 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004567 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004568 }
4569
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004570 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004571 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 +01004572 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4573 goto fail;
4574 }
4575
Willy Tarreau13278b42017-10-13 19:23:14 +02004576 hdrs += 5; // stream dep = 4, weight = 1
4577 flen -= 5;
4578 }
4579
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004580 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004581 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 +01004582 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004583 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004584 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004585
Willy Tarreau937f7602018-02-26 15:22:17 +01004586 /* we can't retry a failed decompression operation so we must be very
4587 * careful not to take any risks. In practice the output buffer is
4588 * always empty except maybe for trailers, in which case we simply have
4589 * to wait for the upper layer to finish consuming what is available.
4590 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004591 htx = htx_from_buf(rxbuf);
4592 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004593 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 +02004594 h2c->flags |= H2_CF_DEM_SFULL;
4595 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004596 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004597
Willy Tarreau25919232019-01-03 14:48:18 +01004598 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004599 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4600 sizeof(list)/sizeof(list[0]), tmp);
4601 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004602 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 +01004603 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4604 goto fail;
4605 }
4606
Willy Tarreau25919232019-01-03 14:48:18 +01004607 /* The PACK decompressor was updated, let's update the input buffer and
4608 * the parser's state to commit these changes and allow us to later
4609 * fail solely on the stream if needed.
4610 */
4611 b_del(&h2c->dbuf, h2c->dfl + hole);
4612 h2c->dfl = hole = 0;
4613 h2c->st0 = H2_CS_FRAME_H;
4614
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004615 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004616 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004617
Willy Tarreau88d138e2019-01-02 19:38:14 +01004618 if (*flags & H2_SF_HEADERS_RCVD)
4619 goto trailers;
4620
4621 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004622 if (h2c->flags & H2_CF_IS_BACK)
4623 outlen = h2_make_htx_response(list, htx, &msgf, body_len);
4624 else
4625 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004626
4627 if (outlen < 0) {
Willy Tarreau25919232019-01-03 14:48:18 +01004628 /* too large headers? this is a stream error only */
Willy Tarreau7838a792019-08-12 18:42:03 +02004629 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 +01004630 goto fail;
4631 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004632
Willy Tarreau174b06a2018-04-25 18:13:58 +02004633 if (msgf & H2_MSGF_BODY) {
4634 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004635 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004636 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004637 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004638 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004639 }
4640
Willy Tarreau88d138e2019-01-02 19:38:14 +01004641 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004642 /* indicate that a HEADERS frame was received for this stream, except
4643 * for 1xx responses. For 1xx responses, another HEADERS frame is
4644 * expected.
4645 */
4646 if (!(msgf & H2_MSGF_RSP_1XX))
4647 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004648
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02004649 if ((h2c->dff & H2_F_HEADERS_END_STREAM)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02004650 /* Mark the end of message using EOM */
Christopher Faulet810df062020-07-22 16:20:34 +02004651 htx->flags |= HTX_FL_EOI; /* no more data are expected. Only EOM remains to add now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004652 if (!htx_add_endof(htx, HTX_BLK_EOM)) {
4653 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 +02004654 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004655 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004656 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004657
Willy Tarreau86277d42019-01-02 15:36:11 +01004658 /* success */
4659 ret = 1;
4660
Willy Tarreau68dd9852017-07-03 14:44:26 +02004661 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004662 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004663 * move the remaining data over it.
4664 */
4665 if (hole) {
4666 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4667 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4668 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4669 b_sub(&h2c->dbuf, hole);
4670 }
4671
Willy Tarreau97215ca2019-04-29 10:20:21 +02004672 if (b_full(&h2c->dbuf) && h2c->dfl >= b_data(&h2c->dbuf)) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004673 /* too large frames */
4674 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004675 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004676 }
4677
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004678 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004679 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004680 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004681 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004682 return ret;
4683
Willy Tarreau68dd9852017-07-03 14:44:26 +02004684 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004685 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004686 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004687
4688 trailers:
4689 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004690 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4691 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004692 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 +01004693 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua3075282020-12-01 10:22:43 +01004694 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau88d138e2019-01-02 19:38:14 +01004695 goto fail;
4696 }
4697
Christopher Faulet9b79a102019-07-15 11:22:56 +02004698 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02004699 if (h2_make_htx_trailers(list, htx) <= 0) {
4700 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 +02004701 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004702 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004703 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02004704}
4705
Christopher Faulet9b79a102019-07-15 11:22:56 +02004706/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004707 * parser state is automatically updated. Returns > 0 if it could completely
4708 * send the current frame, 0 if it couldn't complete, in which case
4709 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
4710 * DATA frame can return 0 as a valid result). Stream errors are reported in
4711 * h2s->errcode and connection errors in h2c->errcode. The caller must already
4712 * have checked the frame header and ensured that the frame was complete or the
4713 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02004714 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01004715static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02004716{
4717 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004718 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004719 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004720 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004721 struct buffer *csbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004722 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02004723
Willy Tarreau7838a792019-08-12 18:42:03 +02004724 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
4725
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004726 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02004727
Olivier Houchard638b7992018-08-16 15:41:52 +02004728 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004729 if (!csbuf) {
4730 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02004731 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 +01004732 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004733 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004734 htx = htx_from_buf(csbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004735
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004736try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004737 flen = h2c->dfl - h2c->dpl;
4738 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01004739 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004740
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004741 if (flen > b_data(&h2c->dbuf)) {
4742 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004743 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01004744 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004745 }
4746
Christopher Faulet9b79a102019-07-15 11:22:56 +02004747 block = htx_free_data_space(htx);
4748 if (!block) {
4749 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004750 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 +02004751 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004752 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004753 if (flen > block)
4754 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004755
Christopher Faulet9b79a102019-07-15 11:22:56 +02004756 /* here, flen is the max we can copy into the output buffer */
4757 block = b_contig_data(&h2c->dbuf, 0);
4758 if (flen > block)
4759 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004760
Christopher Faulet9b79a102019-07-15 11:22:56 +02004761 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02004762 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 +02004763
Christopher Faulet9b79a102019-07-15 11:22:56 +02004764 b_del(&h2c->dbuf, sent);
4765 h2c->dfl -= sent;
4766 h2c->rcvd_c += sent;
4767 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02004768
Christopher Faulet9b79a102019-07-15 11:22:56 +02004769 if (h2s->flags & H2_SF_DATA_CLEN) {
4770 h2s->body_len -= sent;
4771 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004772 }
4773
Christopher Faulet9b79a102019-07-15 11:22:56 +02004774 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004775 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004776 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 +01004777 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004778 }
4779
Christopher Faulet9b79a102019-07-15 11:22:56 +02004780 goto try_again;
4781
Willy Tarreau4a28da12018-01-04 14:41:00 +01004782 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004783 /* here we're done with the frame, all the payload (except padding) was
4784 * transferred.
4785 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02004786
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004787 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Faulet810df062020-07-22 16:20:34 +02004788 htx->flags |= HTX_FL_EOI; /* no more data are expected. Only EOM remains to add now */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004789 if (!htx_add_endof(htx, HTX_BLK_EOM)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004790 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 +02004791 h2c->flags |= H2_CF_DEM_SFULL;
4792 goto fail;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004793 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02004794 }
4795
Willy Tarreaud1023bb2018-03-22 16:53:12 +01004796 h2c->rcvd_c += h2c->dpl;
4797 h2c->rcvd_s += h2c->dpl;
4798 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004799 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet9b79a102019-07-15 11:22:56 +02004800 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02004801 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004802 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01004803 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004804 if (htx)
4805 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02004806 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01004807 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004808}
4809
Willy Tarreau115e83b2018-12-01 19:17:53 +01004810/* Try to send a HEADERS frame matching HTX response present in HTX message
4811 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4812 * must check the stream's status to detect any error which might have happened
4813 * subsequently to a successful send. The htx blocks are automatically removed
4814 * from the message. The htx message is assumed to be valid since produced from
4815 * the internal code, hence it contains a start line, an optional series of
4816 * header blocks and an end of header, otherwise an invalid frame could be
4817 * emitted and the resulting htx message could be left in an inconsistent state.
4818 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004819static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004820{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004821 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01004822 struct h2c *h2c = h2s->h2c;
4823 struct htx_blk *blk;
4824 struct htx_blk *blk_end;
4825 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004826 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004827 struct htx_sl *sl;
4828 enum htx_blk_type type;
4829 int es_now = 0;
4830 int ret = 0;
4831 int hdr;
4832 int idx;
4833
Willy Tarreau7838a792019-08-12 18:42:03 +02004834 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
4835
Willy Tarreau115e83b2018-12-01 19:17:53 +01004836 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004837 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004838 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02004839 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004840 return 0;
4841 }
4842
Willy Tarreau115e83b2018-12-01 19:17:53 +01004843 /* determine the first block which must not be deleted, blk_end may
4844 * be NULL if all blocks have to be deleted.
4845 */
4846 idx = htx_get_head(htx);
4847 blk_end = NULL;
4848 while (idx != -1) {
4849 type = htx_get_blk_type(htx_get_blk(htx, idx));
4850 idx = htx_get_next(htx, idx);
4851 if (type == HTX_BLK_EOH) {
4852 if (idx != -1)
4853 blk_end = htx_get_blk(htx, idx);
4854 break;
4855 }
4856 }
4857
4858 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004859 blk = htx_get_head_blk(htx);
Christopher Fauletea009732019-11-18 15:50:25 +01004860 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_RES_SL);
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004861 ALREADY_CHECKED(blk);
4862 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004863 h2s->status = sl->info.res.status;
Willy Tarreau7838a792019-08-12 18:42:03 +02004864 if (h2s->status < 100 || h2s->status > 999) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01004865 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 +01004866 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004867 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004868
4869 /* and the rest of the headers, that we dump starting at header 0 */
4870 hdr = 0;
4871
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004872 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau115e83b2018-12-01 19:17:53 +01004873 while ((idx = htx_get_next(htx, idx)) != -1) {
4874 blk = htx_get_blk(htx, idx);
4875 type = htx_get_blk_type(blk);
4876
4877 if (type == HTX_BLK_UNUSED)
4878 continue;
4879
4880 if (type != HTX_BLK_HDR)
4881 break;
4882
Willy Tarreau7838a792019-08-12 18:42:03 +02004883 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01004884 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 +01004885 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004886 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004887
4888 list[hdr].n = htx_get_blk_name(htx, blk);
4889 list[hdr].v = htx_get_blk_value(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004890 hdr++;
4891 }
4892
4893 /* marker for end of headers */
4894 list[hdr].n = ist("");
4895
4896 if (h2s->status == 204 || h2s->status == 304) {
4897 /* no contents, claim c-len is present and set to zero */
4898 es_now = 1;
4899 }
4900
Willy Tarreau9c218e72019-05-26 10:08:28 +02004901 mbuf = br_tail(h2c->mbuf);
4902 retry:
4903 if (!h2_get_buf(h2c, mbuf)) {
4904 h2c->flags |= H2_CF_MUX_MALLOC;
4905 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02004906 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 +02004907 return 0;
4908 }
4909
Willy Tarreau115e83b2018-12-01 19:17:53 +01004910 chunk_reset(&outbuf);
4911
4912 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004913 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4914 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004915 break;
4916 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004917 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01004918 }
4919
4920 if (outbuf.size < 9)
4921 goto full;
4922
4923 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4924 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4925 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4926 outbuf.data = 9;
4927
4928 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01004929 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004930 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004931 goto realign_again;
4932 goto full;
4933 }
4934
4935 /* encode all headers, stop at empty name */
4936 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4937 /* these ones do not exist in H2 and must be dropped. */
4938 if (isteq(list[hdr].n, ist("connection")) ||
4939 isteq(list[hdr].n, ist("proxy-connection")) ||
4940 isteq(list[hdr].n, ist("keep-alive")) ||
4941 isteq(list[hdr].n, ist("upgrade")) ||
4942 isteq(list[hdr].n, ist("transfer-encoding")))
4943 continue;
4944
Christopher Faulet86d144c2019-08-14 16:32:25 +02004945 /* Skip all pseudo-headers */
4946 if (*(list[hdr].n.ptr) == ':')
4947 continue;
4948
Willy Tarreau115e83b2018-12-01 19:17:53 +01004949 if (isteq(list[hdr].n, ist("")))
4950 break; // end
4951
4952 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4953 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004954 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004955 goto realign_again;
4956 goto full;
4957 }
4958 }
4959
Willy Tarreaucb985a42019-10-07 16:56:34 +02004960 /* update the frame's size */
4961 h2_set_frame_size(outbuf.area, outbuf.data - 9);
4962
4963 if (outbuf.data > h2c->mfs + 9) {
4964 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
4965 /* output full */
4966 if (b_space_wraps(mbuf))
4967 goto realign_again;
4968 goto full;
4969 }
4970 }
4971
Christopher Faulet0b465482019-02-19 15:14:23 +01004972 /* we may need to add END_STREAM except for 1xx responses.
Willy Tarreau115e83b2018-12-01 19:17:53 +01004973 * FIXME: we should also set it when we know for sure that the
4974 * content-length is zero as well as on 204/304
4975 */
Christopher Faulet0b465482019-02-19 15:14:23 +01004976 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM &&
4977 (h2s->status >= 200 || h2s->status == 101))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004978 es_now = 1;
4979
Willy Tarreau927b88b2019-03-04 08:03:25 +01004980 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004981 es_now = 1;
4982
Willy Tarreau115e83b2018-12-01 19:17:53 +01004983 if (es_now)
4984 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
4985
4986 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02004987 TRACE_USER("sent H2 response", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
Willy Tarreaubcc45952019-05-26 10:05:50 +02004988 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01004989
4990 /* indicates the HEADERS frame was sent, except for 1xx responses. For
4991 * 1xx responses, another HEADERS frame is expected.
4992 */
4993 if (h2s->status >= 200 || h2s->status == 101)
4994 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004995
Willy Tarreau115e83b2018-12-01 19:17:53 +01004996 if (es_now) {
4997 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02004998 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 +01004999 if (h2s->st == H2_SS_OPEN)
5000 h2s->st = H2_SS_HLOC;
5001 else
5002 h2s_close(h2s);
5003 }
5004
5005 /* OK we could properly deliver the response */
5006
5007 /* remove all header blocks including the EOH and compute the
5008 * corresponding size.
5009 *
5010 * FIXME: We should remove everything when es_now is set.
5011 */
5012 ret = 0;
5013 idx = htx_get_head(htx);
5014 blk = htx_get_blk(htx, idx);
5015 while (blk != blk_end) {
5016 ret += htx_get_blksz(blk);
5017 blk = htx_remove_blk(htx, blk);
5018 }
Willy Tarreauc5753ae2018-12-02 12:28:01 +01005019
Christopher Faulet316934d2019-05-15 14:22:48 +02005020 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5021 ret += htx_get_blksz(blk_end);
Willy Tarreauc5753ae2018-12-02 12:28:01 +01005022 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02005023 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005024 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005025 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005026 return ret;
5027 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005028 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5029 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005030 h2c->flags |= H2_CF_MUX_MFULL;
5031 h2s->flags |= H2_SF_BLK_MROOM;
5032 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005033 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 +01005034 goto end;
5035 fail:
5036 /* unparsable HTX messages, too large ones to be produced in the local
5037 * list etc go here (unrecoverable errors).
5038 */
5039 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5040 ret = 0;
5041 goto end;
5042}
5043
Willy Tarreau80739692018-10-05 11:35:57 +02005044/* Try to send a HEADERS frame matching HTX request present in HTX message
5045 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5046 * must check the stream's status to detect any error which might have happened
5047 * subsequently to a successful send. The htx blocks are automatically removed
5048 * from the message. The htx message is assumed to be valid since produced from
5049 * the internal code, hence it contains a start line, an optional series of
5050 * header blocks and an end of header, otherwise an invalid frame could be
5051 * emitted and the resulting htx message could be left in an inconsistent state.
5052 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005053static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005054{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005055 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005056 struct h2c *h2c = h2s->h2c;
5057 struct htx_blk *blk;
5058 struct htx_blk *blk_end;
5059 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005060 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005061 struct htx_sl *sl;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005062 struct ist meth, uri, auth;
Willy Tarreau80739692018-10-05 11:35:57 +02005063 enum htx_blk_type type;
5064 int es_now = 0;
5065 int ret = 0;
5066 int hdr;
5067 int idx;
5068
Willy Tarreau7838a792019-08-12 18:42:03 +02005069 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5070
Willy Tarreau80739692018-10-05 11:35:57 +02005071 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005072 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005073 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005074 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005075 return 0;
5076 }
5077
Willy Tarreau80739692018-10-05 11:35:57 +02005078 /* determine the first block which must not be deleted, blk_end may
5079 * be NULL if all blocks have to be deleted.
5080 */
5081 idx = htx_get_head(htx);
5082 blk_end = NULL;
5083 while (idx != -1) {
5084 type = htx_get_blk_type(htx_get_blk(htx, idx));
5085 idx = htx_get_next(htx, idx);
5086 if (type == HTX_BLK_EOH) {
5087 if (idx != -1)
5088 blk_end = htx_get_blk(htx, idx);
5089 break;
5090 }
5091 }
5092
5093 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02005094 blk = htx_get_head_blk(htx);
Christopher Fauletea009732019-11-18 15:50:25 +01005095 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
Christopher Fauletb77a1d22019-05-13 11:55:10 +02005096 ALREADY_CHECKED(blk);
5097 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau80739692018-10-05 11:35:57 +02005098 meth = htx_sl_req_meth(sl);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005099 uri = htx_sl_req_uri(sl);
5100 if (unlikely(uri.len == 0)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01005101 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 +02005102 goto fail;
5103 }
Willy Tarreau80739692018-10-05 11:35:57 +02005104
5105 /* and the rest of the headers, that we dump starting at header 0 */
5106 hdr = 0;
5107
Willy Tarreau8e162ee2018-12-06 14:07:27 +01005108 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau80739692018-10-05 11:35:57 +02005109 while ((idx = htx_get_next(htx, idx)) != -1) {
5110 blk = htx_get_blk(htx, idx);
5111 type = htx_get_blk_type(blk);
5112
5113 if (type == HTX_BLK_UNUSED)
5114 continue;
5115
5116 if (type != HTX_BLK_HDR)
5117 break;
5118
Willy Tarreau7838a792019-08-12 18:42:03 +02005119 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01005120 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 +02005121 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005122 }
Willy Tarreau80739692018-10-05 11:35:57 +02005123
5124 list[hdr].n = htx_get_blk_name(htx, blk);
5125 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005126
5127 /* Skip header if same name is used to add the server name */
5128 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name &&
5129 isteq(list[hdr].n, ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len)))
5130 continue;
5131
Willy Tarreau80739692018-10-05 11:35:57 +02005132 hdr++;
5133 }
5134
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005135 /* Now add the server name to a header (if requested) */
5136 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name) {
5137 struct server *srv = objt_server(h2c->conn->target);
5138
5139 if (srv) {
5140 list[hdr].n = ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len);
5141 list[hdr].v = ist(srv->id);
5142 hdr++;
5143 }
5144 }
5145
Willy Tarreau80739692018-10-05 11:35:57 +02005146 /* marker for end of headers */
5147 list[hdr].n = ist("");
5148
Willy Tarreau9c218e72019-05-26 10:08:28 +02005149 mbuf = br_tail(h2c->mbuf);
5150 retry:
5151 if (!h2_get_buf(h2c, mbuf)) {
5152 h2c->flags |= H2_CF_MUX_MALLOC;
5153 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005154 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 +02005155 return 0;
5156 }
5157
Willy Tarreau80739692018-10-05 11:35:57 +02005158 chunk_reset(&outbuf);
5159
5160 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005161 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5162 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005163 break;
5164 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005165 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005166 }
5167
5168 if (outbuf.size < 9)
5169 goto full;
5170
5171 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5172 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5173 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5174 outbuf.data = 9;
5175
5176 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005177 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005178 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005179 goto realign_again;
5180 goto full;
5181 }
5182
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005183 auth = ist(NULL);
5184
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005185 /* RFC7540 #8.3: the CONNECT method must have :
5186 * - :authority set to the URI part (host:port)
5187 * - :method set to CONNECT
5188 * - :scheme and :path omitted
5189 */
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005190 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT)) {
5191 auth = uri;
5192
5193 if (!hpack_encode_header(&outbuf, ist(":authority"), auth)) {
5194 /* output full */
5195 if (b_space_wraps(mbuf))
5196 goto realign_again;
5197 goto full;
5198 }
5199 } else {
5200 /* other methods need a :scheme. If an authority is known from
5201 * the request line, it must be sent, otherwise only host is
5202 * sent. Host is never sent as the authority.
5203 */
5204 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005205
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005206 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5207 /* the URI seems to start with a scheme */
5208 int len = 1;
5209
5210 while (len < uri.len && uri.ptr[len] != ':')
5211 len++;
5212
5213 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5214 /* make the uri start at the authority now */
5215 scheme.ptr = uri.ptr;
5216 scheme.len = len,
5217 uri.ptr += len + 3;
5218 uri.len -= len + 3;
5219
5220 /* find the auth part of the URI */
5221 auth.ptr = uri.ptr;
5222 auth.len = 0;
5223 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5224 auth.len++;
5225
5226 uri.ptr += auth.len;
5227 uri.len -= auth.len;
5228 }
5229 }
5230
5231 if (!scheme.len) {
5232 /* no explicit scheme, we're using an origin-form URI,
5233 * probably from an H1 request transcoded to H2 via an
5234 * external layer, then received as H2 without authority.
5235 * So we have to look up the scheme from the HTX flags.
5236 * In such a case only http and https are possible, and
5237 * https is the default (sent by browsers).
5238 */
5239 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5240 scheme = ist("http");
5241 else
5242 scheme = ist("https");
5243 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005244
5245 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005246 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005247 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005248 goto realign_again;
5249 goto full;
5250 }
Willy Tarreau80739692018-10-05 11:35:57 +02005251
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005252 if (auth.len && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005253 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005254 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005255 goto realign_again;
5256 goto full;
5257 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005258
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005259 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5260 * be sent as '/' or '*'.
5261 */
5262 if (unlikely(!uri.len)) {
5263 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5264 uri = ist("*");
5265 else
5266 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005267 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005268
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005269 if (!hpack_encode_path(&outbuf, uri)) {
5270 /* output full */
5271 if (b_space_wraps(mbuf))
5272 goto realign_again;
5273 goto full;
5274 }
Willy Tarreau80739692018-10-05 11:35:57 +02005275 }
5276
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005277 /* encode all headers, stop at empty name. Host is only sent if we
5278 * do not provide an authority.
5279 */
Willy Tarreau80739692018-10-05 11:35:57 +02005280 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005281 struct ist n = list[hdr].n;
5282 struct ist v = list[hdr].v;
5283
Willy Tarreau80739692018-10-05 11:35:57 +02005284 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005285 if (isteq(n, ist("connection")) ||
5286 (auth.len && isteq(n, ist("host"))) ||
5287 isteq(n, ist("proxy-connection")) ||
5288 isteq(n, ist("keep-alive")) ||
5289 isteq(n, ist("upgrade")) ||
5290 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005291 continue;
5292
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005293 if (isteq(n, ist("te"))) {
5294 /* "te" may only be sent with "trailers" if this value
5295 * is present, otherwise it must be deleted.
5296 */
5297 v = istist(v, ist("trailers"));
5298 if (!v.ptr || (v.len > 8 && v.ptr[8] != ','))
5299 continue;
5300 v = ist("trailers");
5301 }
5302
Christopher Faulet86d144c2019-08-14 16:32:25 +02005303 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005304 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005305 continue;
5306
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005307 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005308 break; // end
5309
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005310 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005311 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005312 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005313 goto realign_again;
5314 goto full;
5315 }
5316 }
5317
Willy Tarreaucb985a42019-10-07 16:56:34 +02005318 /* update the frame's size */
5319 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5320
5321 if (outbuf.data > h2c->mfs + 9) {
5322 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5323 /* output full */
5324 if (b_space_wraps(mbuf))
5325 goto realign_again;
5326 goto full;
5327 }
5328 }
5329
Willy Tarreau80739692018-10-05 11:35:57 +02005330 /* we may need to add END_STREAM if we have no body :
5331 * - request already closed, or :
5332 * - no transfer-encoding, and :
5333 * - no content-length or content-length:0
5334 * Fixme: this doesn't take into account CONNECT requests.
5335 */
5336 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM)
5337 es_now = 1;
5338
5339 if (sl->flags & HTX_SL_F_BODYLESS)
5340 es_now = 1;
5341
Willy Tarreau927b88b2019-03-04 08:03:25 +01005342 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau80739692018-10-05 11:35:57 +02005343 es_now = 1;
5344
Willy Tarreau80739692018-10-05 11:35:57 +02005345 if (es_now)
5346 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5347
5348 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02005349 TRACE_USER("sent H2 request", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
Willy Tarreaubcc45952019-05-26 10:05:50 +02005350 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005351 h2s->flags |= H2_SF_HEADERS_SENT;
5352 h2s->st = H2_SS_OPEN;
5353
Willy Tarreau80739692018-10-05 11:35:57 +02005354 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005355 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 +02005356 // trim any possibly pending data (eg: inconsistent content-length)
5357 h2s->flags |= H2_SF_ES_SENT;
5358 h2s->st = H2_SS_HLOC;
5359 }
5360
5361 /* remove all header blocks including the EOH and compute the
5362 * corresponding size.
5363 *
5364 * FIXME: We should remove everything when es_now is set.
5365 */
5366 ret = 0;
5367 idx = htx_get_head(htx);
5368 blk = htx_get_blk(htx, idx);
5369 while (blk != blk_end) {
5370 ret += htx_get_blksz(blk);
5371 blk = htx_remove_blk(htx, blk);
5372 }
5373
Christopher Faulet316934d2019-05-15 14:22:48 +02005374 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5375 ret += htx_get_blksz(blk_end);
Willy Tarreau80739692018-10-05 11:35:57 +02005376 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02005377 }
Willy Tarreau80739692018-10-05 11:35:57 +02005378
5379 end:
5380 return ret;
5381 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005382 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5383 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005384 h2c->flags |= H2_CF_MUX_MFULL;
5385 h2s->flags |= H2_SF_BLK_MROOM;
5386 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005387 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 +02005388 goto end;
5389 fail:
5390 /* unparsable HTX messages, too large ones to be produced in the local
5391 * list etc go here (unrecoverable errors).
5392 */
5393 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5394 ret = 0;
5395 goto end;
5396}
5397
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005398/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005399 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5400 * caller must check the stream's status to detect any error which might have
5401 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Faulet54b5e212019-06-04 10:08:28 +02005402 * consumed, or zero if nothing done. Note that EOM count for 1 byte.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005403 */
Christopher Faulet142854b2020-12-02 15:12:40 +01005404static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005405{
5406 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005407 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005408 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005409 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005410 size_t total = 0;
5411 int es_now = 0;
5412 int bsize; /* htx block size */
5413 int fsize; /* h2 frame size */
5414 struct htx_blk *blk;
5415 enum htx_blk_type type;
5416 int idx;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005417 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005418
Willy Tarreau7838a792019-08-12 18:42:03 +02005419 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5420
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005421 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005422 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005423 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005424 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005425 goto end;
5426 }
5427
Willy Tarreau98de12a2018-12-12 07:03:00 +01005428 htx = htx_from_buf(buf);
5429
Christopher Faulet54b5e212019-06-04 10:08:28 +02005430 /* We only come here with HTX_BLK_DATA blocks. However, while looping,
5431 * we can meet an HTX_BLK_EOM block that we'll leave to the caller to
5432 * handle.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005433 */
5434
5435 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005436 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005437 goto end;
5438
5439 idx = htx_get_head(htx);
5440 blk = htx_get_blk(htx, idx);
Christopher Faulet54b5e212019-06-04 10:08:28 +02005441 type = htx_get_blk_type(blk); // DATA or EOM
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005442 bsize = htx_get_blksz(blk);
5443 fsize = bsize;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005444 trunc_out = 0;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005445
Christopher Faulet54b5e212019-06-04 10:08:28 +02005446 if (type == HTX_BLK_EOM) {
Willy Tarreau7eeb10a2019-01-04 09:28:17 +01005447 if (h2s->flags & H2_SF_ES_SENT) {
5448 /* ES already sent */
5449 htx_remove_blk(htx, blk);
5450 total++; // EOM counts as one byte
5451 count--;
5452 goto end;
5453 }
5454 }
5455 else if (type != HTX_BLK_DATA)
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005456 goto end;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005457
Willy Tarreau9c218e72019-05-26 10:08:28 +02005458 mbuf = br_tail(h2c->mbuf);
5459 retry:
5460 if (!h2_get_buf(h2c, mbuf)) {
5461 h2c->flags |= H2_CF_MUX_MALLOC;
5462 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005463 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 +02005464 goto end;
5465 }
5466
Willy Tarreau98de12a2018-12-12 07:03:00 +01005467 /* Perform some optimizations to reduce the number of buffer copies.
5468 * First, if the mux's buffer is empty and the htx area contains
5469 * exactly one data block of the same size as the requested count, and
5470 * this count fits within the frame size, the stream's window size, and
5471 * the connection's window size, then it's possible to simply swap the
5472 * caller's buffer with the mux's output buffer and adjust offsets and
5473 * length to match the entire DATA HTX block in the middle. In this
5474 * case we perform a true zero-copy operation from end-to-end. This is
5475 * the situation that happens all the time with large files. Second, if
5476 * this is not possible, but the mux's output buffer is empty, we still
5477 * have an opportunity to avoid the copy to the intermediary buffer, by
5478 * making the intermediary buffer's area point to the output buffer's
5479 * area. In this case we want to skip the HTX header to make sure that
5480 * copies remain aligned and that this operation remains possible all
5481 * the time. This goes for headers, data blocks and any data extracted
5482 * from the HTX blocks.
5483 */
5484 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005485 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005486 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005487 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005488
Willy Tarreaubcc45952019-05-26 10:05:50 +02005489 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005490 /* Too bad there are data left there. We're willing to memcpy/memmove
5491 * up to 1/4 of the buffer, which means that it's OK to copy a large
5492 * frame into a buffer containing few data if it needs to be realigned,
5493 * and that it's also OK to copy few data without realigning. Otherwise
5494 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005495 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005496 if (fsize + 9 <= b_room(mbuf) &&
5497 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005498 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5499 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 +01005500 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005501 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005502
Willy Tarreau9c218e72019-05-26 10:08:28 +02005503 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5504 goto retry;
5505
Willy Tarreau98de12a2018-12-12 07:03:00 +01005506 h2c->flags |= H2_CF_MUX_MFULL;
5507 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005508 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 +01005509 goto end;
5510 }
5511
5512 /* map an H2 frame to the HTX block so that we can put the
5513 * frame header there.
5514 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005515 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5516 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005517
5518 /* prepend an H2 DATA frame header just before the DATA block */
5519 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5520 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5521 h2_set_frame_size(outbuf.area, fsize);
5522
5523 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005524 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005525 h2c->mws -= fsize;
5526
5527 /* and exchange with our old area */
5528 buf->area = old_area;
5529 buf->data = buf->head = 0;
5530 total += fsize;
Willy Tarreau7838a792019-08-12 18:42:03 +02005531
5532 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 +01005533 goto end;
5534 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005535
Willy Tarreau98de12a2018-12-12 07:03:00 +01005536 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005537 /* for DATA and EOM we'll have to emit a frame, even if empty */
5538
5539 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005540 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5541 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005542 break;
5543 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005544 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005545 }
5546
5547 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005548 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5549 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005550 h2c->flags |= H2_CF_MUX_MFULL;
5551 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005552 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005553 goto end;
5554 }
5555
5556 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5557 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5558 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5559 outbuf.data = 9;
5560
5561 /* we have in <fsize> the exact number of bytes we need to copy from
5562 * the HTX buffer. We need to check this against the connection's and
5563 * the stream's send windows, and to ensure that this fits in the max
5564 * frame size and in the buffer's available space minus 9 bytes (for
5565 * the frame header). The connection's flow control is applied last so
5566 * that we can use a separate list of streams which are immediately
5567 * unblocked on window opening. Note: we don't implement padding.
5568 */
5569
5570 /* EOM is presented with bsize==1 but would lead to the emission of an
5571 * empty frame, thus we force it to zero here.
5572 */
5573 if (type == HTX_BLK_EOM)
5574 bsize = fsize = 0;
5575
5576 if (!fsize)
5577 goto send_empty;
5578
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005579 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005580 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02005581 if (LIST_ADDED(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005582 LIST_DEL_INIT(&h2s->list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02005583 LIST_ADDQ(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005584 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 +01005585 goto end;
5586 }
5587
Willy Tarreauee573762018-12-04 15:25:57 +01005588 if (fsize > count)
5589 fsize = count;
5590
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005591 if (fsize > h2s_mws(h2s))
5592 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005593
5594 if (h2c->mfs && fsize > h2c->mfs)
5595 fsize = h2c->mfs; // >0
5596
5597 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005598 /* It doesn't fit at once. If it at least fits once split and
5599 * the amount of data to move is low, let's defragment the
5600 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005601 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005602 if (b_space_wraps(mbuf) &&
5603 (fsize + 9 <= b_room(mbuf)) &&
5604 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005605 goto realign_again;
5606 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005607 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005608
5609 if (fsize <= 0) {
5610 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005611 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5612 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005613 h2c->flags |= H2_CF_MUX_MFULL;
5614 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005615 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005616 goto end;
5617 }
5618 }
5619
5620 if (h2c->mws <= 0) {
5621 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005622 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 +01005623 goto end;
5624 }
5625
5626 if (fsize > h2c->mws)
5627 fsize = h2c->mws;
5628
5629 /* now let's copy this this into the output buffer */
5630 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005631 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005632 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005633 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005634
5635 send_empty:
5636 /* update the frame's size */
5637 h2_set_frame_size(outbuf.area, fsize);
5638
5639 /* FIXME: for now we only set the ES flag on empty DATA frames, once
5640 * meeting EOM. We should optimize this later.
5641 */
5642 if (type == HTX_BLK_EOM) {
Willy Tarreauee573762018-12-04 15:25:57 +01005643 total++; // EOM counts as one byte
5644 count--;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005645 es_now = 1;
5646 }
5647
5648 if (es_now)
5649 outbuf.area[4] |= H2_F_DATA_END_STREAM;
5650
5651 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005652 b_add(mbuf, fsize + 9);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005653
5654 /* consume incoming HTX block, including EOM */
5655 total += fsize;
5656 if (fsize == bsize) {
5657 htx_remove_blk(htx, blk);
Willy Tarreau7838a792019-08-12 18:42:03 +02005658 if (fsize) {
5659 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 +01005660 goto new_frame;
Willy Tarreau7838a792019-08-12 18:42:03 +02005661 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005662 } else {
5663 /* we've truncated this block */
5664 htx_cut_data_blk(htx, blk, fsize);
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005665 if (trunc_out)
5666 goto new_frame;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005667 }
5668
5669 if (es_now) {
5670 if (h2s->st == H2_SS_OPEN)
5671 h2s->st = H2_SS_HLOC;
5672 else
5673 h2s_close(h2s);
5674
5675 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005676 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 +01005677 }
5678
5679 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005680 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005681 return total;
5682}
5683
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005684/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
5685 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
5686 * processed. The caller must check the stream's status to detect any error
5687 * which might have happened subsequently to a successful send. The htx blocks
5688 * are automatically removed from the message. The htx message is assumed to be
5689 * valid since produced from the internal code. Processing stops when meeting
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005690 * the EOM, which is *not* removed. All trailers are processed at once and sent
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005691 * as a single frame. The ES flag is always set.
5692 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005693static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005694{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005695 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005696 struct h2c *h2c = h2s->h2c;
5697 struct htx_blk *blk;
5698 struct htx_blk *blk_end;
5699 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005700 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005701 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005702 int ret = 0;
5703 int hdr;
5704 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005705
Willy Tarreau7838a792019-08-12 18:42:03 +02005706 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5707
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005708 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005709 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005710 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005711 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005712 goto end;
5713 }
5714
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005715 /* determine the first block which must not be deleted, blk_end may
5716 * be NULL if all blocks have to be deleted. also get trailers.
5717 */
5718 idx = htx_get_head(htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005719 blk_end = NULL;
5720
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005721 hdr = 0;
5722 while (idx != -1) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005723 blk = htx_get_blk(htx, idx);
5724 type = htx_get_blk_type(blk);
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005725 idx = htx_get_next(htx, idx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005726 if (type == HTX_BLK_UNUSED)
5727 continue;
5728
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005729 if (type == HTX_BLK_EOT) {
5730 if (idx != -1)
5731 blk_end = blk;
5732 break;
5733 }
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005734 if (type != HTX_BLK_TLR)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005735 break;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005736
Willy Tarreau7838a792019-08-12 18:42:03 +02005737 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01005738 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 +01005739 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005740 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005741
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005742 list[hdr].n = htx_get_blk_name(htx, blk);
5743 list[hdr].v = htx_get_blk_value(htx, blk);
5744 hdr++;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005745 }
5746
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005747 /* marker for end of trailers */
5748 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005749
Willy Tarreau9c218e72019-05-26 10:08:28 +02005750 mbuf = br_tail(h2c->mbuf);
5751 retry:
5752 if (!h2_get_buf(h2c, mbuf)) {
5753 h2c->flags |= H2_CF_MUX_MALLOC;
5754 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005755 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 +02005756 goto end;
5757 }
5758
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005759 chunk_reset(&outbuf);
5760
5761 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005762 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5763 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005764 break;
5765 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005766 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005767 }
5768
5769 if (outbuf.size < 9)
5770 goto full;
5771
5772 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
5773 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
5774 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5775 outbuf.data = 9;
5776
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005777 /* encode all headers */
5778 for (idx = 0; idx < hdr; idx++) {
5779 /* these ones do not exist in H2 or must not appear in
5780 * trailers and must be dropped.
5781 */
5782 if (isteq(list[idx].n, ist("host")) ||
5783 isteq(list[idx].n, ist("content-length")) ||
5784 isteq(list[idx].n, ist("connection")) ||
5785 isteq(list[idx].n, ist("proxy-connection")) ||
5786 isteq(list[idx].n, ist("keep-alive")) ||
5787 isteq(list[idx].n, ist("upgrade")) ||
5788 isteq(list[idx].n, ist("te")) ||
5789 isteq(list[idx].n, ist("transfer-encoding")))
5790 continue;
5791
Christopher Faulet86d144c2019-08-14 16:32:25 +02005792 /* Skip all pseudo-headers */
5793 if (*(list[idx].n.ptr) == ':')
5794 continue;
5795
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005796 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
5797 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005798 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005799 goto realign_again;
5800 goto full;
5801 }
5802 }
5803
Willy Tarreau5121e5d2019-05-06 15:13:41 +02005804 if (outbuf.data == 9) {
5805 /* here we have a problem, we have nothing to emit (either we
5806 * received an empty trailers block followed or we removed its
5807 * contents above). Because of this we can't send a HEADERS
5808 * frame, so we have to cheat and instead send an empty DATA
5809 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01005810 */
5811 outbuf.area[3] = H2_FT_DATA;
5812 outbuf.area[4] = H2_F_DATA_END_STREAM;
5813 }
5814
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005815 /* update the frame's size */
5816 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5817
Willy Tarreau572d9f52019-10-11 16:58:37 +02005818 if (outbuf.data > h2c->mfs + 9) {
5819 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5820 /* output full */
5821 if (b_space_wraps(mbuf))
5822 goto realign_again;
5823 goto full;
5824 }
5825 }
5826
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005827 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02005828 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 +02005829 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005830 h2s->flags |= H2_SF_ES_SENT;
5831
5832 if (h2s->st == H2_SS_OPEN)
5833 h2s->st = H2_SS_HLOC;
5834 else
5835 h2s_close(h2s);
5836
5837 /* OK we could properly deliver the response */
5838 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005839 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005840 ret = 0;
5841 idx = htx_get_head(htx);
5842 blk = htx_get_blk(htx, idx);
5843 while (blk != blk_end) {
5844 ret += htx_get_blksz(blk);
5845 blk = htx_remove_blk(htx, blk);
5846 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005847
5848 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5849 ret += htx_get_blksz(blk_end);
5850 htx_remove_blk(htx, blk_end);
5851 }
5852
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005853 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005854 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005855 return ret;
5856 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005857 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5858 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005859 h2c->flags |= H2_CF_MUX_MFULL;
5860 h2s->flags |= H2_SF_BLK_MROOM;
5861 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005862 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 +01005863 goto end;
5864 fail:
5865 /* unparsable HTX messages, too large ones to be produced in the local
5866 * list etc go here (unrecoverable errors).
5867 */
5868 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5869 ret = 0;
5870 goto end;
5871}
5872
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005873/* Called from the upper layer, to subscribe <es> to events <event_type>. The
5874 * event subscriber <es> is not allowed to change from a previous call as long
5875 * as at least one event is still subscribed. The <event_type> must only be a
5876 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005877 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005878static int h2_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02005879{
Olivier Houchard6ff20392018-07-17 18:46:31 +02005880 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02005881 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005882
Willy Tarreau7838a792019-08-12 18:42:03 +02005883 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01005884
5885 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005886 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01005887
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005888 es->events |= event_type;
5889 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01005890
5891 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02005892 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01005893
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005894 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005895 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02005896 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
5897 !LIST_ADDED(&h2s->list)) {
5898 if (h2s->flags & H2_SF_BLK_MFCTL)
5899 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
5900 else
5901 LIST_ADDQ(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02005902 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02005903 }
Willy Tarreau7838a792019-08-12 18:42:03 +02005904 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005905 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005906}
5907
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005908/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
5909 * The <es> pointer is not allowed to differ from the one passed to the
5910 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005911 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005912static int h2_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005913{
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005914 struct h2s *h2s = cs->ctx;
5915
Willy Tarreau7838a792019-08-12 18:42:03 +02005916 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01005917
5918 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005919 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01005920
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005921 es->events &= ~event_type;
5922 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01005923 h2s->subs = NULL;
5924
5925 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02005926 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01005927
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005928 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005929 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01005930 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01005931 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
5932 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02005933 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01005934
Willy Tarreau7838a792019-08-12 18:42:03 +02005935 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005936 return 0;
5937}
5938
5939
Olivier Houchard511efea2018-08-16 15:30:32 +02005940/* Called from the upper layer, to receive data */
5941static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
5942{
Olivier Houchard638b7992018-08-16 15:41:52 +02005943 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01005944 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01005945 struct htx *h2s_htx = NULL;
5946 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02005947 size_t ret = 0;
5948
Willy Tarreau7838a792019-08-12 18:42:03 +02005949 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
5950
Olivier Houchard511efea2018-08-16 15:30:32 +02005951 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005952 h2s_htx = htx_from_buf(&h2s->rxbuf);
5953 if (htx_is_empty(h2s_htx)) {
5954 /* Here htx_to_buf() will set buffer data to 0 because
5955 * the HTX is empty.
5956 */
5957 htx_to_buf(h2s_htx, &h2s->rxbuf);
5958 goto end;
5959 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01005960
Christopher Faulet9b79a102019-07-15 11:22:56 +02005961 ret = h2s_htx->data;
5962 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01005963
Christopher Faulet9b79a102019-07-15 11:22:56 +02005964 /* <buf> is empty and the message is small enough, swap the
5965 * buffers. */
5966 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005967 htx_to_buf(buf_htx, buf);
5968 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02005969 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
5970 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01005971 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005972
5973 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_EOM);
5974
5975 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
5976 buf_htx->flags |= HTX_FL_PARSING_ERROR;
5977 if (htx_is_empty(buf_htx))
5978 cs->flags |= CS_FL_EOI;
Willy Tarreau86724e22018-12-01 23:19:43 +01005979 }
Christopher Faulet810df062020-07-22 16:20:34 +02005980 else if (htx_is_empty(h2s_htx))
5981 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOI);
Olivier Houchard511efea2018-08-16 15:30:32 +02005982
Christopher Faulet9b79a102019-07-15 11:22:56 +02005983 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
5984 htx_to_buf(buf_htx, buf);
5985 htx_to_buf(h2s_htx, &h2s->rxbuf);
5986 ret -= h2s_htx->data;
5987
Christopher Faulet37070b22019-02-14 15:12:14 +01005988 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02005989 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01005990 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02005991 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01005992 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletfa922f02019-05-07 10:55:17 +02005993 if (h2s->flags & H2_SF_ES_RCVD)
5994 cs->flags |= CS_FL_EOI;
Christopher Fauletaade4ed2020-10-08 15:38:41 +02005995 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02005996 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01005997 if (cs->flags & CS_FL_ERR_PENDING)
5998 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02005999 if (b_size(&h2s->rxbuf)) {
6000 b_free(&h2s->rxbuf);
6001 offer_buffers(NULL, tasks_run_queue);
6002 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006003 }
6004
Willy Tarreau082f5592018-11-25 08:03:32 +01006005 if (ret && h2c->dsi == h2s->id) {
6006 /* demux is blocking on this stream's buffer */
6007 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006008 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006009 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006010
Willy Tarreau7838a792019-08-12 18:42:03 +02006011 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006012 return ret;
6013}
6014
Olivier Houchardd846c262018-10-19 17:24:29 +02006015
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006016/* Called from the upper layer, to send data from buffer <buf> for no more than
6017 * <count> bytes. Returns the number of bytes effectively sent. Some status
6018 * flags may be updated on the conn_stream.
6019 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02006020static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006021{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006022 struct h2s *h2s = cs->ctx;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006023 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006024 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006025 struct htx *htx;
6026 struct htx_blk *blk;
6027 enum htx_blk_type btype;
6028 uint32_t bsize;
6029 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006030
Willy Tarreau7838a792019-08-12 18:42:03 +02006031 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6032
Olivier Houchardd360ac62019-03-22 17:37:16 +01006033 /* If we were not just woken because we wanted to send but couldn't,
6034 * and there's somebody else that is waiting to send, do nothing,
6035 * we will subscribe later and be put at the end of the list
6036 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006037 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006038 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6039 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 +01006040 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006041 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006042 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006043
Willy Tarreau7838a792019-08-12 18:42:03 +02006044 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6045 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 +02006046 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006047 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006048
Willy Tarreaucab22952019-10-31 15:48:18 +01006049 if (h2s->h2c->st0 >= H2_CS_ERROR) {
6050 cs->flags |= CS_FL_ERROR;
6051 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);
6052 return 0;
6053 }
6054
Christopher Faulet9b79a102019-07-15 11:22:56 +02006055 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006056
Willy Tarreau0bad0432018-06-14 16:54:01 +02006057 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006058 h2s->flags |= H2_SF_OUTGOING_DATA;
6059
Willy Tarreau751f2d02018-10-05 09:35:00 +02006060 if (h2s->id == 0) {
6061 int32_t id = h2c_get_next_sid(h2s->h2c);
6062
6063 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02006064 cs->flags |= CS_FL_ERROR;
Willy Tarreau7838a792019-08-12 18:42:03 +02006065 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 +02006066 return 0;
6067 }
6068
6069 eb32_delete(&h2s->by_id);
6070 h2s->by_id.key = h2s->id = id;
6071 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006072 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006073 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6074 }
6075
Christopher Faulet9b79a102019-07-15 11:22:56 +02006076 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6077 count && !htx_is_empty(htx)) {
6078 idx = htx_get_head(htx);
6079 blk = htx_get_blk(htx, idx);
6080 btype = htx_get_blk_type(blk);
6081 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006082
Christopher Faulet9b79a102019-07-15 11:22:56 +02006083 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006084 case HTX_BLK_REQ_SL:
6085 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006086 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006087 if (ret > 0) {
6088 total += ret;
6089 count -= ret;
6090 if (ret < bsize)
6091 goto done;
6092 }
6093 break;
6094
Willy Tarreau115e83b2018-12-01 19:17:53 +01006095 case HTX_BLK_RES_SL:
6096 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006097 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006098 if (ret > 0) {
6099 total += ret;
6100 count -= ret;
6101 if (ret < bsize)
6102 goto done;
6103 }
6104 break;
6105
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006106 case HTX_BLK_DATA:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006107 case HTX_BLK_EOM:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006108 /* all these cause the emission of a DATA frame (possibly empty).
6109 * This EOM necessarily is one before trailers, as the EOM following
6110 * trailers would have been consumed by the trailers parser.
6111 */
Christopher Faulet142854b2020-12-02 15:12:40 +01006112 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006113 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006114 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006115 total += ret;
6116 count -= ret;
6117 if (ret < bsize)
6118 goto done;
6119 }
6120 break;
6121
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006122 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006123 case HTX_BLK_EOT:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006124 /* This is the first trailers block, all the subsequent ones AND
6125 * the EOM will be swallowed by the parser.
6126 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006127 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006128 if (ret > 0) {
6129 total += ret;
6130 count -= ret;
6131 if (ret < bsize)
6132 goto done;
6133 }
6134 break;
6135
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006136 default:
6137 htx_remove_blk(htx, blk);
6138 total += bsize;
6139 count -= bsize;
6140 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006141 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006142 }
6143
Christopher Faulet9b79a102019-07-15 11:22:56 +02006144 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006145 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006146 /* trim any possibly pending data after we close (extra CR-LF,
6147 * unprocessed trailers, abnormal extra data, ...)
6148 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006149 total += count;
6150 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006151 }
6152
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006153 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006154 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006155 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 +01006156 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006157 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006158 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006159 }
6160
Christopher Faulet9b79a102019-07-15 11:22:56 +02006161 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006162
Olivier Houchard7505f942018-08-21 18:10:44 +02006163 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006164 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006165 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 +02006166 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006167 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006168
Olivier Houchard7505f942018-08-21 18:10:44 +02006169 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006170 /* If we're waiting for flow control, and we got a shutr on the
6171 * connection, we will never be unlocked, so add an error on
6172 * the conn_stream.
6173 */
6174 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
6175 !b_data(&h2s->h2c->dbuf) &&
6176 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006177 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 +01006178 if (cs->flags & CS_FL_EOS)
6179 cs->flags |= CS_FL_ERROR;
6180 else
6181 cs->flags |= CS_FL_ERR_PENDING;
6182 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006183
Willy Tarreau5723f292020-01-10 15:16:57 +01006184 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6185 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006186 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006187 LIST_DEL_INIT(&h2s->list);
6188 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006189
Willy Tarreau7838a792019-08-12 18:42:03 +02006190 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006191 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006192}
6193
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006194/* for debugging with CLI's "show fd" command */
Willy Tarreau83061a82018-07-13 11:56:34 +02006195static void h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006196{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01006197 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01006198 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006199 struct eb32_node *node;
6200 int fctl_cnt = 0;
6201 int send_cnt = 0;
6202 int tree_cnt = 0;
6203 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02006204 struct buffer *hmbuf, *tmbuf;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006205
6206 if (!h2c)
6207 return;
6208
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006209 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006210 fctl_cnt++;
6211
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006212 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006213 send_cnt++;
6214
Willy Tarreau3af37712018-12-18 14:34:41 +01006215 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006216 node = eb32_first(&h2c->streams_by_id);
6217 while (node) {
6218 h2s = container_of(node, struct h2s, by_id);
6219 tree_cnt++;
6220 if (!h2s->cs)
6221 orph_cnt++;
6222 node = eb32_next(node);
6223 }
6224
Willy Tarreau60f62682019-05-26 11:32:27 +02006225 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006226 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006227 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau987c0632018-12-18 10:32:05 +01006228 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02006229 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
6230 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006231 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau616ac812018-07-24 14:12:42 +02006232 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006233 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006234 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
6235 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
6236 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02006237 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6238 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6239 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006240 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6241 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006242
6243 if (h2s) {
Willy Tarreaued4464e2021-01-20 15:50:03 +01006244 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 +02006245 h2s, h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
Willy Tarreau987c0632018-12-18 10:32:05 +01006246 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
6247 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
6248 h2s->cs);
6249 if (h2s->cs)
Willy Tarreau98e40b92021-01-20 16:27:01 +01006250 chunk_appendf(msg, "(.flg=0x%08x .data=%p)",
Willy Tarreau987c0632018-12-18 10:32:05 +01006251 h2s->cs->flags, h2s->cs->data);
Willy Tarreau98e40b92021-01-20 16:27:01 +01006252
6253 chunk_appendf(&trash, " .subs=%p", h2s->subs);
6254 if (h2s->subs) {
6255 if (h2s->subs) {
6256 chunk_appendf(&trash, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
6257 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
6258 h2s->subs->tasklet->calls,
6259 h2s->subs->tasklet->context);
6260 resolve_sym_name(&trash, NULL, h2s->subs->tasklet->process);
6261 chunk_appendf(&trash, ")");
6262 }
6263 }
Willy Tarreau987c0632018-12-18 10:32:05 +01006264 }
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006265}
Willy Tarreau62f52692017-10-08 23:01:42 +02006266
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006267/* Migrate the the connection to the current thread.
6268 * Return 0 if successful, non-zero otherwise.
6269 * Expected to be called with the old thread lock held.
6270 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006271static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006272{
6273 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006274 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006275
6276 if (fd_takeover(conn->handle.fd, conn) != 0)
6277 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006278
6279 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6280 /* We failed to takeover the xprt, even if the connection may
6281 * still be valid, flag it as error'd, as we have already
6282 * taken over the fd, and wake the tasklet, so that it will
6283 * destroy it.
6284 */
6285 conn->flags |= CO_FL_ERROR;
6286 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6287 return -1;
6288 }
6289
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006290 if (h2c->wait_event.events)
6291 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6292 h2c->wait_event.events, &h2c->wait_event);
6293 /* To let the tasklet know it should free itself, and do nothing else,
6294 * set its context to NULL.
6295 */
6296 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006297 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006298
6299 task = h2c->task;
6300 if (task) {
6301 task->context = NULL;
6302 h2c->task = NULL;
6303 __ha_barrier_store();
6304 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006305
6306 h2c->task = task_new(tid_bit);
6307 if (!h2c->task) {
6308 h2_release(h2c);
6309 return -1;
6310 }
6311 h2c->task->process = h2_timeout_task;
6312 h2c->task->context = h2c;
6313 }
6314 h2c->wait_event.tasklet = tasklet_new();
6315 if (!h2c->wait_event.tasklet) {
6316 h2_release(h2c);
6317 return -1;
6318 }
6319 h2c->wait_event.tasklet->process = h2_io_cb;
6320 h2c->wait_event.tasklet->context = h2c;
6321 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6322 SUB_RETRY_RECV, &h2c->wait_event);
6323
6324 return 0;
6325}
6326
Willy Tarreau62f52692017-10-08 23:01:42 +02006327/*******************************************************/
6328/* functions below are dedicated to the config parsers */
6329/*******************************************************/
6330
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006331/* config parser for global "tune.h2.header-table-size" */
6332static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
6333 struct proxy *defpx, const char *file, int line,
6334 char **err)
6335{
6336 if (too_many_args(1, args, err, NULL))
6337 return -1;
6338
6339 h2_settings_header_table_size = atoi(args[1]);
6340 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6341 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6342 return -1;
6343 }
6344 return 0;
6345}
Willy Tarreau62f52692017-10-08 23:01:42 +02006346
Willy Tarreaue6baec02017-07-27 11:45:11 +02006347/* config parser for global "tune.h2.initial-window-size" */
6348static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
6349 struct proxy *defpx, const char *file, int line,
6350 char **err)
6351{
6352 if (too_many_args(1, args, err, NULL))
6353 return -1;
6354
6355 h2_settings_initial_window_size = atoi(args[1]);
6356 if (h2_settings_initial_window_size < 0) {
6357 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6358 return -1;
6359 }
6360 return 0;
6361}
6362
Willy Tarreau5242ef82017-07-27 11:47:28 +02006363/* config parser for global "tune.h2.max-concurrent-streams" */
6364static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
6365 struct proxy *defpx, const char *file, int line,
6366 char **err)
6367{
6368 if (too_many_args(1, args, err, NULL))
6369 return -1;
6370
6371 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006372 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006373 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6374 return -1;
6375 }
6376 return 0;
6377}
6378
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006379/* config parser for global "tune.h2.max-frame-size" */
6380static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
6381 struct proxy *defpx, const char *file, int line,
6382 char **err)
6383{
6384 if (too_many_args(1, args, err, NULL))
6385 return -1;
6386
6387 h2_settings_max_frame_size = atoi(args[1]);
6388 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6389 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6390 return -1;
6391 }
6392 return 0;
6393}
6394
Willy Tarreau62f52692017-10-08 23:01:42 +02006395
6396/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006397/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006398/***************************************/
6399
6400/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006401static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006402 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006403 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006404 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006405 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006406 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006407 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006408 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01006409 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02006410 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006411 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006412 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006413 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006414 .shutr = h2_shutr,
6415 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006416 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006417 .show_fd = h2_show_fd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006418 .takeover = h2_takeover,
Amaury Denoyelle3d3c0912020-10-14 18:17:06 +02006419 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX|MX_FL_HOL_RISK,
Willy Tarreau62f52692017-10-08 23:01:42 +02006420 .name = "H2",
6421};
6422
Christopher Faulet32f61c02018-04-10 14:33:41 +02006423static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006424 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006425
Willy Tarreau0108d902018-11-25 19:14:37 +01006426INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6427
Willy Tarreau62f52692017-10-08 23:01:42 +02006428/* config keyword parsers */
6429static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006430 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006431 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006432 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006433 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006434 { 0, NULL, NULL }
6435}};
6436
Willy Tarreau0108d902018-11-25 19:14:37 +01006437INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006438
6439/* initialize internal structs after the config is parsed.
6440 * Returns zero on success, non-zero on error.
6441 */
6442static int init_h2()
6443{
6444 pool_head_hpack_tbl = create_pool("hpack_tbl",
6445 h2_settings_header_table_size,
6446 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01006447 if (!pool_head_hpack_tbl) {
6448 ha_alert("failed to allocate hpack_tbl memory pool\n");
6449 return (ERR_ALERT | ERR_FATAL);
6450 }
6451 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006452}
6453
6454REGISTER_POST_CHECK(init_h2);