blob: 9cb6eba758b1ab69cd7e8266f580f3e62b20b553 [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 Tarreau3d4631f2021-01-20 10:53:13 +010067#define H2_CF_WINDOW_OPENED 0x00010000 // demux increased window already advertised
68#define H2_CF_RCVD_SHUT 0x00020000 // a recv() attempt already failed on a shutdown
69#define H2_CF_END_REACHED 0x00040000 // pending data too short with RCVD_SHUT present
Willy Tarreau081d4722017-05-16 21:51:05 +020070
Willy Tarreau5ab6b572017-09-22 08:05:00 +020071/* H2 connection state, in h2c->st0 */
72enum h2_cs {
73 H2_CS_PREFACE, // init done, waiting for connection preface
74 H2_CS_SETTINGS1, // preface OK, waiting for first settings frame
75 H2_CS_FRAME_H, // first settings frame ok, waiting for frame header
76 H2_CS_FRAME_P, // frame header OK, waiting for frame payload
Willy Tarreaua20a5192017-12-27 11:02:06 +010077 H2_CS_FRAME_A, // frame payload OK, trying to send ACK frame
78 H2_CS_FRAME_E, // frame payload OK, trying to send RST frame
Willy Tarreau5ab6b572017-09-22 08:05:00 +020079 H2_CS_ERROR, // send GOAWAY(errcode) and close the connection ASAP
80 H2_CS_ERROR2, // GOAWAY(errcode) sent, close the connection ASAP
81 H2_CS_ENTRIES // must be last
82} __attribute__((packed));
83
Willy Tarreau51330962019-05-26 09:38:07 +020084
Willy Tarreau9c218e72019-05-26 10:08:28 +020085/* 32 buffers: one for the ring's root, rest for the mbuf itself */
86#define H2C_MBUF_CNT 32
Willy Tarreau51330962019-05-26 09:38:07 +020087
Willy Tarreau5ab6b572017-09-22 08:05:00 +020088/* H2 connection descriptor */
89struct h2c {
90 struct connection *conn;
91
92 enum h2_cs st0; /* mux state */
93 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
94
95 /* 16 bit hole here */
96 uint32_t flags; /* connection flags: H2_CF_* */
Willy Tarreau2e2083a2019-01-31 10:34:07 +010097 uint32_t streams_limit; /* maximum number of concurrent streams the peer supports */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020098 int32_t max_id; /* highest ID known on this connection, <0 before preface */
99 uint32_t rcvd_c; /* newly received data to ACK for the connection */
100 uint32_t rcvd_s; /* newly received data to ACK for the current stream (dsi) */
101
102 /* states for the demux direction */
103 struct hpack_dht *ddht; /* demux dynamic header table */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200104 struct buffer dbuf; /* demux buffer */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200105
106 int32_t dsi; /* demux stream ID (<0 = idle) */
107 int32_t dfl; /* demux frame length (if dsi >= 0) */
108 int8_t dft; /* demux frame type (if dsi >= 0) */
109 int8_t dff; /* demux frame flags (if dsi >= 0) */
Willy Tarreau05e5daf2017-12-11 15:17:36 +0100110 uint8_t dpl; /* demux pad length (part of dfl), init to 0 */
111 /* 8 bit hole here */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200112 int32_t last_sid; /* last processed stream ID for GOAWAY, <0 before preface */
113
114 /* states for the mux direction */
Willy Tarreau51330962019-05-26 09:38:07 +0200115 struct buffer mbuf[H2C_MBUF_CNT]; /* mux buffers (ring) */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200116 int32_t msi; /* mux stream ID (<0 = idle) */
117 int32_t mfl; /* mux frame length (if dsi >= 0) */
118 int8_t mft; /* mux frame type (if dsi >= 0) */
119 int8_t mff; /* mux frame flags (if dsi >= 0) */
120 /* 16 bit hole here */
121 int32_t miw; /* mux initial window size for all new streams */
122 int32_t mws; /* mux window size. Can be negative. */
123 int32_t mfs; /* mux's max frame size */
124
Willy Tarreauea392822017-10-31 10:02:25 +0100125 int timeout; /* idle timeout duration in ticks */
Willy Tarreau599391a2017-11-24 10:16:00 +0100126 int shut_timeout; /* idle timeout duration in ticks after GOAWAY was sent */
Willy Tarreau49745612017-12-03 18:56:02 +0100127 unsigned int nb_streams; /* number of streams in the tree */
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200128 unsigned int nb_cs; /* number of attached conn_streams */
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100129 unsigned int nb_reserved; /* number of reserved streams */
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100130 unsigned int stream_cnt; /* total number of streams seen */
Willy Tarreau0b37d652018-10-03 10:33:02 +0200131 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +0100132 struct task *task; /* timeout management task */
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100133 struct h2_counters *px_counters; /* h2 counters attached to proxy */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200134 struct eb_root streams_by_id; /* all active streams by their ID */
135 struct list send_list; /* list of blocked streams requesting to send */
136 struct list fctl_list; /* list of streams blocked by connection's fctl */
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200137 struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100138 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200139 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200140};
141
Willy Tarreau18312642017-10-11 07:57:07 +0200142/* H2 stream state, in h2s->st */
143enum h2_ss {
144 H2_SS_IDLE = 0, // idle
145 H2_SS_RLOC, // reserved(local)
146 H2_SS_RREM, // reserved(remote)
147 H2_SS_OPEN, // open
148 H2_SS_HREM, // half-closed(remote)
149 H2_SS_HLOC, // half-closed(local)
Willy Tarreau96060ba2017-10-16 18:34:34 +0200150 H2_SS_ERROR, // an error needs to be sent using RST_STREAM
Willy Tarreau18312642017-10-11 07:57:07 +0200151 H2_SS_CLOSED, // closed
152 H2_SS_ENTRIES // must be last
153} __attribute__((packed));
154
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200155#define H2_SS_MASK(state) (1UL << (state))
156#define H2_SS_IDLE_BIT (1UL << H2_SS_IDLE)
157#define H2_SS_RLOC_BIT (1UL << H2_SS_RLOC)
158#define H2_SS_RREM_BIT (1UL << H2_SS_RREM)
159#define H2_SS_OPEN_BIT (1UL << H2_SS_OPEN)
160#define H2_SS_HREM_BIT (1UL << H2_SS_HREM)
161#define H2_SS_HLOC_BIT (1UL << H2_SS_HLOC)
162#define H2_SS_ERROR_BIT (1UL << H2_SS_ERROR)
163#define H2_SS_CLOSED_BIT (1UL << H2_SS_CLOSED)
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200164
Willy Tarreau18312642017-10-11 07:57:07 +0200165/* HTTP/2 stream flags (32 bit), in h2s->flags */
166#define H2_SF_NONE 0x00000000
167#define H2_SF_ES_RCVD 0x00000001
168#define H2_SF_ES_SENT 0x00000002
169
170#define H2_SF_RST_RCVD 0x00000004 // received RST_STREAM
171#define H2_SF_RST_SENT 0x00000008 // sent RST_STREAM
172
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200173/* stream flags indicating the reason the stream is blocked */
174#define H2_SF_BLK_MBUSY 0x00000010 // blocked waiting for mux access (transient)
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200175#define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux (must be in send list)
176#define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl (must be in fctl list)
177#define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl (must be in blocked list)
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200178#define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above
179
Willy Tarreau454f9052017-10-26 19:40:35 +0200180/* stream flags indicating how data is supposed to be sent */
181#define H2_SF_DATA_CLEN 0x00000100 // data sent using content-length
Christopher Faulet7d247f02020-12-02 14:26:36 +0100182#define H2_SF_BODYLESS_RESP 0x00000200 /* Bodyless response message */
Christopher Fauletd0db4232021-01-22 11:46:30 +0100183#define H2_SF_BODY_TUNNEL 0x00000400 // Attempt to establish a Tunnelled stream (the result depends on the status code)
184
Willy Tarreau454f9052017-10-26 19:40:35 +0200185
Willy Tarreaud9464162020-01-10 18:25:07 +0100186#define H2_SF_NOTIFIED 0x00000800 // a paused stream was notified to try to send again
Willy Tarreau67434202017-11-06 20:20:51 +0100187#define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream
Willy Tarreauc4312d32017-11-07 12:01:53 +0100188#define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data
Willy Tarreau67434202017-11-06 20:20:51 +0100189
Willy Tarreau6cc85a52019-01-02 15:49:20 +0100190#define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream
191
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200192#define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy)
193#define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy)
Willy Tarreau3cf69fe2019-05-14 10:44:40 +0200194#define H2_SF_KILL_CONN 0x00020000 // kill the whole connection with this stream
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200195
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100196#define H2_SF_EXT_CONNECT_SENT 0x00040000 // rfc 8441 an Extended CONNECT has been sent
Amaury Denoyelleefe22762020-12-11 17:53:08 +0100197#define H2_SF_EXT_CONNECT_RCVD 0x00080000 // rfc 8441 an Extended CONNECT has been received and parsed
Christopher Fauletd0db4232021-01-22 11:46:30 +0100198
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100199#define H2_SF_TUNNEL_ABRT 0x00100000 // A tunnel attempt was aborted
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200200
Willy Tarreau18312642017-10-11 07:57:07 +0200201/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
Christopher Fauletfafd1b02020-11-03 18:25:52 +0100202 * it is being processed in the internal HTTP representation (HTX).
Willy Tarreau18312642017-10-11 07:57:07 +0200203 */
204struct h2s {
205 struct conn_stream *cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100206 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200207 struct h2c *h2c;
Willy Tarreau18312642017-10-11 07:57:07 +0200208 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200209 int32_t id; /* stream ID */
210 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200211 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200212 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
213 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200214 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100215 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200216 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Willy Tarreauf96508a2020-01-10 11:12:48 +0100217 struct wait_event *subs; /* recv wait_event the conn_stream associated is waiting on (via h2_subscribe) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200218 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Willy Tarreau5723f292020-01-10 15:16:57 +0100219 struct tasklet *shut_tl; /* deferred shutdown tasklet, to retry to send an RST after we failed to,
220 * in case there's no other subscription to do it */
Amaury Denoyelle74162742020-12-11 17:53:05 +0100221
222 char upgrade_protocol[16]; /* rfc 8441: requested protocol on Extended CONNECT */
Willy Tarreau18312642017-10-11 07:57:07 +0200223};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200224
Willy Tarreauc6405142017-09-21 20:23:50 +0200225/* descriptor for an h2 frame header */
226struct h2_fh {
227 uint32_t len; /* length, host order, 24 bits */
228 uint32_t sid; /* stream id, host order, 31 bits */
229 uint8_t ft; /* frame type */
230 uint8_t ff; /* frame flags */
231};
232
Willy Tarreau12ae2122019-08-08 18:23:12 +0200233/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200234static void h2_trace(enum trace_level level, uint64_t mask, \
235 const struct trace_source *src,
236 const struct ist where, const struct ist func,
237 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200238
239/* The event representation is split like this :
240 * strm - application layer
241 * h2s - internal H2 stream
242 * h2c - internal H2 connection
243 * conn - external connection
244 *
245 */
246static const struct trace_event h2_trace_events[] = {
247#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200248 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200249#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200250 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200251#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200252 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200253#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200254 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200255#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200256 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200257#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200258 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200259#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200260 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200261#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200262 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200263#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200264 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200265#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200266 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200267#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200268 { .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 +0200269#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200270 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200271#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200272 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200273#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200274 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200275#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200276 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200277#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200278 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200279#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200280 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200281#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200282 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200283#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200284 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200285#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200286 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200287#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200288 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200289#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200290 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200291#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200292 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200293#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200294 { .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 +0200295#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200296 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200297#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200298 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200299#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200300 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200301#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200302 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200303#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200304 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200305#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200306 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200307#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200308 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200309#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200310 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200311#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200312 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200313#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200314 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200315#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200316 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200317#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200318 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200319#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200320 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200321#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200322 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200323#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200324 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200325#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200326 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200327#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200328 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200329#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200330 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200331#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200332 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200333#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200334 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200335#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200336 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200337#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200338 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200339#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200340 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200341#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200342 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200343#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200344 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200345#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200346 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200347#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200348 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200349#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200350 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200351 { }
352};
353
354static const struct name_desc h2_trace_lockon_args[4] = {
355 /* arg1 */ { /* already used by the connection */ },
356 /* arg2 */ { .name="h2s", .desc="H2 stream" },
357 /* arg3 */ { },
358 /* arg4 */ { }
359};
360
361static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200362#define H2_VERB_CLEAN 1
363 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
364#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200365 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200366#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200367 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200368#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200369 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200370#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200371 { .name="complete", .desc="add full data dump when available" },
372 { /* end */ }
373};
374
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200375static struct trace_source trace_h2 __read_mostly = {
Willy Tarreau12ae2122019-08-08 18:23:12 +0200376 .name = IST("h2"),
377 .desc = "HTTP/2 multiplexer",
378 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200379 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200380 .known_events = h2_trace_events,
381 .lockon_args = h2_trace_lockon_args,
382 .decoding = h2_trace_decoding,
383 .report_events = ~0, // report everything by default
384};
385
386#define TRACE_SOURCE &trace_h2
387INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
388
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100389/* h2 stats module */
390enum {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100391 H2_ST_HEADERS_RCVD,
392 H2_ST_DATA_RCVD,
393 H2_ST_SETTINGS_RCVD,
394 H2_ST_RST_STREAM_RCVD,
395 H2_ST_GOAWAY_RCVD,
396
Amaury Denoyellea8879232020-10-27 17:16:03 +0100397 H2_ST_CONN_PROTO_ERR,
398 H2_ST_STRM_PROTO_ERR,
399 H2_ST_RST_STREAM_RESP,
400 H2_ST_GOAWAY_RESP,
401
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100402 H2_ST_OPEN_CONN,
403 H2_ST_OPEN_STREAM,
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100404 H2_ST_TOTAL_CONN,
405 H2_ST_TOTAL_STREAM,
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100406
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100407 H2_STATS_COUNT /* must be the last member of the enum */
408};
409
410static struct name_desc h2_stats[] = {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100411 [H2_ST_HEADERS_RCVD] = { .name = "h2_headers_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100412 .desc = "Total number of received HEADERS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100413 [H2_ST_DATA_RCVD] = { .name = "h2_data_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100414 .desc = "Total number of received DATA frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100415 [H2_ST_SETTINGS_RCVD] = { .name = "h2_settings_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100416 .desc = "Total number of received SETTINGS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100417 [H2_ST_RST_STREAM_RCVD] = { .name = "h2_rst_stream_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100418 .desc = "Total number of received RST_STREAM frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100419 [H2_ST_GOAWAY_RCVD] = { .name = "h2_goaway_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100420 .desc = "Total number of received GOAWAY frames" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100421
422 [H2_ST_CONN_PROTO_ERR] = { .name = "h2_detected_conn_protocol_errors",
423 .desc = "Total number of connection protocol errors" },
424 [H2_ST_STRM_PROTO_ERR] = { .name = "h2_detected_strm_protocol_errors",
425 .desc = "Total number of stream protocol errors" },
426 [H2_ST_RST_STREAM_RESP] = { .name = "h2_rst_stream_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100427 .desc = "Total number of RST_STREAM sent on detected error" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100428 [H2_ST_GOAWAY_RESP] = { .name = "h2_goaway_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100429 .desc = "Total number of GOAWAY sent on detected error" },
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100430
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100431 [H2_ST_OPEN_CONN] = { .name = "h2_open_connections",
432 .desc = "Count of currently open connections" },
433 [H2_ST_OPEN_STREAM] = { .name = "h2_backend_open_streams",
434 .desc = "Count of currently open streams" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100435 [H2_ST_TOTAL_CONN] = { .name = "h2_total_connections",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100436 .desc = "Total number of connections" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100437 [H2_ST_TOTAL_STREAM] = { .name = "h2_backend_total_streams",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100438 .desc = "Total number of streams" },
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100439};
440
441static struct h2_counters {
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100442 long long headers_rcvd; /* total number of HEADERS frame received */
443 long long data_rcvd; /* total number of DATA frame received */
444 long long settings_rcvd; /* total number of SETTINGS frame received */
445 long long rst_stream_rcvd; /* total number of RST_STREAM frame received */
446 long long goaway_rcvd; /* total number of GOAWAY frame received */
Amaury Denoyellea8879232020-10-27 17:16:03 +0100447
448 long long conn_proto_err; /* total number of protocol errors detected */
449 long long strm_proto_err; /* total number of protocol errors detected */
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100450 long long rst_stream_resp; /* total number of RST_STREAM frame sent on error */
451 long long goaway_resp; /* total number of GOAWAY frame sent on error */
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100452
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100453 long long open_conns; /* count of currently open connections */
454 long long open_streams; /* count of currently open streams */
455 long long total_conns; /* total number of connections */
456 long long total_streams; /* total number of streams */
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100457} h2_counters;
458
459static void h2_fill_stats(void *data, struct field *stats)
460{
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100461 struct h2_counters *counters = data;
462
463 stats[H2_ST_HEADERS_RCVD] = mkf_u64(FN_COUNTER, counters->headers_rcvd);
464 stats[H2_ST_DATA_RCVD] = mkf_u64(FN_COUNTER, counters->data_rcvd);
465 stats[H2_ST_SETTINGS_RCVD] = mkf_u64(FN_COUNTER, counters->settings_rcvd);
466 stats[H2_ST_RST_STREAM_RCVD] = mkf_u64(FN_COUNTER, counters->rst_stream_rcvd);
467 stats[H2_ST_GOAWAY_RCVD] = mkf_u64(FN_COUNTER, counters->goaway_rcvd);
Amaury Denoyellea8879232020-10-27 17:16:03 +0100468
469 stats[H2_ST_CONN_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->conn_proto_err);
470 stats[H2_ST_STRM_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->strm_proto_err);
471 stats[H2_ST_RST_STREAM_RESP] = mkf_u64(FN_COUNTER, counters->rst_stream_resp);
472 stats[H2_ST_GOAWAY_RESP] = mkf_u64(FN_COUNTER, counters->goaway_resp);
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100473
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100474 stats[H2_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
475 stats[H2_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
476 stats[H2_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
477 stats[H2_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100478}
479
480static struct stats_module h2_stats_module = {
481 .name = "h2",
482 .fill_stats = h2_fill_stats,
483 .stats = h2_stats,
484 .stats_count = H2_STATS_COUNT,
485 .counters = &h2_counters,
486 .counters_size = sizeof(h2_counters),
487 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
488 .clearable = 1,
489};
490
491INITCALL1(STG_REGISTER, stats_register_module, &h2_stats_module);
492
Willy Tarreau8ceae722018-11-26 11:58:30 +0100493/* the h2c connection pool */
494DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
495
496/* the h2s stream pool */
497DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
498
Willy Tarreaudc572362018-12-12 08:08:05 +0100499/* The default connection window size is 65535, it may only be enlarged using
500 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
501 * we'll pretend we already received the difference between the two to send
502 * an equivalent window update to enlarge it to 2G-1.
503 */
504#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
505
Willy Tarreau455d5682019-05-24 19:42:18 +0200506/* maximum amount of data we're OK with re-aligning for buffer optimizations */
507#define MAX_DATA_REALIGN 1024
508
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200509/* a few settings from the global section */
510static int h2_settings_header_table_size = 4096; /* initial value */
Willy Tarreaue6baec02017-07-27 11:45:11 +0200511static int h2_settings_initial_window_size = 65535; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100512static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100513static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200514
Willy Tarreau2a856182017-05-16 15:20:39 +0200515/* a dmumy closed stream */
516static const struct h2s *h2_closed_stream = &(const struct h2s){
517 .cs = NULL,
518 .h2c = NULL,
519 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100520 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100521 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200522 .id = 0,
523};
524
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100525/* a dmumy closed stream returning a PROTOCOL_ERROR error */
526static const struct h2s *h2_error_stream = &(const struct h2s){
527 .cs = NULL,
528 .h2c = NULL,
529 .st = H2_SS_CLOSED,
530 .errcode = H2_ERR_PROTOCOL_ERROR,
531 .flags = 0,
532 .id = 0,
533};
534
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100535/* a dmumy closed stream returning a REFUSED_STREAM error */
536static const struct h2s *h2_refused_stream = &(const struct h2s){
537 .cs = NULL,
538 .h2c = NULL,
539 .st = H2_SS_CLOSED,
540 .errcode = H2_ERR_REFUSED_STREAM,
541 .flags = 0,
542 .id = 0,
543};
544
Willy Tarreau2a856182017-05-16 15:20:39 +0200545/* and a dummy idle stream for use with any unannounced stream */
546static const struct h2s *h2_idle_stream = &(const struct h2s){
547 .cs = NULL,
548 .h2c = NULL,
549 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100550 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200551 .id = 0,
552};
553
Willy Tarreau144f84a2021-03-02 16:09:26 +0100554struct task *h2_timeout_task(struct task *t, void *context, unsigned int state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200555static int h2_send(struct h2c *h2c);
556static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200557static int h2_process(struct h2c *h2c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100558/* h2_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100559struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100560static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Amaury Denoyelle74162742020-12-11 17:53:05 +0100561static int h2c_decode_headers(struct h2c *h2c, struct buffer *rxbuf, uint32_t *flags, unsigned long long *body_len, char *upgrade_protocol);
Willy Tarreaua56a6de2018-02-26 15:59:07 +0100562static int h2_frt_transfer_data(struct h2s *h2s);
Willy Tarreau144f84a2021-03-02 16:09:26 +0100563struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state);
Olivier Houchardf502aca2018-12-14 19:42:40 +0100564static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100565static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200566
Willy Tarreauab2ec452019-08-30 07:07:08 +0200567/* returns a h2c state as an abbreviated 3-letter string, or "???" if unknown */
568static inline const char *h2c_st_to_str(enum h2_cs st)
569{
570 switch (st) {
571 case H2_CS_PREFACE: return "PRF";
572 case H2_CS_SETTINGS1: return "STG";
573 case H2_CS_FRAME_H: return "FRH";
574 case H2_CS_FRAME_P: return "FRP";
575 case H2_CS_FRAME_A: return "FRA";
576 case H2_CS_FRAME_E: return "FRE";
577 case H2_CS_ERROR: return "ERR";
578 case H2_CS_ERROR2: return "ER2";
579 default: return "???";
580 }
581}
582
583/* returns a h2s state as an abbreviated 3-letter string, or "???" if unknown */
584static inline const char *h2s_st_to_str(enum h2_ss st)
585{
586 switch (st) {
587 case H2_SS_IDLE: return "IDL"; // idle
588 case H2_SS_RLOC: return "RSL"; // reserved local
589 case H2_SS_RREM: return "RSR"; // reserved remote
590 case H2_SS_OPEN: return "OPN"; // open
591 case H2_SS_HREM: return "HCR"; // half-closed remote
592 case H2_SS_HLOC: return "HCL"; // half-closed local
593 case H2_SS_ERROR : return "ERR"; // error
594 case H2_SS_CLOSED: return "CLO"; // closed
595 default: return "???";
596 }
597}
598
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200599/* the H2 traces always expect that arg1, if non-null, is of type connection
600 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
601 * that arg3, if non-null, is either of type htx for tx headers, or of type
602 * buffer for everything else.
603 */
604static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
605 const struct ist where, const struct ist func,
606 const void *a1, const void *a2, const void *a3, const void *a4)
607{
608 const struct connection *conn = a1;
609 const struct h2c *h2c = conn ? conn->ctx : NULL;
610 const struct h2s *h2s = a2;
611 const struct buffer *buf = a3;
612 const struct htx *htx;
613 int pos;
614
615 if (!h2c) // nothing to add
616 return;
617
Willy Tarreau17104d42019-08-30 07:12:55 +0200618 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200619 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
620
Willy Tarreaue2f68e92021-06-16 17:47:24 +0200621 if (mask & H2_EV_H2C_NEW) // inside h2_init, otherwise it's hard to match conn & h2c
622 conn_append_debug_info(&trace_buf, conn, " : ");
623
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100624 if (h2c->errcode)
625 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
626
Willy Tarreau73db4342019-09-25 07:28:44 +0200627 if (h2c->dsi >= 0 &&
628 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
Willy Tarreau8520d872020-09-18 07:39:29 +0200629 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 +0200630 }
631
632 if (h2s) {
633 if (h2s->id <= 0)
634 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
635 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100636 if (h2s->id && h2s->errcode)
637 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200638 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200639 }
640
641 /* Let's dump decoded requests and responses right after parsing. They
642 * are traced at level USER with a few recognizable flags.
643 */
644 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
645 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
646 htx = htxbuf(buf); // recv req/res
647 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
648 htx = a3; // send req/res
649 else
650 htx = NULL;
651
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200652 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200653 const struct htx_blk *blk = htx_get_blk(htx, pos);
654 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
655 enum htx_blk_type type = htx_get_blk_type(blk);
656
657 if (type == HTX_BLK_REQ_SL)
658 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200659 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200660 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
661 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
662 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
663 else if (type == HTX_BLK_RES_SL)
664 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200665 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200666 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
667 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
668 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
669 }
670}
671
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200672
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100673/* Detect a pending read0 for a H2 connection. It happens if a read0 was
674 * already reported on a previous xprt->rcvbuf() AND a frame parser failed
675 * to parse pending data, confirming no more progress is possible because
676 * we're facing a truncated frame. The function returns 1 to report a read0
677 * or 0 otherwise.
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200678 */
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100679static inline int h2c_read0_pending(struct h2c *h2c)
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200680{
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100681 return !!(h2c->flags & H2_CF_END_REACHED);
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200682}
683
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200684/* returns true if the connection is allowed to expire, false otherwise. A
685 * connection may expire when:
686 * - it has no stream
687 * - it has data in the mux buffer
688 * - it has streams in the blocked list
689 * - it has streams in the fctl list
690 * - it has streams in the send list
691 * Otherwise it means some streams are waiting in the data layer and it should
692 * not expire.
693 */
694static inline int h2c_may_expire(const struct h2c *h2c)
695{
696 return eb_is_empty(&h2c->streams_by_id) ||
697 br_data(h2c->mbuf) ||
698 !LIST_ISEMPTY(&h2c->blocked_list) ||
699 !LIST_ISEMPTY(&h2c->fctl_list) ||
Willy Tarreaud9464162020-01-10 18:25:07 +0100700 !LIST_ISEMPTY(&h2c->send_list);
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200701}
702
Olivier Houchard7a977432019-03-21 15:47:13 +0100703static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200704h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100705{
706 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
707 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
708 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
709 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200710 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100711 (conn_xprt_read0_pending(h2c->conn) ||
712 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
713 return 1;
714
715 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100716}
717
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200718/*****************************************************/
719/* functions below are for dynamic buffer management */
720/*****************************************************/
721
Willy Tarreau315d8072017-12-10 22:17:57 +0100722/* indicates whether or not the we may call the h2_recv() function to attempt
723 * to receive data into the buffer and/or demux pending data. The condition is
724 * a bit complex due to some API limits for now. The rules are the following :
725 * - if an error or a shutdown was detected on the connection and the buffer
726 * is empty, we must not attempt to receive
727 * - if the demux buf failed to be allocated, we must not try to receive and
728 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100729 * - if no flag indicates a blocking condition, we may attempt to receive,
730 * regardless of whether the demux buffer is full or not, so that only
731 * de demux part decides whether or not to block. This is needed because
732 * the connection API indeed prevents us from re-enabling receipt that is
733 * already enabled in a polled state, so we must always immediately stop
734 * as soon as the demux can't proceed so as never to hit an end of read
735 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100736 * - otherwise must may not attempt
737 */
738static inline int h2_recv_allowed(const struct h2c *h2c)
739{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200740 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100741 (h2c->st0 >= H2_CS_ERROR ||
742 h2c->conn->flags & CO_FL_ERROR ||
743 conn_xprt_read0_pending(h2c->conn)))
744 return 0;
745
746 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100747 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100748 return 1;
749
750 return 0;
751}
752
Willy Tarreau47b515a2018-12-21 16:09:41 +0100753/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200754static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100755{
756 if (!h2_recv_allowed(h2c))
757 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200758 if ((!consider_buffer || !b_data(&h2c->dbuf))
759 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100760 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200761 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100762}
763
764
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100765/* returns true if the front connection has too many conn_streams attached */
766static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200767{
Willy Tarreaua8754662018-12-23 20:43:58 +0100768 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200769}
770
Willy Tarreau44e973f2018-03-01 17:49:30 +0100771/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
772 * flags are used to figure what buffer was requested. It returns 1 if the
773 * allocation succeeds, in which case the connection is woken up, or 0 if it's
774 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200775 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100776static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200777{
778 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100779 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200780
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100781 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc(&h2c->dbuf)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200782 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200783 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200784 return 1;
785 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200786
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100787 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc(br_tail(h2c->mbuf))) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100788 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200789
790 if (h2c->flags & H2_CF_DEM_MROOM) {
791 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200792 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200793 }
Willy Tarreau14398122017-09-22 14:26:04 +0200794 return 1;
795 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100796
797 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
798 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100799 b_alloc(&h2s->rxbuf)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100800 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200801 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100802 return 1;
803 }
804
Willy Tarreau14398122017-09-22 14:26:04 +0200805 return 0;
806}
807
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200808static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200809{
810 struct buffer *buf = NULL;
811
Willy Tarreau2b718102021-04-21 07:32:39 +0200812 if (likely(!LIST_INLIST(&h2c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100813 unlikely((buf = b_alloc(bptr)) == NULL)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100814 h2c->buf_wait.target = h2c;
815 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreau2b718102021-04-21 07:32:39 +0200816 LIST_APPEND(&ti->buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200817 }
818 return buf;
819}
820
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200821static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200822{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200823 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100824 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100825 offer_buffers(NULL, 1);
Willy Tarreau14398122017-09-22 14:26:04 +0200826 }
827}
828
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200829static inline void h2_release_mbuf(struct h2c *h2c)
830{
831 struct buffer *buf;
832 unsigned int count = 0;
833
834 while (b_size(buf = br_head_pick(h2c->mbuf))) {
835 b_free(buf);
836 count++;
837 }
838 if (count)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100839 offer_buffers(NULL, count);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200840}
841
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100842/* returns the number of allocatable outgoing streams for the connection taking
843 * the last_sid and the reserved ones into account.
844 */
845static inline int h2_streams_left(const struct h2c *h2c)
846{
847 int ret;
848
849 /* consider the number of outgoing streams we're allowed to create before
850 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
851 * nb_reserved is the number of streams which don't yet have an ID.
852 */
853 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
854 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
855 if (ret < 0)
856 ret = 0;
857 return ret;
858}
859
Willy Tarreau00f18a32019-01-26 12:19:01 +0100860/* returns the number of streams in use on a connection to figure if it's
861 * idle or not. We check nb_cs and not nb_streams as the caller will want
862 * to know if it was the last one after a detach().
863 */
864static int h2_used_streams(struct connection *conn)
865{
866 struct h2c *h2c = conn->ctx;
867
868 return h2c->nb_cs;
869}
870
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100871/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100872static int h2_avail_streams(struct connection *conn)
873{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100874 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100875 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100876 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100877
Willy Tarreau6afec462019-01-28 06:40:19 +0100878 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
879 * streams on the connection.
880 */
881 if (h2c->last_sid >= 0)
882 return 0;
883
Willy Tarreauc61966f2019-10-31 15:10:03 +0100884 if (h2c->st0 >= H2_CS_ERROR)
885 return 0;
886
Willy Tarreau86949782019-01-31 10:42:05 +0100887 /* note: may be negative if a SETTINGS frame changes the limit */
888 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100889
890 /* we must also consider the limit imposed by stream IDs */
891 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100892 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100893 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100894 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
895 ret1 = MIN(ret1, ret2);
896 }
897 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100898}
899
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200900
Willy Tarreau62f52692017-10-08 23:01:42 +0200901/*****************************************************************/
902/* functions below are dedicated to the mux setup and management */
903/*****************************************************************/
904
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200905/* Initialize the mux once it's attached. For outgoing connections, the context
906 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200907 * connections from the fact that the context is still NULL (even during mux
908 * upgrades). <input> is always used as Input buffer and may contain data. It is
909 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200910 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200911static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
912 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200913{
914 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100915 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200916 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200917
Christopher Fauletf81ef032019-10-04 15:19:43 +0200918 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200919
Willy Tarreaubafbe012017-11-24 17:34:44 +0100920 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200921 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200922 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200923
Christopher Faulete9b70722019-04-08 10:46:02 +0200924 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200925 h2c->flags = H2_CF_IS_BACK;
926 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
927 if (tick_isset(prx->timeout.serverfin))
928 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100929
930 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
931 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200932 } else {
933 h2c->flags = H2_CF_NONE;
934 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
935 if (tick_isset(prx->timeout.clientfin))
936 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100937
938 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
939 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200940 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100941
Willy Tarreau0b37d652018-10-03 10:33:02 +0200942 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100943 h2c->task = NULL;
Willy Tarreau3f133572017-10-31 19:21:06 +0100944 if (tick_isset(h2c->timeout)) {
945 t = task_new(tid_bit);
946 if (!t)
947 goto fail;
948
949 h2c->task = t;
950 t->process = h2_timeout_task;
951 t->context = h2c;
952 t->expire = tick_add(now_ms, h2c->timeout);
953 }
Willy Tarreauea392822017-10-31 10:02:25 +0100954
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200955 h2c->wait_event.tasklet = tasklet_new();
956 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200957 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200958 h2c->wait_event.tasklet->process = h2_io_cb;
959 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100960 h2c->wait_event.events = 0;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200961 if (!conn_is_back(conn)) {
962 /* Connection might already be in the stopping_list if subject
963 * to h1->h2 upgrade.
964 */
965 if (!LIST_INLIST(&conn->stopping_list)) {
966 LIST_APPEND(&mux_stopping_data[tid].list,
967 &conn->stopping_list);
968 }
969 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200970
Willy Tarreau2bdcc702020-05-19 11:31:11 +0200971 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +0200972 if (!h2c->ddht)
973 goto fail;
974
975 /* Initialise the context. */
976 h2c->st0 = H2_CS_PREFACE;
977 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100978 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200979 h2c->max_id = -1;
980 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100981 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200982 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +0100983 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200984 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100985 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100986 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200987
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200988 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200989 h2c->dsi = -1;
990 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100991
Willy Tarreau32218eb2017-09-22 08:07:25 +0200992 h2c->last_sid = -1;
993
Willy Tarreau51330962019-05-26 09:38:07 +0200994 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +0200995 h2c->miw = 65535; /* mux initial window size */
996 h2c->mws = 65535; /* mux window size */
997 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +0200998 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200999 LIST_INIT(&h2c->send_list);
1000 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02001001 LIST_INIT(&h2c->blocked_list);
Willy Tarreau90f366b2021-02-20 11:49:49 +01001002 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001003
Christopher Fauletf81ef032019-10-04 15:19:43 +02001004 conn->ctx = h2c;
1005
Willy Tarreaue2f68e92021-06-16 17:47:24 +02001006 TRACE_USER("new H2 connection", H2_EV_H2C_NEW, conn);
1007
Willy Tarreau3f133572017-10-31 19:21:06 +01001008 if (t)
1009 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +01001010
Willy Tarreau01b44822018-10-03 14:26:37 +02001011 if (h2c->flags & H2_CF_IS_BACK) {
1012 /* FIXME: this is temporary, for outgoing connections we need
1013 * to immediately allocate a stream until the code is modified
1014 * so that the caller calls ->attach(). For now the outgoing cs
Christopher Fauletf81ef032019-10-04 15:19:43 +02001015 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +02001016 */
1017 struct h2s *h2s;
1018
Christopher Fauletf81ef032019-10-04 15:19:43 +02001019 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +02001020 if (!h2s)
1021 goto fail_stream;
1022 }
1023
Willy Tarreau4781b152021-04-06 13:53:36 +02001024 HA_ATOMIC_INC(&h2c->px_counters->open_conns);
1025 HA_ATOMIC_INC(&h2c->px_counters->total_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001026
Willy Tarreau0f383582018-10-03 14:22:21 +02001027 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02001028 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001029 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001030 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +02001031 fail_stream:
1032 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +02001033 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001034 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001035 if (h2c->wait_event.tasklet)
1036 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001037 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +02001038 fail_no_h2c:
Christopher Fauletf81ef032019-10-04 15:19:43 +02001039 conn->ctx = conn_ctx; /* restore saved ctx */
1040 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001041 return -1;
1042}
1043
Willy Tarreau751f2d02018-10-05 09:35:00 +02001044/* returns the next allocatable outgoing stream ID for the H2 connection, or
1045 * -1 if no more is allocatable.
1046 */
1047static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1048{
1049 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001050
1051 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001052 id = -1;
1053 return id;
1054}
1055
Willy Tarreau2373acc2017-10-12 17:35:14 +02001056/* returns the stream associated with id <id> or NULL if not found */
1057static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1058{
1059 struct eb32_node *node;
1060
Willy Tarreau751f2d02018-10-05 09:35:00 +02001061 if (id == 0)
1062 return (struct h2s *)h2_closed_stream;
1063
Willy Tarreau2a856182017-05-16 15:20:39 +02001064 if (id > h2c->max_id)
1065 return (struct h2s *)h2_idle_stream;
1066
Willy Tarreau2373acc2017-10-12 17:35:14 +02001067 node = eb32_lookup(&h2c->streams_by_id, id);
1068 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001069 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001070
1071 return container_of(node, struct h2s, by_id);
1072}
1073
Christopher Faulet73c12072019-04-08 11:23:22 +02001074/* release function. This one should be called to free all resources allocated
1075 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001076 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001077static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001078{
William Dauchy477757c2020-08-07 22:19:23 +02001079 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001080
Willy Tarreau7838a792019-08-12 18:42:03 +02001081 TRACE_ENTER(H2_EV_H2C_END);
1082
Willy Tarreau32218eb2017-09-22 08:07:25 +02001083 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +02001084 /* The connection must be aattached to this mux to be released */
1085 if (h2c->conn && h2c->conn->ctx == h2c)
1086 conn = h2c->conn;
1087
Willy Tarreau7838a792019-08-12 18:42:03 +02001088 TRACE_DEVEL("freeing h2c", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001089 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +02001090
Willy Tarreau2b718102021-04-21 07:32:39 +02001091 if (LIST_INLIST(&h2c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +01001092 LIST_DEL_INIT(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001093
Willy Tarreau44e973f2018-03-01 17:49:30 +01001094 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +02001095 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +01001096
Willy Tarreauea392822017-10-31 10:02:25 +01001097 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +02001098 h2c->task->context = NULL;
1099 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +01001100 h2c->task = NULL;
1101 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001102 if (h2c->wait_event.tasklet)
1103 tasklet_free(h2c->wait_event.tasklet);
Christopher Faulet21d849f2019-09-18 11:07:20 +02001104 if (conn && h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001105 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Christopher Faulet21d849f2019-09-18 11:07:20 +02001106 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001107
Willy Tarreau4781b152021-04-06 13:53:36 +02001108 HA_ATOMIC_DEC(&h2c->px_counters->open_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001109
Willy Tarreaubafbe012017-11-24 17:34:44 +01001110 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001111 }
1112
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001113 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001114 if (!conn_is_back(conn))
1115 LIST_DEL_INIT(&conn->stopping_list);
1116
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001117 conn->mux = NULL;
1118 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001119 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001120
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001121 conn_stop_tracking(conn);
1122 conn_full_close(conn);
1123 if (conn->destroy_cb)
1124 conn->destroy_cb(conn);
1125 conn_free(conn);
1126 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001127
1128 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001129}
1130
1131
Willy Tarreau71681172017-10-23 14:39:06 +02001132/******************************************************/
1133/* functions below are for the H2 protocol processing */
1134/******************************************************/
1135
1136/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001137static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001138{
1139 return h2s ? h2s->id : 0;
1140}
1141
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001142/* returns the sum of the stream's own window size and the mux's initial
1143 * window, which together form the stream's effective window size.
1144 */
1145static inline int h2s_mws(const struct h2s *h2s)
1146{
1147 return h2s->sws + h2s->h2c->miw;
1148}
1149
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001150/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001151static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001152{
1153 if (h2c->msi < 0)
1154 return 0;
1155
1156 if (h2c->msi == h2s_id(h2s))
1157 return 0;
1158
1159 return 1;
1160}
1161
Willy Tarreau741d6df2017-10-17 08:00:59 +02001162/* marks an error on the connection */
Willy Tarreau1f094672017-11-20 21:27:45 +01001163static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001164{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001165 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001166 h2c->errcode = err;
1167 h2c->st0 = H2_CS_ERROR;
1168}
1169
Willy Tarreau175cebb2019-01-24 10:02:24 +01001170/* marks an error on the stream. It may also update an already closed stream
1171 * (e.g. to report an error after an RST was received).
1172 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001173static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001174{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001175 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001176 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001177 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001178 if (h2s->st < H2_SS_ERROR)
1179 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +01001180 if (h2s->cs)
1181 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001182 }
1183}
1184
Willy Tarreau7e094452018-12-19 18:08:52 +01001185/* attempt to notify the data layer of recv availability */
1186static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1187{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001188 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001189 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001190 tasklet_wakeup(h2s->subs->tasklet);
1191 h2s->subs->events &= ~SUB_RETRY_RECV;
1192 if (!h2s->subs->events)
1193 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001194 }
1195}
1196
1197/* attempt to notify the data layer of send availability */
1198static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1199{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001200 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001201 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001202 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001203 tasklet_wakeup(h2s->subs->tasklet);
1204 h2s->subs->events &= ~SUB_RETRY_SEND;
1205 if (!h2s->subs->events)
1206 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001207 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001208 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1209 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1210 tasklet_wakeup(h2s->shut_tl);
1211 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001212}
1213
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001214/* alerts the data layer, trying to wake it up by all means, following
1215 * this sequence :
1216 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1217 * - if its subscribed to send, then it's woken up for send
1218 * - if it was subscribed to neither, its ->wake() callback is called
1219 * It is safe to call this function with a closed stream which doesn't have a
1220 * conn_stream anymore.
1221 */
1222static void __maybe_unused h2s_alert(struct h2s *h2s)
1223{
Willy Tarreau7838a792019-08-12 18:42:03 +02001224 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1225
Willy Tarreauf96508a2020-01-10 11:12:48 +01001226 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001227 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001228 h2s_notify_recv(h2s);
1229 h2s_notify_send(h2s);
1230 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001231 else if (h2s->cs && h2s->cs->data_cb->wake != NULL) {
1232 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001233 h2s->cs->data_cb->wake(h2s->cs);
Willy Tarreau7838a792019-08-12 18:42:03 +02001234 }
1235
1236 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001237}
1238
Willy Tarreaue4820742017-07-27 13:37:23 +02001239/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001240static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001241{
1242 uint8_t *out = frame;
1243
1244 *out = len >> 16;
1245 write_n16(out + 1, len);
1246}
1247
Willy Tarreau54c15062017-10-10 17:10:03 +02001248/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1249 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1250 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001251 * available in the buffer's input prior to calling this function. The buffer
1252 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001253 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001254static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001255 const struct buffer *b, int o)
1256{
Willy Tarreau591d4452018-06-15 17:21:00 +02001257 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 +02001258}
1259
Willy Tarreau1f094672017-11-20 21:27:45 +01001260static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001261{
Willy Tarreau591d4452018-06-15 17:21:00 +02001262 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001263}
1264
Willy Tarreau1f094672017-11-20 21:27:45 +01001265static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001266{
Willy Tarreau591d4452018-06-15 17:21:00 +02001267 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001268}
1269
Willy Tarreau1f094672017-11-20 21:27:45 +01001270static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001271{
Willy Tarreau591d4452018-06-15 17:21:00 +02001272 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001273}
1274
1275
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001276/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1277 * The algorithm is not obvious. It turns out that H2 headers are neither
1278 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1279 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001280 *
1281 * b0 b1 b2 b3 b4 b5..b8
1282 * +----------+---------+--------+----+----+----------------------+
1283 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1284 * +----------+---------+--------+----+----+----------------------+
1285 *
1286 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1287 * we get the sid properly aligned and ordered, and 16 bits of len properly
1288 * ordered as well. The type and flags can be extracted using bit shifts from
1289 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001290 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1291 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001292 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001293static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001294{
1295 uint64_t w;
1296
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001297 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001298 return 0;
1299
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001300 w = h2_get_n64(b, o + 1);
1301 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001302 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1303 h->ff = w >> 32;
1304 h->ft = w >> 40;
1305 h->len += w >> 48;
1306 return 1;
1307}
1308
1309/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1310 * h2_peek_frame_hdr() above.
1311 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001312static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001313{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001314 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001315}
1316
1317/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001318static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001319{
1320 int ret;
1321
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001322 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001323 if (ret > 0)
1324 h2_skip_frame_hdr(b);
1325 return ret;
1326}
1327
Willy Tarreaucb985a42019-10-07 16:56:34 +02001328
1329/* try to fragment the headers frame present at the beginning of buffer <b>,
1330 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1331 * success. Typical causes of failure include a buffer not large enough to
1332 * add extra frame headers. The existing frame size is read in the current
1333 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1334 * and its length will be adjusted. The stream ID for continuation frames will
1335 * be copied from the initial frame's.
1336 */
1337static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1338{
1339 size_t remain = b->data - 9;
1340 int extra_frames = (remain - 1) / mfs;
1341 size_t fsize;
1342 char *fptr;
1343 int frame;
1344
1345 if (b->data <= mfs + 9)
1346 return 1;
1347
1348 /* Too large a frame, we need to fragment it using CONTINUATION
1349 * frames. We start from the end and move tails as needed.
1350 */
1351 if (b->data + extra_frames * 9 > b->size)
1352 return 0;
1353
1354 for (frame = extra_frames; frame; frame--) {
1355 fsize = ((remain - 1) % mfs) + 1;
1356 remain -= fsize;
1357
1358 /* move data */
1359 fptr = b->area + 9 + remain + (frame - 1) * 9;
1360 memmove(fptr + 9, b->area + 9 + remain, fsize);
1361 b->data += 9;
1362
1363 /* write new frame header */
1364 h2_set_frame_size(fptr, fsize);
1365 fptr[3] = H2_FT_CONTINUATION;
1366 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1367 write_n32(fptr + 5, read_n32(b->area + 5));
1368 }
1369
1370 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1371 h2_set_frame_size(b->area, remain);
1372 return 1;
1373}
1374
1375
Willy Tarreau00dd0782018-03-01 16:31:34 +01001376/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1377 * its connection if the stream was not yet closed. Please use this exclusively
1378 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001379 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001380static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001381{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001382 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001383 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001384 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001385 if (!h2s->id)
1386 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +01001387 if (h2s->cs) {
Willy Tarreaua27db382019-03-25 18:13:16 +01001388 if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf))
1389 h2s_notify_recv(h2s);
1390 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001391 HA_ATOMIC_DEC(&h2s->h2c->px_counters->open_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001392
Willy Tarreau7838a792019-08-12 18:42:03 +02001393 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001394 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001395 h2s->st = H2_SS_CLOSED;
1396}
1397
Willy Tarreau71049cc2018-03-28 13:56:39 +02001398/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001399/* h2s_destroy should only ever be called by the thread that owns the stream,
1400 * that means that a tasklet should be used if we want to destroy the h2s
1401 * from another thread
1402 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001403static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001404{
Willy Tarreau7838a792019-08-12 18:42:03 +02001405 struct connection *conn = h2s->h2c->conn;
1406
1407 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1408
Willy Tarreau0a10de62018-03-01 16:27:53 +01001409 h2s_close(h2s);
1410 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001411 if (b_size(&h2s->rxbuf)) {
1412 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01001413 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02001414 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001415
1416 if (h2s->subs)
1417 h2s->subs->events = 0;
1418
Joseph Herlantd77575d2018-11-25 10:54:45 -08001419 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001420 * reference left would be in the h2c send_list/fctl_list, and if
1421 * we're in it, we're getting out anyway
1422 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001423 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001424
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001425 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001426 tasklet_free(h2s->shut_tl);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001427 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001428
1429 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001430}
1431
Willy Tarreaua8e49542018-10-03 18:53:55 +02001432/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1433 * stream tree. In case of error, nothing is added and NULL is returned. The
1434 * causes of errors can be any failed memory allocation. The caller is
1435 * responsible for checking if the connection may support an extra stream
1436 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001437 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001438static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001439{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001440 struct h2s *h2s;
1441
Willy Tarreau7838a792019-08-12 18:42:03 +02001442 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1443
Willy Tarreaubafbe012017-11-24 17:34:44 +01001444 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001445 if (!h2s)
1446 goto out;
1447
Willy Tarreau5723f292020-01-10 15:16:57 +01001448 h2s->shut_tl = tasklet_new();
1449 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001450 pool_free(pool_head_h2s, h2s);
1451 goto out;
1452 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001453 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001454 h2s->shut_tl->process = h2_deferred_shut;
1455 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001456 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001457 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001458 h2s->cs = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001459 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001460 h2s->flags = H2_SF_NONE;
1461 h2s->errcode = H2_ERR_NO_ERROR;
1462 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001463 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001464 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001465 h2s->rxbuf = BUF_NULL;
Amaury Denoyelle74162742020-12-11 17:53:05 +01001466 memset(h2s->upgrade_protocol, 0, sizeof(h2s->upgrade_protocol));
Willy Tarreau751f2d02018-10-05 09:35:00 +02001467
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001468 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001469 if (id > 0)
1470 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001471 else
1472 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001473
1474 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001475 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001476 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001477
Willy Tarreau4781b152021-04-06 13:53:36 +02001478 HA_ATOMIC_INC(&h2c->px_counters->open_streams);
1479 HA_ATOMIC_INC(&h2c->px_counters->total_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001480
Willy Tarreau7838a792019-08-12 18:42:03 +02001481 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001482 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001483 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001484 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001485 return NULL;
1486}
1487
1488/* creates a new stream <id> on the h2c connection and returns it, or NULL in
Christopher Faulet7d013e72020-12-15 16:56:50 +01001489 * case of memory allocation error. <input> is used as input buffer for the new
1490 * stream. On success, it is transferred to the stream and the mux is no longer
1491 * responsible of it. On error, <input> is unchanged, thus the mux must still
1492 * take care of it.
Willy Tarreaua8e49542018-10-03 18:53:55 +02001493 */
Christopher Faulet7d013e72020-12-15 16:56:50 +01001494static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id, struct buffer *input)
Willy Tarreaua8e49542018-10-03 18:53:55 +02001495{
1496 struct session *sess = h2c->conn->owner;
1497 struct conn_stream *cs;
1498 struct h2s *h2s;
1499
Willy Tarreau7838a792019-08-12 18:42:03 +02001500 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1501
Willy Tarreaua8e49542018-10-03 18:53:55 +02001502 if (h2c->nb_streams >= h2_settings_max_concurrent_streams)
1503 goto out;
1504
1505 h2s = h2s_new(h2c, id);
1506 if (!h2s)
1507 goto out;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001508
Christopher Faulet236c93b2020-07-02 09:19:54 +02001509 cs = cs_new(h2c->conn, h2c->conn->target);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001510 if (!cs)
1511 goto out_close;
1512
Olivier Houchard746fb772018-12-15 19:42:00 +01001513 cs->flags |= CS_FL_NOT_FIRST;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001514 h2s->cs = cs;
1515 cs->ctx = h2s;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001516 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001517
Christopher Faulet7d013e72020-12-15 16:56:50 +01001518 if (stream_create_from_cs(cs, input) < 0)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001519 goto out_free_cs;
1520
Willy Tarreau590a0512018-09-05 11:56:48 +02001521 /* We want the accept date presented to the next stream to be the one
1522 * we have now, the handshake time to be null (since the next stream
1523 * is not delayed by a handshake), and the idle time to count since
1524 * right now.
1525 */
1526 sess->accept_date = date;
1527 sess->tv_accept = now;
1528 sess->t_handshake = 0;
1529
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001530 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001531 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001532 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001533 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001534 return h2s;
1535
1536 out_free_cs:
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001537 h2c->nb_cs--;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001538 cs_free(cs);
Olivier Houchard58d87f32019-05-29 16:44:17 +02001539 h2s->cs = NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001540 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001541 h2s_destroy(h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001542 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001543 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001544 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001545 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001546}
1547
Willy Tarreau751f2d02018-10-05 09:35:00 +02001548/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1549 * and returns it, or NULL in case of memory allocation error or if the highest
1550 * possible stream ID was reached.
1551 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001552static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001553{
1554 struct h2s *h2s = NULL;
1555
Willy Tarreau7838a792019-08-12 18:42:03 +02001556 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1557
Willy Tarreau86949782019-01-31 10:42:05 +01001558 if (h2c->nb_streams >= h2c->streams_limit)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001559 goto out;
1560
Willy Tarreaua80dca82019-01-24 17:08:28 +01001561 if (h2_streams_left(h2c) < 1)
1562 goto out;
1563
Willy Tarreau751f2d02018-10-05 09:35:00 +02001564 /* Defer choosing the ID until we send the first message to create the stream */
1565 h2s = h2s_new(h2c, 0);
1566 if (!h2s)
1567 goto out;
1568
1569 h2s->cs = cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001570 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001571 cs->ctx = h2s;
1572 h2c->nb_cs++;
1573
Willy Tarreau751f2d02018-10-05 09:35:00 +02001574 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001575 if (likely(h2s))
1576 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1577 else
1578 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001579 return h2s;
1580}
1581
Willy Tarreaube5b7152017-09-25 16:25:39 +02001582/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1583 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1584 * the various settings codes.
1585 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001586static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001587{
1588 struct buffer *res;
1589 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001590 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001591 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001592 int ret = 0;
1593
1594 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001595
1596 if (h2c_mux_busy(h2c, NULL)) {
1597 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001598 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001599 }
1600
Willy Tarreaube5b7152017-09-25 16:25:39 +02001601 chunk_init(&buf, buf_data, sizeof(buf_data));
1602 chunk_memcpy(&buf,
1603 "\x00\x00\x00" /* length : 0 for now */
1604 "\x04\x00" /* type : 4 (settings), flags : 0 */
1605 "\x00\x00\x00\x00", /* stream ID : 0 */
1606 9);
1607
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001608 if (h2c->flags & H2_CF_IS_BACK) {
1609 /* send settings_enable_push=0 */
1610 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1611 }
1612
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01001613 /* rfc 8441 #3 SETTINGS_ENABLE_CONNECT_PROTOCOL=1
1614 * sent automatically */
1615 chunk_memcat(&buf, "\x00\x08\x00\x00\x00\x01", 6);
1616
Willy Tarreaube5b7152017-09-25 16:25:39 +02001617 if (h2_settings_header_table_size != 4096) {
1618 char str[6] = "\x00\x01"; /* header_table_size */
1619
1620 write_n32(str + 2, h2_settings_header_table_size);
1621 chunk_memcat(&buf, str, 6);
1622 }
1623
1624 if (h2_settings_initial_window_size != 65535) {
1625 char str[6] = "\x00\x04"; /* initial_window_size */
1626
1627 write_n32(str + 2, h2_settings_initial_window_size);
1628 chunk_memcat(&buf, str, 6);
1629 }
1630
1631 if (h2_settings_max_concurrent_streams != 0) {
1632 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1633
1634 /* Note: 0 means "unlimited" for haproxy's config but not for
1635 * the protocol, so never send this value!
1636 */
1637 write_n32(str + 2, h2_settings_max_concurrent_streams);
1638 chunk_memcat(&buf, str, 6);
1639 }
1640
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001641 mfs = h2_settings_max_frame_size;
1642 if (mfs > global.tune.bufsize)
1643 mfs = global.tune.bufsize;
1644
1645 if (!mfs)
1646 mfs = global.tune.bufsize;
1647
1648 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001649 char str[6] = "\x00\x05"; /* max_frame_size */
1650
1651 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1652 * match bufsize - rewrite size, but at the moment it seems
1653 * that clients don't take care of it.
1654 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001655 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001656 chunk_memcat(&buf, str, 6);
1657 }
1658
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001659 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001660
1661 res = br_tail(h2c->mbuf);
1662 retry:
1663 if (!h2_get_buf(h2c, res)) {
1664 h2c->flags |= H2_CF_MUX_MALLOC;
1665 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001666 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001667 }
1668
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001669 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001670 if (unlikely(ret <= 0)) {
1671 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001672 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1673 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001674 h2c->flags |= H2_CF_MUX_MFULL;
1675 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001676 }
1677 else {
1678 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001679 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001680 }
1681 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001682 out:
1683 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001684 return ret;
1685}
1686
Willy Tarreau52eed752017-09-22 15:05:09 +02001687/* Try to receive a connection preface, then upon success try to send our
1688 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1689 * missing data. It may return an error in h2c.
1690 */
1691static int h2c_frt_recv_preface(struct h2c *h2c)
1692{
1693 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001694 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001695
Willy Tarreau7838a792019-08-12 18:42:03 +02001696 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1697
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001698 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001699
1700 if (unlikely(ret1 <= 0)) {
Amaury Denoyellea8879232020-10-27 17:16:03 +01001701 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001702 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 +02001703 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc23d6d12021-06-17 08:08:48 +02001704 if (b_data(&h2c->dbuf) ||
1705 !(((const struct session *)h2c->conn->owner)->fe->options & PR_O_IGNORE_PRB))
1706 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001707 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001708 ret2 = 0;
1709 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001710 }
1711
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001712 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001713 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001714 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001715 out:
1716 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001717 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001718}
1719
Willy Tarreau01b44822018-10-03 14:26:37 +02001720/* Try to send a connection preface, then upon success try to send our
1721 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1722 * missing data. It may return an error in h2c.
1723 */
1724static int h2c_bck_send_preface(struct h2c *h2c)
1725{
1726 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001727 int ret = 0;
1728
1729 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001730
1731 if (h2c_mux_busy(h2c, NULL)) {
1732 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001733 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001734 }
1735
Willy Tarreaubcc45952019-05-26 10:05:50 +02001736 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001737 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001738 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001739 h2c->flags |= H2_CF_MUX_MALLOC;
1740 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001741 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001742 }
1743
1744 if (!b_data(res)) {
1745 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001746 ret = b_istput(res, ist(H2_CONN_PREFACE));
1747 if (unlikely(ret <= 0)) {
1748 if (!ret) {
1749 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1750 goto retry;
1751 h2c->flags |= H2_CF_MUX_MFULL;
1752 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001753 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001754 }
1755 else {
1756 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001757 ret = 0;
1758 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001759 }
1760 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001761 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001762 ret = h2c_send_settings(h2c);
1763 out:
1764 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1765 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001766}
1767
Willy Tarreau081d4722017-05-16 21:51:05 +02001768/* try to send a GOAWAY frame on the connection to report an error or a graceful
1769 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1770 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1771 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1772 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1773 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1774 * on unrecoverable failure. It will not attempt to send one again in this last
1775 * case so that it is safe to use h2c_error() to report such errors.
1776 */
1777static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1778{
1779 struct buffer *res;
1780 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001781 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001782
Willy Tarreau7838a792019-08-12 18:42:03 +02001783 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1784
1785 if (h2c->flags & H2_CF_GOAWAY_FAILED) {
1786 ret = 1; // claim that it worked
1787 goto out;
1788 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001789
1790 if (h2c_mux_busy(h2c, h2s)) {
1791 if (h2s)
1792 h2s->flags |= H2_SF_BLK_MBUSY;
1793 else
1794 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001795 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001796 }
1797
Willy Tarreau9c218e72019-05-26 10:08:28 +02001798 /* len: 8, type: 7, flags: none, sid: 0 */
1799 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1800
1801 if (h2c->last_sid < 0)
1802 h2c->last_sid = h2c->max_id;
1803
1804 write_n32(str + 9, h2c->last_sid);
1805 write_n32(str + 13, h2c->errcode);
1806
Willy Tarreaubcc45952019-05-26 10:05:50 +02001807 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001808 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001809 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001810 h2c->flags |= H2_CF_MUX_MALLOC;
1811 if (h2s)
1812 h2s->flags |= H2_SF_BLK_MROOM;
1813 else
1814 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001815 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001816 }
1817
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001818 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001819 if (unlikely(ret <= 0)) {
1820 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001821 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1822 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001823 h2c->flags |= H2_CF_MUX_MFULL;
1824 if (h2s)
1825 h2s->flags |= H2_SF_BLK_MROOM;
1826 else
1827 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001828 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001829 }
1830 else {
1831 /* we cannot report this error using GOAWAY, so we mark
1832 * it and claim a success.
1833 */
1834 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1835 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001836 ret = 1;
1837 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001838 }
1839 }
1840 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001841
1842 /* some codes are not for real errors, just attempts to close cleanly */
1843 switch (h2c->errcode) {
1844 case H2_ERR_NO_ERROR:
1845 case H2_ERR_ENHANCE_YOUR_CALM:
1846 case H2_ERR_REFUSED_STREAM:
1847 case H2_ERR_CANCEL:
1848 break;
1849 default:
Willy Tarreau4781b152021-04-06 13:53:36 +02001850 HA_ATOMIC_INC(&h2c->px_counters->goaway_resp);
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001851 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001852 out:
1853 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001854 return ret;
1855}
1856
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001857/* Try to send an RST_STREAM frame on the connection for the indicated stream
1858 * during mux operations. This stream must be valid and cannot be closed
1859 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1860 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1861 * not yet.
1862 *
1863 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1864 * to write the message, it subscribes the stream to future notifications.
1865 */
1866static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1867{
1868 struct buffer *res;
1869 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001870 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001871
Willy Tarreau7838a792019-08-12 18:42:03 +02001872 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1873
1874 if (!h2s || h2s->st == H2_SS_CLOSED) {
1875 ret = 1;
1876 goto out;
1877 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001878
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001879 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1880 * RST_STREAM in response to a RST_STREAM frame.
1881 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001882 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001883 ret = 1;
1884 goto ignore;
1885 }
1886
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001887 if (h2c_mux_busy(h2c, h2s)) {
1888 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001889 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001890 }
1891
Willy Tarreau9c218e72019-05-26 10:08:28 +02001892 /* len: 4, type: 3, flags: none */
1893 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1894 write_n32(str + 5, h2s->id);
1895 write_n32(str + 9, h2s->errcode);
1896
Willy Tarreaubcc45952019-05-26 10:05:50 +02001897 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001898 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001899 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001900 h2c->flags |= H2_CF_MUX_MALLOC;
1901 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001902 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001903 }
1904
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001905 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001906 if (unlikely(ret <= 0)) {
1907 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001908 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1909 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001910 h2c->flags |= H2_CF_MUX_MFULL;
1911 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001912 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001913 }
1914 else {
1915 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001916 ret = 0;
1917 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001918 }
1919 }
1920
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001921 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001922 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001923 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001924 out:
1925 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001926 return ret;
1927}
1928
1929/* Try to send an RST_STREAM frame on the connection for the stream being
1930 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001931 * error code, even if the stream is one of the dummy ones, and will update
1932 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001933 *
1934 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1935 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001936 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001937 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001938 */
1939static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1940{
1941 struct buffer *res;
1942 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001943 int ret = 0;
1944
1945 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001946
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001947 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1948 * RST_STREAM in response to a RST_STREAM frame.
1949 */
1950 if (h2c->dft == H2_FT_RST_STREAM) {
1951 ret = 1;
1952 goto ignore;
1953 }
1954
Willy Tarreau27a84c92017-10-17 08:10:17 +02001955 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001956 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001957 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001958 }
1959
Willy Tarreau9c218e72019-05-26 10:08:28 +02001960 /* len: 4, type: 3, flags: none */
1961 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1962
1963 write_n32(str + 5, h2c->dsi);
1964 write_n32(str + 9, h2s->errcode);
1965
Willy Tarreaubcc45952019-05-26 10:05:50 +02001966 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001967 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001968 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001969 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001970 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001971 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001972 }
1973
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001974 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02001975 if (unlikely(ret <= 0)) {
1976 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001977 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1978 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001979 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001980 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001981 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001982 }
1983 else {
1984 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001985 ret = 0;
1986 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001987 }
1988 }
1989
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001990 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02001991 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001992 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001993 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001994 }
1995
Willy Tarreau7838a792019-08-12 18:42:03 +02001996 out:
Willy Tarreau4781b152021-04-06 13:53:36 +02001997 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_resp);
Willy Tarreau7838a792019-08-12 18:42:03 +02001998 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001999 return ret;
2000}
2001
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002002/* try to send an empty DATA frame with the ES flag set to notify about the
2003 * end of stream and match a shutdown(write). If an ES was already sent as
2004 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
2005 * on success or zero if nothing was done. In case of lack of room to write the
2006 * message, it subscribes the requesting stream to future notifications.
2007 */
2008static int h2_send_empty_data_es(struct h2s *h2s)
2009{
2010 struct h2c *h2c = h2s->h2c;
2011 struct buffer *res;
2012 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002013 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002014
Willy Tarreau7838a792019-08-12 18:42:03 +02002015 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
2016
2017 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
2018 ret = 1;
2019 goto out;
2020 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002021
2022 if (h2c_mux_busy(h2c, h2s)) {
2023 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002024 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002025 }
2026
Willy Tarreau9c218e72019-05-26 10:08:28 +02002027 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
2028 memcpy(str, "\x00\x00\x00\x00\x01", 5);
2029 write_n32(str + 5, h2s->id);
2030
Willy Tarreaubcc45952019-05-26 10:05:50 +02002031 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002032 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002033 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002034 h2c->flags |= H2_CF_MUX_MALLOC;
2035 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002036 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002037 }
2038
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002039 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002040 if (likely(ret > 0)) {
2041 h2s->flags |= H2_SF_ES_SENT;
2042 }
2043 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002044 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2045 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002046 h2c->flags |= H2_CF_MUX_MFULL;
2047 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002048 }
2049 else {
2050 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002051 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002052 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002053 out:
2054 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002055 return ret;
2056}
2057
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002058/* wake a specific stream and assign its conn_stream some CS_FL_* flags among
Willy Tarreau99ad1b32019-05-14 11:46:28 +02002059 * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002060 * is automatically updated accordingly. If the stream is orphaned, it is
2061 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002062 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002063static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002064{
Willy Tarreau7838a792019-08-12 18:42:03 +02002065 struct h2c *h2c = h2s->h2c;
2066
2067 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2068
Christopher Fauletf02ca002019-03-07 16:21:34 +01002069 if (!h2s->cs) {
2070 /* this stream was already orphaned */
2071 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002072 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002073 return;
2074 }
2075
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002076 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002077 if (h2s->st == H2_SS_OPEN)
2078 h2s->st = H2_SS_HREM;
2079 else if (h2s->st == H2_SS_HLOC)
2080 h2s_close(h2s);
2081 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002082
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002083 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
2084 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
2085 h2s->cs->flags |= CS_FL_ERR_PENDING;
2086 if (h2s->cs->flags & CS_FL_EOS)
2087 h2s->cs->flags |= CS_FL_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02002088
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002089 if (h2s->st < H2_SS_ERROR)
2090 h2s->st = H2_SS_ERROR;
2091 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002092
2093 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002094 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002095}
2096
2097/* wake the streams attached to the connection, whose id is greater than <last>
2098 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002099 */
Willy Tarreau23482912019-05-07 15:23:14 +02002100static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002101{
2102 struct eb32_node *node;
2103 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002104
Willy Tarreau7838a792019-08-12 18:42:03 +02002105 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2106
Christopher Fauletf02ca002019-03-07 16:21:34 +01002107 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002108 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2109 while (node) {
2110 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002111 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002112 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002113 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002114
Christopher Fauletf02ca002019-03-07 16:21:34 +01002115 /* Wake all streams with unassigned ID (ID == 0) */
2116 node = eb32_lookup(&h2c->streams_by_id, 0);
2117 while (node) {
2118 h2s = container_of(node, struct h2s, by_id);
2119 if (h2s->id > 0)
2120 break;
2121 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002122 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002123 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002124
2125 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002126}
2127
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002128/* Wake up all blocked streams whose window size has become positive after the
2129 * mux's initial window was adjusted. This should be done after having processed
2130 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002131 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002132static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002133{
2134 struct h2s *h2s;
2135 struct eb32_node *node;
2136
Willy Tarreau7838a792019-08-12 18:42:03 +02002137 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2138
Willy Tarreau3421aba2017-07-27 15:41:03 +02002139 node = eb32_first(&h2c->streams_by_id);
2140 while (node) {
2141 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002142 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002143 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002144 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002145 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2146 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002147 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002148 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002149 node = eb32_next(node);
2150 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002151
2152 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002153}
2154
2155/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2156 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002157 * return an error in h2c. The caller must have already verified frame length
2158 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002159 */
2160static int h2c_handle_settings(struct h2c *h2c)
2161{
2162 unsigned int offset;
2163 int error;
2164
Willy Tarreau7838a792019-08-12 18:42:03 +02002165 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2166
Willy Tarreau3421aba2017-07-27 15:41:03 +02002167 if (h2c->dff & H2_F_SETTINGS_ACK) {
2168 if (h2c->dfl) {
2169 error = H2_ERR_FRAME_SIZE_ERROR;
2170 goto fail;
2171 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002172 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002173 }
2174
Willy Tarreau3421aba2017-07-27 15:41:03 +02002175 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002176 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002177 goto out0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002178
2179 /* parse the frame */
2180 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002181 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2182 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002183
2184 switch (type) {
2185 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2186 /* we need to update all existing streams with the
2187 * difference from the previous iws.
2188 */
2189 if (arg < 0) { // RFC7540#6.5.2
2190 error = H2_ERR_FLOW_CONTROL_ERROR;
2191 goto fail;
2192 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002193 h2c->miw = arg;
2194 break;
2195 case H2_SETTINGS_MAX_FRAME_SIZE:
2196 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002197 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 +02002198 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002199 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002200 goto fail;
2201 }
2202 h2c->mfs = arg;
2203 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002204 case H2_SETTINGS_ENABLE_PUSH:
2205 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002206 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002207 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002208 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002209 goto fail;
2210 }
2211 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002212 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2213 if (h2c->flags & H2_CF_IS_BACK) {
2214 /* the limit is only for the backend; for the frontend it is our limit */
2215 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2216 arg = h2_settings_max_concurrent_streams;
2217 h2c->streams_limit = arg;
2218 }
2219 break;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002220 case H2_SETTINGS_ENABLE_CONNECT_PROTOCOL:
2221 /* nothing to do here as this settings is automatically
2222 * transmits to the client */
2223 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002224 }
2225 }
2226
2227 /* need to ACK this frame now */
2228 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002229 done:
2230 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002231 return 1;
2232 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002233 if (!(h2c->flags & H2_CF_IS_BACK))
2234 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002235 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002236 out0:
2237 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 +02002238 return 0;
2239}
2240
2241/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2242 * success or one of the h2_status values.
2243 */
2244static int h2c_ack_settings(struct h2c *h2c)
2245{
2246 struct buffer *res;
2247 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002248 int ret = 0;
2249
2250 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002251
2252 if (h2c_mux_busy(h2c, NULL)) {
2253 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002254 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002255 }
2256
Willy Tarreau9c218e72019-05-26 10:08:28 +02002257 memcpy(str,
2258 "\x00\x00\x00" /* length : 0 (no data) */
2259 "\x04" "\x01" /* type : 4, flags : ACK */
2260 "\x00\x00\x00\x00" /* stream ID */, 9);
2261
Willy Tarreaubcc45952019-05-26 10:05:50 +02002262 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002263 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002264 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002265 h2c->flags |= H2_CF_MUX_MALLOC;
2266 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002267 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002268 }
2269
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002270 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002271 if (unlikely(ret <= 0)) {
2272 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002273 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2274 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002275 h2c->flags |= H2_CF_MUX_MFULL;
2276 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002277 }
2278 else {
2279 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002280 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002281 }
2282 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002283 out:
2284 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002285 return ret;
2286}
2287
Willy Tarreaucf68c782017-10-10 17:11:41 +02002288/* processes a PING frame and schedules an ACK if needed. The caller must pass
2289 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002290 * missing data. The caller must have already verified frame length
2291 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002292 */
2293static int h2c_handle_ping(struct h2c *h2c)
2294{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002295 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002296 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002297 h2c->st0 = H2_CS_FRAME_A;
2298 return 1;
2299}
2300
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002301/* Try to send a window update for stream id <sid> and value <increment>.
2302 * Returns > 0 on success or zero on missing room or failure. It may return an
2303 * error in h2c.
2304 */
2305static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2306{
2307 struct buffer *res;
2308 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002309 int ret = 0;
2310
2311 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002312
2313 if (h2c_mux_busy(h2c, NULL)) {
2314 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002315 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002316 }
2317
Willy Tarreau9c218e72019-05-26 10:08:28 +02002318 /* length: 4, type: 8, flags: none */
2319 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2320 write_n32(str + 5, sid);
2321 write_n32(str + 9, increment);
2322
Willy Tarreaubcc45952019-05-26 10:05:50 +02002323 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002324 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002325 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002326 h2c->flags |= H2_CF_MUX_MALLOC;
2327 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002328 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002329 }
2330
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002331 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002332 if (unlikely(ret <= 0)) {
2333 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002334 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2335 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002336 h2c->flags |= H2_CF_MUX_MFULL;
2337 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002338 }
2339 else {
2340 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002341 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002342 }
2343 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002344 out:
2345 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002346 return ret;
2347}
2348
2349/* try to send pending window update for the connection. It's safe to call it
2350 * with no pending updates. Returns > 0 on success or zero on missing room or
2351 * failure. It may return an error in h2c.
2352 */
2353static int h2c_send_conn_wu(struct h2c *h2c)
2354{
2355 int ret = 1;
2356
Willy Tarreau7838a792019-08-12 18:42:03 +02002357 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2358
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002359 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002360 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002361
Willy Tarreau97aaa672018-12-23 09:49:04 +01002362 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2363 /* increase the advertised connection window to 2G on
2364 * first update.
2365 */
2366 h2c->flags |= H2_CF_WINDOW_OPENED;
2367 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2368 }
2369
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002370 /* send WU for the connection */
2371 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2372 if (ret > 0)
2373 h2c->rcvd_c = 0;
2374
Willy Tarreau7838a792019-08-12 18:42:03 +02002375 out:
2376 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002377 return ret;
2378}
2379
2380/* try to send pending window update for the current dmux stream. It's safe to
2381 * call it with no pending updates. Returns > 0 on success or zero on missing
2382 * room or failure. It may return an error in h2c.
2383 */
2384static int h2c_send_strm_wu(struct h2c *h2c)
2385{
2386 int ret = 1;
2387
Willy Tarreau7838a792019-08-12 18:42:03 +02002388 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2389
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002390 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002391 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002392
2393 /* send WU for the stream */
2394 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2395 if (ret > 0)
2396 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002397 out:
2398 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002399 return ret;
2400}
2401
Willy Tarreaucf68c782017-10-10 17:11:41 +02002402/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2403 * success, 0 on missing data or one of the h2_status values.
2404 */
2405static int h2c_ack_ping(struct h2c *h2c)
2406{
2407 struct buffer *res;
2408 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002409 int ret = 0;
2410
2411 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002412
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002413 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002414 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002415
2416 if (h2c_mux_busy(h2c, NULL)) {
2417 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002418 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002419 }
2420
Willy Tarreaucf68c782017-10-10 17:11:41 +02002421 memcpy(str,
2422 "\x00\x00\x08" /* length : 8 (same payload) */
2423 "\x06" "\x01" /* type : 6, flags : ACK */
2424 "\x00\x00\x00\x00" /* stream ID */, 9);
2425
2426 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002427 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002428
Willy Tarreau9c218e72019-05-26 10:08:28 +02002429 res = br_tail(h2c->mbuf);
2430 retry:
2431 if (!h2_get_buf(h2c, res)) {
2432 h2c->flags |= H2_CF_MUX_MALLOC;
2433 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002434 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002435 }
2436
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002437 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002438 if (unlikely(ret <= 0)) {
2439 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002440 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2441 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002442 h2c->flags |= H2_CF_MUX_MFULL;
2443 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002444 }
2445 else {
2446 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002447 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002448 }
2449 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002450 out:
2451 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002452 return ret;
2453}
2454
Willy Tarreau26f95952017-07-27 17:18:30 +02002455/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2456 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002457 * h2c or h2s. The caller must have already verified frame length and stream ID
2458 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002459 */
2460static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2461{
2462 int32_t inc;
2463 int error;
2464
Willy Tarreau7838a792019-08-12 18:42:03 +02002465 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2466
Willy Tarreau26f95952017-07-27 17:18:30 +02002467 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002468 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002469 goto out0;
Willy Tarreau26f95952017-07-27 17:18:30 +02002470
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002471 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002472
2473 if (h2c->dsi != 0) {
2474 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002475
2476 /* it's not an error to receive WU on a closed stream */
2477 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002478 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002479
2480 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002481 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 +02002482 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002483 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002484 goto strm_err;
2485 }
2486
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002487 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002488 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 +02002489 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002490 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002491 goto strm_err;
2492 }
2493
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002494 h2s->sws += inc;
2495 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002496 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002497 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002498 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2499 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002500 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002501 }
2502 }
2503 else {
2504 /* connection window update */
2505 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002506 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002507 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002508 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002509 goto conn_err;
2510 }
2511
2512 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2513 error = H2_ERR_FLOW_CONTROL_ERROR;
2514 goto conn_err;
2515 }
2516
2517 h2c->mws += inc;
2518 }
2519
Willy Tarreau7838a792019-08-12 18:42:03 +02002520 done:
2521 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002522 return 1;
2523
2524 conn_err:
2525 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002526 out0:
2527 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 +02002528 return 0;
2529
2530 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002531 h2s_error(h2s, error);
2532 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002533 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002534 return 0;
2535}
2536
Willy Tarreaue96b0922017-10-30 00:28:29 +01002537/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002538 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2539 * have already verified frame length and stream ID validity. Described in
2540 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002541 */
2542static int h2c_handle_goaway(struct h2c *h2c)
2543{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002544 int last;
2545
Willy Tarreau7838a792019-08-12 18:42:03 +02002546 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002547 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002548 if (b_data(&h2c->dbuf) < h2c->dfl) {
2549 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002550 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002551 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002552
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002553 last = h2_get_n32(&h2c->dbuf, 0);
2554 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002555 if (h2c->last_sid < 0)
2556 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002557 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002558 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002559 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002560}
2561
Willy Tarreau92153fc2017-12-03 19:46:19 +01002562/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002563 * invalid. Returns > 0 on success or zero on missing data. It may return an
2564 * error in h2c. The caller must have already verified frame length and stream
2565 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002566 */
2567static int h2c_handle_priority(struct h2c *h2c)
2568{
Willy Tarreau7838a792019-08-12 18:42:03 +02002569 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2570
Willy Tarreau92153fc2017-12-03 19:46:19 +01002571 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002572 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002573 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002574 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002575 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002576
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002577 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002578 /* 7540#5.3 : can't depend on itself */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002579 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002580 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02002581 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002582 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002583 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002584 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002585 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002586 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002587}
2588
Willy Tarreaucd234e92017-08-18 10:59:39 +02002589/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002590 * Returns > 0 on success or zero on missing data. The caller must have already
2591 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002592 */
2593static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2594{
Willy Tarreau7838a792019-08-12 18:42:03 +02002595 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2596
Willy Tarreaucd234e92017-08-18 10:59:39 +02002597 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002598 if (b_data(&h2c->dbuf) < h2c->dfl) {
2599 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 +02002600 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002601 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002602
2603 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002604 if (h2s->st == H2_SS_CLOSED) {
2605 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 +02002606 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002607 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002608
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002609 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002610 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002611
2612 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01002613 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01002614 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002615 }
2616
2617 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002618 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002619 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002620}
2621
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002622/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2623 * It may return an error in h2c or h2s. The caller must consider that the
2624 * return value is the new h2s in case one was allocated (most common case).
2625 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002626 * errors here are reported as connection errors since it's impossible to
2627 * recover from such errors after the compression context has been altered.
2628 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002629static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002630{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002631 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002632 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002633 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002634 int error;
2635
Willy Tarreau7838a792019-08-12 18:42:03 +02002636 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2637
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002638 if (!b_size(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002639 goto out; // empty buffer
Willy Tarreau13278b42017-10-13 19:23:14 +02002640
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002641 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002642 goto out; // incomplete frame
Willy Tarreau13278b42017-10-13 19:23:14 +02002643
2644 /* now either the frame is complete or the buffer is complete */
2645 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002646 /* The stream exists/existed, this must be a trailers frame */
2647 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002648 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len, NULL);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002649 /* unrecoverable error ? */
2650 if (h2c->st0 >= H2_CS_ERROR)
2651 goto out;
2652
2653 if (error == 0)
2654 goto out; // missing data
2655
2656 if (error < 0) {
2657 /* Failed to decode this frame (e.g. too large request)
2658 * but the HPACK decompressor is still synchronized.
2659 */
2660 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2661 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002662 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002663 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002664 goto done;
2665 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002666 /* the connection was already killed by an RST, let's consume
2667 * the data and send another RST.
2668 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002669 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau1f035502019-01-30 11:44:07 +01002670 h2s = (struct h2s*)h2_error_stream;
2671 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002672 }
2673 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2674 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2675 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002676 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau4781b152021-04-06 13:53:36 +02002677 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002678 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002679 goto conn_err;
2680 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002681 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2682 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002683
Amaury Denoyelle74162742020-12-11 17:53:05 +01002684 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002685
Willy Tarreau25919232019-01-03 14:48:18 +01002686 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002687 if (h2c->st0 >= H2_CS_ERROR)
2688 goto out;
2689
Willy Tarreau25919232019-01-03 14:48:18 +01002690 if (error <= 0) {
2691 if (error == 0)
2692 goto out; // missing data
2693
2694 /* Failed to decode this stream (e.g. too large request)
2695 * but the HPACK decompressor is still synchronized.
2696 */
2697 h2s = (struct h2s*)h2_error_stream;
2698 goto send_rst;
2699 }
2700
Willy Tarreau3c10d512021-06-17 08:29:14 +02002701 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn, 0, &rxbuf);
2702
Willy Tarreau22de8d32018-09-05 19:55:58 +02002703 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002704 * positively from h2c_frt_stream_new(), the stream will report the error,
2705 * and if we return in error, h2c_frt_stream_new() will emit the error.
Christopher Faulet7d013e72020-12-15 16:56:50 +01002706 *
2707 * Xfer the rxbuf to the stream. On success, the new stream owns the
2708 * rxbuf. On error, it is released here.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002709 */
Christopher Faulet7d013e72020-12-15 16:56:50 +01002710 h2s = h2c_frt_stream_new(h2c, h2c->dsi, &rxbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02002711 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002712 h2s = (struct h2s*)h2_refused_stream;
2713 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002714 }
2715
2716 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002717 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002718 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002719
Willy Tarreau88d138e2019-01-02 19:38:14 +01002720 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002721 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002722 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002723
2724 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002725 if (h2s->st == H2_SS_OPEN)
2726 h2s->st = H2_SS_HREM;
2727 else
2728 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002729 }
2730
Willy Tarreau3a429f02019-01-03 11:41:50 +01002731 /* update the max stream ID if the request is being processed */
2732 if (h2s->id > h2c->max_id)
2733 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002734
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002735 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002736
2737 conn_err:
2738 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002739 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002740
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002741 out:
2742 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002743 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 +01002744 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002745
2746 send_rst:
2747 /* make the demux send an RST for the current stream. We may only
2748 * do this if we're certain that the HEADERS frame was properly
2749 * decompressed so that the HPACK decoder is still kept up to date.
2750 */
2751 h2_release_buf(h2c, &rxbuf);
2752 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002753
Willy Tarreau022e5e52020-09-10 09:33:15 +02002754 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 +02002755 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002756 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002757}
2758
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002759/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2760 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2761 * errors here are reported as connection errors since it's impossible to
2762 * recover from such errors after the compression context has been altered.
2763 */
2764static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2765{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002766 struct buffer rxbuf = BUF_NULL;
2767 unsigned long long body_len = 0;
2768 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002769 int error;
2770
Willy Tarreau7838a792019-08-12 18:42:03 +02002771 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2772
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002773 if (!b_size(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002774 goto fail; // empty buffer
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002775
2776 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002777 goto fail; // incomplete frame
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002778
Christopher Faulet6884aa32019-09-23 15:28:20 +02002779 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002780 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len, h2s->upgrade_protocol);
Christopher Faulet6884aa32019-09-23 15:28:20 +02002781 }
2782 else {
2783 /* the connection was already killed by an RST, let's consume
2784 * the data and send another RST.
2785 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002786 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002787 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002788 h2c->st0 = H2_CS_FRAME_E;
2789 goto send_rst;
2790 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002791
Willy Tarreau25919232019-01-03 14:48:18 +01002792 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002793 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002794 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002795
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002796 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2797 /* RFC7540#5.1 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002798 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 +01002799 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2800 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002801 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002802 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002803 }
2804
Willy Tarreau25919232019-01-03 14:48:18 +01002805 if (error <= 0) {
2806 if (error == 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002807 goto fail; // missing data
Willy Tarreau25919232019-01-03 14:48:18 +01002808
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002809 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002810 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 +01002811 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002812 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002813 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002814 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002815 }
2816
Christopher Fauletfa922f02019-05-07 10:55:17 +02002817 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002818 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002819
Willy Tarreau927b88b2019-03-04 08:03:25 +01002820 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002821 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002822 else if (h2s->flags & H2_SF_ES_RCVD) {
2823 if (h2s->st == H2_SS_OPEN)
2824 h2s->st = H2_SS_HREM;
2825 else if (h2s->st == H2_SS_HLOC)
2826 h2s_close(h2s);
2827 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002828
Christopher Fauletf95f8762021-01-22 11:59:07 +01002829 /* Unblock busy server h2s waiting for the response headers to validate
2830 * the tunnel establishment or the end of the response of an oborted
2831 * tunnel
2832 */
2833 if ((h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY)) == (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY) ||
2834 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_RCVD|H2_SF_BLK_MBUSY)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_RCVD|H2_SF_BLK_MBUSY)) {
2835 TRACE_STATE("Unblock h2s blocked on tunnel establishment/abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2836 h2s->flags &= ~H2_SF_BLK_MBUSY;
2837 }
2838
Willy Tarreaucbd37e02021-06-16 18:32:42 +02002839 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 +02002840 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002841 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002842 fail:
2843 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2844 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002845
2846 send_rst:
2847 /* make the demux send an RST for the current stream. We may only
2848 * do this if we're certain that the HEADERS frame was properly
2849 * decompressed so that the HPACK decoder is still kept up to date.
2850 */
2851 h2_release_buf(h2c, &rxbuf);
2852 h2c->st0 = H2_CS_FRAME_E;
2853
Willy Tarreau022e5e52020-09-10 09:33:15 +02002854 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 +02002855 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2856 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002857}
2858
Willy Tarreau454f9052017-10-26 19:40:35 +02002859/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2860 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2861 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01002862static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02002863{
2864 int error;
2865
Willy Tarreau7838a792019-08-12 18:42:03 +02002866 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2867
Willy Tarreau454f9052017-10-26 19:40:35 +02002868 /* note that empty DATA frames are perfectly valid and sometimes used
2869 * to signal an end of stream (with the ES flag).
2870 */
2871
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002872 if (!b_size(&h2c->dbuf) && h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002873 goto fail; // empty buffer
Willy Tarreau454f9052017-10-26 19:40:35 +02002874
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002875 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002876 goto fail; // incomplete frame
Willy Tarreau454f9052017-10-26 19:40:35 +02002877
2878 /* now either the frame is complete or the buffer is complete */
2879
Willy Tarreau454f9052017-10-26 19:40:35 +02002880 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2881 /* RFC7540#6.1 */
2882 error = H2_ERR_STREAM_CLOSED;
2883 goto strm_err;
2884 }
2885
Christopher Faulet4f09ec82019-06-19 09:25:58 +02002886 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002887 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002888 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 +01002889 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002890 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002891 goto strm_err;
2892 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002893 if (!(h2c->flags & H2_CF_IS_BACK) &&
2894 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT) &&
2895 ((h2c->dfl - h2c->dpl) || !(h2c->dff & H2_F_DATA_END_STREAM))) {
2896 /* a tunnel attempt was aborted but the client still try to send some raw data.
2897 * Thus the stream is closed with the CANCEL error. Here we take care it is not
2898 * an empty DATA Frame with the ES flag. The error is only handled if ES was
2899 * already sent to the client because depending on the scheduling, these data may
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002900 * have been sent before the server response but not handle here.
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002901 */
2902 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2903 error = H2_ERR_CANCEL;
2904 goto strm_err;
2905 }
Willy Tarreau1915ca22019-01-24 11:49:37 +01002906
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002907 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02002908 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002909
Willy Tarreau454f9052017-10-26 19:40:35 +02002910 /* call the upper layers to process the frame, then let the upper layer
2911 * notify the stream about any change.
2912 */
2913 if (!h2s->cs) {
Willy Tarreau082c4572019-08-06 10:11:02 +02002914 /* The upper layer has already closed, this may happen on
2915 * 4xx/redirects during POST, or when receiving a response
2916 * from an H2 server after the client has aborted.
2917 */
2918 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002919 goto strm_err;
2920 }
2921
Willy Tarreau8f650c32017-11-21 19:36:21 +01002922 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002923 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01002924
Willy Tarreau721c9742017-11-07 11:05:42 +01002925 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002926 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002927 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002928 }
2929
2930 /* check for completion : the callee will change this to FRAME_A or
2931 * FRAME_H once done.
2932 */
2933 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02002934 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02002935
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002936 /* last frame */
2937 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002938 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002939 if (h2s->st == H2_SS_OPEN)
2940 h2s->st = H2_SS_HREM;
2941 else
2942 h2s_close(h2s);
2943
Willy Tarreau1915ca22019-01-24 11:49:37 +01002944 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
2945 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002946 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 +01002947 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002948 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002949 goto strm_err;
2950 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002951 }
2952
Christopher Fauletf95f8762021-01-22 11:59:07 +01002953 /* Unblock busy server h2s waiting for the end of the response for an
2954 * aborted tunnel
2955 */
2956 if ((h2c->flags & H2_CF_IS_BACK) &&
2957 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_RCVD|H2_SF_BLK_MBUSY)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_RCVD|H2_SF_BLK_MBUSY)) {
2958 TRACE_STATE("Unblock h2s blocked on tunnel abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2959 h2s->flags &= ~H2_SF_BLK_MBUSY;
2960 }
2961
Willy Tarreau7838a792019-08-12 18:42:03 +02002962 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02002963 return 1;
2964
Willy Tarreau454f9052017-10-26 19:40:35 +02002965 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002966 h2s_error(h2s, error);
2967 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002968 fail:
2969 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 +02002970 return 0;
2971}
2972
Willy Tarreau63864812019-08-07 14:25:20 +02002973/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
2974 * valid for the current stream state. This is needed only after parsing the
2975 * frame header but in practice it can be performed at any time during
2976 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
2977 * or 0 in case of error, in which case either h2s or h2c will carry an error.
2978 */
2979static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
2980{
Willy Tarreau7838a792019-08-12 18:42:03 +02002981 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
2982
Willy Tarreau63864812019-08-07 14:25:20 +02002983 if (h2s->st == H2_SS_IDLE &&
2984 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
2985 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
2986 * this state MUST be treated as a connection error
2987 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002988 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 +02002989 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002990 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02002991 /* only log if no other stream can report the error */
2992 sess_log(h2c->conn->owner);
2993 }
Willy Tarreau4781b152021-04-06 13:53:36 +02002994 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002995 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 +02002996 return 0;
2997 }
2998
Willy Tarreau57a18162019-11-24 14:57:53 +01002999 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
3000 /* only PUSH_PROMISE would be permitted here */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003001 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 +01003002 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003003 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau57a18162019-11-24 14:57:53 +01003004 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
3005 return 0;
3006 }
3007
Willy Tarreau63864812019-08-07 14:25:20 +02003008 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
3009 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
3010 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
3011 * this state MUST be treated as a stream error.
3012 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
3013 * PUSH_PROMISE/CONTINUATION cause connection errors.
3014 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01003015 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003016 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 +02003017 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003018 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003019 }
3020 else {
Willy Tarreau63864812019-08-07 14:25:20 +02003021 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003022 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003023 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 +02003024 return 0;
3025 }
3026
3027 /* Below the management of frames received in closed state is a
3028 * bit hackish because the spec makes strong differences between
3029 * streams closed by receiving RST, sending RST, and seeing ES
3030 * in both directions. In addition to this, the creation of a
3031 * new stream reusing the identifier of a closed one will be
3032 * detected here. Given that we cannot keep track of all closed
3033 * streams forever, we consider that unknown closed streams were
3034 * closed on RST received, which allows us to respond with an
3035 * RST without breaking the connection (eg: to abort a transfer).
3036 * Some frames have to be silently ignored as well.
3037 */
3038 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
3039 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
3040 /* #5.1.1: The identifier of a newly
3041 * established stream MUST be numerically
3042 * greater than all streams that the initiating
3043 * endpoint has opened or reserved. This
3044 * governs streams that are opened using a
3045 * HEADERS frame and streams that are reserved
3046 * using PUSH_PROMISE. An endpoint that
3047 * receives an unexpected stream identifier
3048 * MUST respond with a connection error.
3049 */
3050 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003051 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 +02003052 return 0;
3053 }
3054
Willy Tarreau4c08f122019-09-26 08:47:15 +02003055 if (h2s->flags & H2_SF_RST_RCVD &&
3056 !(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 +02003057 /* RFC7540#5.1:closed: an endpoint that
3058 * receives any frame other than PRIORITY after
3059 * receiving a RST_STREAM MUST treat that as a
3060 * stream error of type STREAM_CLOSED.
3061 *
3062 * Note that old streams fall into this category
3063 * and will lead to an RST being sent.
3064 *
3065 * However, we cannot generalize this to all frame types. Those
3066 * carrying compression state must still be processed before
3067 * being dropped or we'll desynchronize the decoder. This can
3068 * happen with request trailers received after sending an
3069 * RST_STREAM, or with header/trailers responses received after
3070 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02003071 *
3072 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003073 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003074 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003075 */
3076 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3077 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003078 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 +02003079 return 0;
3080 }
3081
3082 /* RFC7540#5.1:closed: if this state is reached as a
3083 * result of sending a RST_STREAM frame, the peer that
3084 * receives the RST_STREAM might have already sent
3085 * frames on the stream that cannot be withdrawn. An
3086 * endpoint MUST ignore frames that it receives on
3087 * closed streams after it has sent a RST_STREAM
3088 * frame. An endpoint MAY choose to limit the period
3089 * over which it ignores frames and treat frames that
3090 * arrive after this time as being in error.
3091 */
3092 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3093 /* RFC7540#5.1:closed: any frame other than
3094 * PRIO/WU/RST in this state MUST be treated as
3095 * a connection error
3096 */
3097 if (h2c->dft != H2_FT_RST_STREAM &&
3098 h2c->dft != H2_FT_PRIORITY &&
3099 h2c->dft != H2_FT_WINDOW_UPDATE) {
3100 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003101 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 +02003102 return 0;
3103 }
3104 }
3105 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003106 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003107 return 1;
3108}
3109
Willy Tarreaubc933932017-10-09 16:21:43 +02003110/* process Rx frames to be demultiplexed */
3111static void h2_process_demux(struct h2c *h2c)
3112{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003113 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003114 struct h2_fh hdr;
3115 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003116 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003117
Willy Tarreau7838a792019-08-12 18:42:03 +02003118 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3119
Willy Tarreau081d4722017-05-16 21:51:05 +02003120 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003121 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003122
3123 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3124 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003125 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003126 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003127 goto out;
3128
Willy Tarreau52eed752017-09-22 15:05:09 +02003129 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3130 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003131 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003132 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003133 h2c->st0 = H2_CS_ERROR2;
Willy Tarreauc23d6d12021-06-17 08:08:48 +02003134 if (b_data(&h2c->dbuf) ||
3135 !(((const struct session *)h2c->conn->owner)->fe->options & PR_O_IGNORE_PRB))
3136 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003137 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003138 goto fail;
3139 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003140 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003141
3142 h2c->max_id = 0;
3143 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003144 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003145 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003146
3147 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003148 /* ensure that what is pending is a valid SETTINGS frame
3149 * without an ACK.
3150 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003151 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 +02003152 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003153 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003154 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003155 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 +02003156 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003157 if (!(h2c->flags & H2_CF_IS_BACK))
3158 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003159 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003160 goto fail;
3161 }
3162
3163 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3164 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003165 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 +02003166 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3167 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003168 if (!(h2c->flags & H2_CF_IS_BACK))
3169 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003170 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003171 goto fail;
3172 }
3173
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003174 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003175 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003176 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 +02003177 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3178 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003179 if (!(h2c->flags & H2_CF_IS_BACK))
3180 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003181 goto fail;
3182 }
3183
Willy Tarreau3bf69182018-12-21 15:34:50 +01003184 /* that's OK, switch to FRAME_P to process it. This is
3185 * a SETTINGS frame whose header has already been
3186 * deleted above.
3187 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003188 padlen = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +02003189 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003190 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003191 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003192 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003193
3194 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003195 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003196 int ret = 0;
3197
Willy Tarreau7838a792019-08-12 18:42:03 +02003198 if (!b_data(&h2c->dbuf)) {
3199 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
Willy Tarreau133aaa92021-02-05 12:16:01 +01003200 goto dbuf_empty;
Willy Tarreau7838a792019-08-12 18:42:03 +02003201 }
3202
3203 if (h2c->st0 >= H2_CS_ERROR) {
3204 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003205 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003206 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003207
3208 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau30d05f32019-08-06 15:49:51 +02003209 h2c->rcvd_s = 0;
3210
Willy Tarreau7838a792019-08-12 18:42:03 +02003211 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Willy Tarreaua4428bd2018-12-22 18:11:41 +01003212 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr))
Willy Tarreau7e98c052017-10-10 15:56:59 +02003213 break;
3214
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003215 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003216 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 +02003217 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003218 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003219 /* only log if no other stream can report the error */
3220 sess_log(h2c->conn->owner);
3221 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003222 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003223 break;
3224 }
3225
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003226 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003227 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3228 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3229 * we read the pad length and drop it from the remaining
3230 * payload (one byte + the 9 remaining ones = 10 total
3231 * removed), so we have a frame payload starting after the
3232 * pad len. Flow controlled frames (DATA) also count the
3233 * padlen in the flow control, so it must be adjusted.
3234 */
3235 if (hdr.len < 1) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003236 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 +01003237 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003238 if (!(h2c->flags & H2_CF_IS_BACK))
3239 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003240 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau3bf69182018-12-21 15:34:50 +01003241 goto fail;
3242 }
3243 hdr.len--;
3244
3245 if (b_data(&h2c->dbuf) < 10)
3246 break; // missing padlen
3247
3248 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3249
3250 if (padlen > hdr.len) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003251 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 +01003252 /* RFC7540#6.1 : pad length = length of
3253 * frame payload or greater => error.
3254 */
3255 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003256 if (!(h2c->flags & H2_CF_IS_BACK))
3257 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003258 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau3bf69182018-12-21 15:34:50 +01003259 goto fail;
3260 }
3261
3262 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3263 h2c->rcvd_c++;
3264 h2c->rcvd_s++;
3265 }
3266 b_del(&h2c->dbuf, 1);
3267 }
3268 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003269
3270 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003271 h2c->dfl = hdr.len;
3272 h2c->dsi = hdr.sid;
3273 h2c->dft = hdr.ft;
3274 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003275 h2c->dpl = padlen;
Willy Tarreau73db4342019-09-25 07:28:44 +02003276 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 +02003277 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003278
3279 /* check for minimum basic frame format validity */
3280 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3281 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003282 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 +01003283 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003284 if (!(h2c->flags & H2_CF_IS_BACK))
3285 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003286 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003287 goto fail;
3288 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003289 }
3290
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003291 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3292 * H2_CS_FRAME_P indicates an incomplete previous operation
3293 * (most often the first attempt) and requires some validity
3294 * checks for the frame and the current state. The two other
3295 * ones are set after completion (or abortion) and must skip
3296 * validity checks.
3297 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003298 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3299
Willy Tarreau567beb82018-12-18 16:52:44 +01003300 if (tmp_h2s != h2s && h2s && h2s->cs &&
3301 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003302 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003303 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003304 (h2s->flags & H2_SF_ES_RCVD) ||
3305 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003306 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003307 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 +01003308 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003309 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003310 }
3311 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003312
Willy Tarreau63864812019-08-07 14:25:20 +02003313 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003314 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3315 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003316 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003317 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003318
Willy Tarreau7e98c052017-10-10 15:56:59 +02003319 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003320 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003321 if (h2c->st0 == H2_CS_FRAME_P) {
3322 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003323 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003324 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003325 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003326
Willy Tarreau7838a792019-08-12 18:42:03 +02003327 if (h2c->st0 == H2_CS_FRAME_A) {
3328 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 +02003329 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003330 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003331 break;
3332
Willy Tarreaucf68c782017-10-10 17:11:41 +02003333 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003334 if (h2c->st0 == H2_CS_FRAME_P) {
3335 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003336 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003337 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003338
Willy Tarreau7838a792019-08-12 18:42:03 +02003339 if (h2c->st0 == H2_CS_FRAME_A) {
3340 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 +02003341 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003342 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003343 break;
3344
Willy Tarreau26f95952017-07-27 17:18:30 +02003345 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003346 if (h2c->st0 == H2_CS_FRAME_P) {
3347 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 +02003348 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003349 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003350 break;
3351
Willy Tarreau61290ec2017-10-17 08:19:21 +02003352 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003353 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003354 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3355 * frames' parsers consume all following CONTINUATION
3356 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003357 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003358 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 +01003359 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003360 if (!(h2c->flags & H2_CF_IS_BACK))
3361 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003362 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01003363 goto fail;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003364
Willy Tarreau13278b42017-10-13 19:23:14 +02003365 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003366 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003367 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003368 if (h2c->flags & H2_CF_IS_BACK)
3369 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3370 else
3371 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003372 if (tmp_h2s) {
3373 h2s = tmp_h2s;
3374 ret = 1;
3375 }
3376 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003377 HA_ATOMIC_INC(&h2c->px_counters->headers_rcvd);
Willy Tarreau13278b42017-10-13 19:23:14 +02003378 break;
3379
Willy Tarreau454f9052017-10-26 19:40:35 +02003380 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003381 if (h2c->st0 == H2_CS_FRAME_P) {
3382 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003383 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003384 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003385 HA_ATOMIC_INC(&h2c->px_counters->data_rcvd);
Willy Tarreau454f9052017-10-26 19:40:35 +02003386
Willy Tarreau7838a792019-08-12 18:42:03 +02003387 if (h2c->st0 == H2_CS_FRAME_A) {
3388 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 +02003389 ret = h2c_send_strm_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003390 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003391 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003392
Willy Tarreau92153fc2017-12-03 19:46:19 +01003393 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003394 if (h2c->st0 == H2_CS_FRAME_P) {
3395 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003396 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003397 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003398 break;
3399
Willy Tarreaucd234e92017-08-18 10:59:39 +02003400 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003401 if (h2c->st0 == H2_CS_FRAME_P) {
3402 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 +02003403 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003404 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003405 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_rcvd);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003406 break;
3407
Willy Tarreaue96b0922017-10-30 00:28:29 +01003408 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003409 if (h2c->st0 == H2_CS_FRAME_P) {
3410 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003411 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003412 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003413 HA_ATOMIC_INC(&h2c->px_counters->goaway_rcvd);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003414 break;
3415
Willy Tarreau1c661982017-10-30 13:52:01 +01003416 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003417 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003418 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003419 /* drop frames that we ignore. They may be larger than
3420 * the buffer so we drain all of their contents until
3421 * we reach the end.
3422 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003423 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3424 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003425 h2c->dfl -= ret;
3426 ret = h2c->dfl == 0;
3427 }
3428
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003429 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003430 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003431 if (h2s->st == H2_SS_ERROR) {
3432 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 +01003433 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003434 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003435
Willy Tarreau7838a792019-08-12 18:42:03 +02003436 if (h2c->st0 == H2_CS_FRAME_E) {
3437 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 +01003438 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003439 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003440
Willy Tarreau133aaa92021-02-05 12:16:01 +01003441 dbuf_empty:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003442 /* error or missing data condition met above ? */
Willy Tarreau7838a792019-08-12 18:42:03 +02003443 if (ret <= 0) {
3444 TRACE_DEVEL("insufficient data to proceed", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003445 if (h2c->flags & H2_CF_RCVD_SHUT)
3446 h2c->flags |= H2_CF_END_REACHED;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003447 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003448 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003449
3450 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003451 if (h2c->dfl)
3452 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003453 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3454 b_del(&h2c->dbuf, ret);
3455 h2c->dfl -= ret;
3456 if (!h2c->dfl) {
3457 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3458 h2c->st0 = H2_CS_FRAME_H;
3459 h2c->dsi = -1;
3460 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003461 }
3462 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003463
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003464 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003465 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3466 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003467 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003468 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003469
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003470 done:
Willy Tarreau567beb82018-12-18 16:52:44 +01003471 if (h2s && h2s->cs &&
3472 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003473 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003474 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003475 (h2s->flags & H2_SF_ES_RCVD) ||
3476 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003477 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003478 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 +01003479 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003480 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003481 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003482
Willy Tarreau7838a792019-08-12 18:42:03 +02003483 if (old_iw != h2c->miw) {
3484 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003485 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003486 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003487
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003488 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003489 out:
3490 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003491 return;
3492
3493 fail:
3494 /* we can go here on missing data, blocked response or error, but we
3495 * need to check if we've met a short read condition.
3496 */
3497 if (h2c->flags & H2_CF_RCVD_SHUT)
3498 h2c->flags |= H2_CF_END_REACHED;
3499 goto done;
Willy Tarreaubc933932017-10-09 16:21:43 +02003500}
3501
Willy Tarreau989539b2020-01-10 17:01:29 +01003502/* resume each h2s eligible for sending in list head <head> */
3503static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3504{
3505 struct h2s *h2s, *h2s_back;
3506
3507 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3508
3509 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3510 if (h2c->mws <= 0 ||
3511 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3512 h2c->st0 >= H2_CS_ERROR)
3513 break;
3514
3515 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003516
Willy Tarreaud9464162020-01-10 18:25:07 +01003517 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003518 continue;
3519
Willy Tarreau5723f292020-01-10 15:16:57 +01003520 /* If the sender changed his mind and unsubscribed, let's just
3521 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003522 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003523 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3524 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003525 LIST_DEL_INIT(&h2s->list);
3526 continue;
3527 }
3528
Willy Tarreauf96508a2020-01-10 11:12:48 +01003529 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003530 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003531 tasklet_wakeup(h2s->subs->tasklet);
3532 h2s->subs->events &= ~SUB_RETRY_SEND;
3533 if (!h2s->subs->events)
3534 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003535 }
3536 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3537 tasklet_wakeup(h2s->shut_tl);
3538 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003539 }
3540
3541 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3542}
3543
Willy Tarreaubc933932017-10-09 16:21:43 +02003544/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3545 * the end.
3546 */
3547static int h2_process_mux(struct h2c *h2c)
3548{
Willy Tarreau7838a792019-08-12 18:42:03 +02003549 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3550
Willy Tarreau01b44822018-10-03 14:26:37 +02003551 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3552 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3553 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3554 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003555 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003556 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003557 goto fail;
3558 }
3559 h2c->st0 = H2_CS_SETTINGS1;
3560 }
3561 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003562 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003563 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003564 }
3565
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003566 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003567 if (h2c->rcvd_s > 0 &&
3568 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3569 h2c_send_strm_wu(h2c) < 0)
3570 goto fail;
3571
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003572 if (h2c->rcvd_c > 0 &&
3573 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3574 h2c_send_conn_wu(h2c) < 0)
3575 goto fail;
3576
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003577 /* First we always process the flow control list because the streams
3578 * waiting there were already elected for immediate emission but were
3579 * blocked just on this.
3580 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003581 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3582 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003583
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003584 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003585 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003586 if (h2c->st0 == H2_CS_ERROR) {
3587 if (h2c->max_id >= 0) {
3588 h2c_send_goaway_error(h2c, NULL);
3589 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003590 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003591 }
3592
3593 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3594 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003595 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003596 done:
3597 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3598 return 1;
3599 out0:
3600 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3601 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003602}
3603
Willy Tarreau62f52692017-10-08 23:01:42 +02003604
Willy Tarreau479998a2018-11-18 06:30:59 +01003605/* Attempt to read data, and subscribe if none available.
3606 * The function returns 1 if data has been received, otherwise zero.
3607 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003608static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003609{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003610 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003611 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003612 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003613 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003614
Willy Tarreau7838a792019-08-12 18:42:03 +02003615 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3616
3617 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3618 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003619 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003620 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003621
Willy Tarreau7838a792019-08-12 18:42:03 +02003622 if (!h2_recv_allowed(h2c)) {
3623 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003624 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003625 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003626
Willy Tarreau44e973f2018-03-01 17:49:30 +01003627 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003628 if (!buf) {
3629 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003630 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003631 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003632 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003633
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003634 if (h2c->flags & H2_CF_RCVD_SHUT) {
3635 TRACE_DEVEL("leaving on rcvd_shut", H2_EV_H2C_RECV, h2c->conn);
3636 return 0;
3637 }
3638
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003639 if (!b_data(buf)) {
3640 /* try to pre-align the buffer like the
3641 * rxbufs will be to optimize memory copies. We'll make
3642 * sure that the frame header lands at the end of the
3643 * HTX block to alias it upon recv. We cannot use the
3644 * head because rcv_buf() will realign the buffer if
3645 * it's empty. Thus we cheat and pretend we already
3646 * have a few bytes there.
3647 */
3648 max = buf_room_for_htx_data(buf) + 9;
3649 buf->head = sizeof(struct htx) - 9;
3650 }
3651 else
3652 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003653
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003654 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003655
Christopher Fauletde9d6052021-04-23 12:25:18 +02003656 if (max && !ret && h2_recv_allowed(h2c)) {
3657 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
3658 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003659 } else if (ret)
Willy Tarreau022e5e52020-09-10 09:33:15 +02003660 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003661
Christopher Fauletde9d6052021-04-23 12:25:18 +02003662 if (conn_xprt_read0_pending(h2c->conn)) {
3663 TRACE_DATA("received read0", H2_EV_H2C_RECV, h2c->conn);
3664 h2c->flags |= H2_CF_RCVD_SHUT;
3665 }
3666
Olivier Houcharda1411e62018-08-17 18:42:48 +02003667 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003668 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003669 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003670 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003671 }
3672
Willy Tarreau7838a792019-08-12 18:42:03 +02003673 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003674 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003675 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003676 }
3677
3678 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003679 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003680}
3681
Willy Tarreau479998a2018-11-18 06:30:59 +01003682/* Try to send data if possible.
3683 * The function returns 1 if data have been sent, otherwise zero.
3684 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003685static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003686{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003687 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003688 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003689 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003690
Willy Tarreau7838a792019-08-12 18:42:03 +02003691 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003692
Willy Tarreau7838a792019-08-12 18:42:03 +02003693 if (conn->flags & CO_FL_ERROR) {
3694 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3695 return 1;
3696 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003697
Willy Tarreau911db9b2020-01-23 16:27:54 +01003698 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003699 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003700 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003701 }
3702
Willy Tarreaubc933932017-10-09 16:21:43 +02003703 /* This loop is quite simple : it tries to fill as much as it can from
3704 * pending streams into the existing buffer until it's reportedly full
3705 * or the end of send requests is reached. Then it tries to send this
3706 * buffer's contents out, marks it not full if at least one byte could
3707 * be sent, and tries again.
3708 *
3709 * The snd_buf() function normally takes a "flags" argument which may
3710 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3711 * data immediately comes and CO_SFL_STREAMER to indicate that the
3712 * connection is streaming lots of data (used to increase TLS record
3713 * size at the expense of latency). The former can be sent any time
3714 * there's a buffer full flag, as it indicates at least one stream
3715 * attempted to send and failed so there are pending data. An
3716 * alternative would be to set it as long as there's an active stream
3717 * but that would be problematic for ACKs until we have an absolute
3718 * guarantee that all waiters have at least one byte to send. The
3719 * latter should possibly not be set for now.
3720 */
3721
3722 done = 0;
3723 while (!done) {
3724 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003725 unsigned int released = 0;
3726 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003727
3728 /* fill as much as we can into the current buffer */
3729 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3730 done = h2_process_mux(h2c);
3731
Olivier Houchard2b094432019-01-29 18:28:36 +01003732 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003733 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003734
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003735 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
3736 (h2c->st0 == H2_CS_ERROR2) || (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003737 break;
3738
3739 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3740 flags |= CO_SFL_MSG_MORE;
3741
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003742 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3743 if (b_data(buf)) {
3744 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003745 if (!ret) {
3746 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003747 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003748 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003749 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003750 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003751 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003752 if (b_data(buf)) {
3753 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003754 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003755 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003756 }
3757 b_free(buf);
3758 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003759 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003760
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003761 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01003762 offer_buffers(NULL, released);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003763
Willy Tarreaubc933932017-10-09 16:21:43 +02003764 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003765 if (sent)
3766 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003767 }
3768
Willy Tarreaua2af5122017-10-09 11:56:46 +02003769 if (conn->flags & CO_FL_SOCK_WR_SH) {
3770 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003771 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003772 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003773 /* We're not full anymore, so we can wake any task that are waiting
3774 * for us.
3775 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003776 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3777 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003778
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003779 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003780 if (!br_data(h2c->mbuf)) {
3781 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003782 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003783 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003784schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003785 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3786 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003787 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003788 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003789
Willy Tarreau7838a792019-08-12 18:42:03 +02003790 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003791 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003792}
3793
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003794/* this is the tasklet referenced in h2c->wait_event.tasklet */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003795struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state)
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003796{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003797 struct connection *conn;
3798 struct tasklet *tl = (struct tasklet *)t;
3799 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003800 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003801 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003802
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003803 if (state & TASK_F_USR1) {
3804 /* the tasklet was idling on an idle connection, it might have
3805 * been stolen, let's be careful!
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003806 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003807 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3808 if (t->context == NULL) {
3809 /* The connection has been taken over by another thread,
3810 * we're no longer responsible for it, so just free the
3811 * tasklet, and do nothing.
3812 */
3813 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3814 tasklet_free(tl);
Willy Tarreau74163142021-03-13 11:30:19 +01003815 t = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003816 goto leave;
3817 }
3818 conn = h2c->conn;
3819 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003820
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003821 conn_in_list = conn->flags & CO_FL_LIST_MASK;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003822
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003823 /* Remove the connection from the list, to be sure nobody attempts
3824 * to use it while we handle the I/O events
3825 */
3826 if (conn_in_list)
3827 conn_delete_from_tree(&conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003828
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003829 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3830 } else {
3831 /* we're certain the connection was not in an idle list */
3832 conn = h2c->conn;
3833 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3834 conn_in_list = 0;
3835 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003836
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003837 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003838 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003839 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003840 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003841 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003842 ret = h2_process(h2c);
3843
3844 /* If we were in an idle list, we want to add it back into it,
3845 * unless h2_process() returned -1, which mean it has destroyed
3846 * the connection (testing !ret is enough, if h2_process() wasn't
3847 * called then ret will be 0 anyway.
3848 */
Willy Tarreau74163142021-03-13 11:30:19 +01003849 if (ret < 0)
3850 t = NULL;
3851
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003852 if (!ret && conn_in_list) {
3853 struct server *srv = objt_server(conn->target);
3854
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003855 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003856 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003857 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003858 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003859 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003860 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003861 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003862
Willy Tarreau38468772020-06-28 00:31:13 +02003863leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02003864 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreau74163142021-03-13 11:30:19 +01003865 return t;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003866}
Willy Tarreaua2af5122017-10-09 11:56:46 +02003867
Willy Tarreau62f52692017-10-08 23:01:42 +02003868/* callback called on any event by the connection handler.
3869 * It applies changes and returns zero, or < 0 if it wants immediate
3870 * destruction of the connection (which normally doesn not happen in h2).
3871 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003872static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003873{
Olivier Houchard7505f942018-08-21 18:10:44 +02003874 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003875
Willy Tarreau7838a792019-08-12 18:42:03 +02003876 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3877
Willy Tarreauf0961222021-02-05 11:41:46 +01003878 if (!(h2c->flags & H2_CF_DEM_BLOCK_ANY) &&
3879 (b_data(&h2c->dbuf) || (h2c->flags & H2_CF_RCVD_SHUT))) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003880 h2_process_demux(h2c);
3881
3882 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003883 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003884
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003885 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003886 h2c->flags &= ~H2_CF_DEM_DFULL;
3887 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003888 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003889
Willy Tarreaub1e600c2020-10-13 18:09:15 +02003890 if (unlikely(h2c->proxy->disabled) && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01003891 /* frontend is stopping, reload likely in progress, let's try
3892 * to announce a graceful shutdown if not yet done. We don't
3893 * care if it fails, it will be tried again later.
3894 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003895 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
Willy Tarreau8ec14062017-12-30 18:08:13 +01003896 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3897 if (h2c->last_sid < 0)
3898 h2c->last_sid = (1U << 31) - 1;
3899 h2c_send_goaway_error(h2c, NULL);
3900 }
3901 }
3902
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003903 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003904 * If we received early data, and the handshake is done, wake
3905 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003906 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003907 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01003908 (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 +01003909 struct eb32_node *node;
3910 struct h2s *h2s;
3911
3912 h2c->flags |= H2_CF_WAIT_FOR_HS;
3913 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
3914
3915 while (node) {
3916 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01003917 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01003918 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003919 node = eb32_next(node);
3920 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003921 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003922
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003923 if (conn->flags & CO_FL_ERROR || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01003924 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
3925 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
3926 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02003927 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003928
3929 if (eb_is_empty(&h2c->streams_by_id)) {
3930 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003931 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003932 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003933 return -1;
3934 }
Willy Tarreau4481e262019-10-31 15:36:30 +01003935
3936 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01003937 if (conn->flags & CO_FL_LIST_MASK) {
3938 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003939 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01003940 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3941 }
Willy Tarreau4481e262019-10-31 15:36:30 +01003942 }
3943 else if (h2c->st0 == H2_CS_ERROR) {
3944 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01003945 if (conn->flags & CO_FL_LIST_MASK) {
3946 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003947 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01003948 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3949 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003950 }
3951
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003952 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01003953 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003954
Olivier Houchard53216e72018-10-10 15:46:36 +02003955 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
3956 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
3957 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02003958 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02003959 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
3960 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02003961 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003962
Willy Tarreau3f133572017-10-31 19:21:06 +01003963 if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02003964 if (h2c_may_expire(h2c))
3965 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3966 else
3967 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02003968 task_queue(h2c->task);
Willy Tarreauea392822017-10-31 10:02:25 +01003969 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003970
Olivier Houchard7505f942018-08-21 18:10:44 +02003971 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003972 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003973 return 0;
3974}
3975
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003976/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003977static int h2_wake(struct connection *conn)
3978{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003979 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02003980 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003981
Willy Tarreau7838a792019-08-12 18:42:03 +02003982 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3983 ret = h2_process(h2c);
Willy Tarreau508f9892020-02-11 04:38:56 +01003984 if (ret >= 0)
3985 h2_wake_some_streams(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003986 TRACE_LEAVE(H2_EV_H2C_WAKE);
3987 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003988}
3989
Willy Tarreauea392822017-10-31 10:02:25 +01003990/* Connection timeout management. The principle is that if there's no receipt
3991 * nor sending for a certain amount of time, the connection is closed. If the
3992 * MUX buffer still has lying data or is not allocatable, the connection is
3993 * immediately killed. If it's allocatable and empty, we attempt to send a
3994 * GOAWAY frame.
3995 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01003996struct task *h2_timeout_task(struct task *t, void *context, unsigned int state)
Willy Tarreauea392822017-10-31 10:02:25 +01003997{
Olivier Houchard9f6af332018-05-25 14:04:04 +02003998 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01003999 int expired = tick_is_expired(t->expire, now_ms);
4000
Willy Tarreau7838a792019-08-12 18:42:03 +02004001 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
4002
Willy Tarreaubd42e922020-06-30 11:19:23 +02004003 if (h2c) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004004 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004005 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004006
4007 /* Somebody already stole the connection from us, so we should not
4008 * free it, we just have to free the task.
4009 */
4010 if (!t->context) {
4011 h2c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004012 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004013 goto do_leave;
4014 }
4015
4016
Willy Tarreaubd42e922020-06-30 11:19:23 +02004017 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004018 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004019 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
4020 return t;
4021 }
Willy Tarreauea392822017-10-31 10:02:25 +01004022
Willy Tarreaubd42e922020-06-30 11:19:23 +02004023 if (!h2c_may_expire(h2c)) {
4024 /* we do still have streams but all of them are idle, waiting
4025 * for the data layer, so we must not enforce the timeout here.
4026 */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004027 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004028 t->expire = TICK_ETERNITY;
4029 return t;
4030 }
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004031
Willy Tarreaubd42e922020-06-30 11:19:23 +02004032 /* We're about to destroy the connection, so make sure nobody attempts
4033 * to steal it from us.
4034 */
Willy Tarreaubd42e922020-06-30 11:19:23 +02004035 if (h2c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004036 conn_delete_from_tree(&h2c->conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004037
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004038 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004039 }
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004040
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004041do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02004042 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02004043
4044 if (!h2c) {
4045 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02004046 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02004047 return NULL;
4048 }
4049
4050 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01004051 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02004052 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01004053
Willy Tarreau662fafc2019-05-26 09:43:07 +02004054 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01004055 /* don't even try to send a GOAWAY, the buffer is stuck */
4056 h2c->flags |= H2_CF_GOAWAY_FAILED;
4057 }
4058
4059 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01004060 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01004061 if (h2c_send_goaway_error(h2c, NULL) <= 0)
4062 h2c->flags |= H2_CF_GOAWAY_FAILED;
4063
Willy Tarreau662fafc2019-05-26 09:43:07 +02004064 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004065 unsigned int released = 0;
4066 struct buffer *buf;
4067
4068 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
4069 if (b_data(buf)) {
4070 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
4071 if (!ret)
4072 break;
4073 b_del(buf, ret);
4074 if (b_data(buf))
4075 break;
4076 b_free(buf);
4077 released++;
4078 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02004079 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004080
4081 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01004082 offer_buffers(NULL, released);
Willy Tarreau787db9a2018-06-14 18:31:46 +02004083 }
Willy Tarreauea392822017-10-31 10:02:25 +01004084
Willy Tarreau4481e262019-10-31 15:36:30 +01004085 /* in any case this connection must not be considered idle anymore */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004086 if (h2c->conn->flags & CO_FL_LIST_MASK) {
4087 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004088 conn_delete_from_tree(&h2c->conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004089 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4090 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004091
Willy Tarreau0975f112018-03-29 15:22:59 +02004092 /* either we can release everything now or it will be done later once
4093 * the last stream closes.
4094 */
4095 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02004096 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01004097
Willy Tarreau7838a792019-08-12 18:42:03 +02004098 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01004099 return NULL;
4100}
4101
4102
Willy Tarreau62f52692017-10-08 23:01:42 +02004103/*******************************************/
4104/* functions below are used by the streams */
4105/*******************************************/
4106
4107/*
4108 * Attach a new stream to a connection
4109 * (Used for outgoing connections)
4110 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01004111static struct conn_stream *h2_attach(struct connection *conn, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02004112{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004113 struct conn_stream *cs;
4114 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004115 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004116
Willy Tarreau7838a792019-08-12 18:42:03 +02004117 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Christopher Faulet236c93b2020-07-02 09:19:54 +02004118 cs = cs_new(conn, conn->target);
Willy Tarreau7838a792019-08-12 18:42:03 +02004119 if (!cs) {
4120 TRACE_DEVEL("leaving on CS allocation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004121 return NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004122 }
Olivier Houchardf502aca2018-12-14 19:42:40 +01004123 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004124 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004125 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004126 cs_free(cs);
4127 return NULL;
4128 }
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004129
4130 /* the connection is not idle anymore, let's mark this */
4131 HA_ATOMIC_AND(&h2c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004132 xprt_set_used(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004133
Willy Tarreau7838a792019-08-12 18:42:03 +02004134 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004135 return cs;
Willy Tarreau62f52692017-10-08 23:01:42 +02004136}
4137
Willy Tarreaufafd3982018-11-18 21:29:20 +01004138/* Retrieves the first valid conn_stream from this connection, or returns NULL.
4139 * We have to scan because we may have some orphan streams. It might be
4140 * beneficial to scan backwards from the end to reduce the likeliness to find
4141 * orphans.
4142 */
4143static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
4144{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004145 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004146 struct h2s *h2s;
4147 struct eb32_node *node;
4148
4149 node = eb32_first(&h2c->streams_by_id);
4150 while (node) {
4151 h2s = container_of(node, struct h2s, by_id);
4152 if (h2s->cs)
4153 return h2s->cs;
4154 node = eb32_next(node);
4155 }
4156 return NULL;
4157}
4158
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004159static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4160{
4161 int ret = 0;
4162 struct h2c *h2c = conn->ctx;
4163
4164 switch (mux_ctl) {
4165 case MUX_STATUS:
4166 /* Only consider the mux to be ready if we're done with
4167 * the preface and settings, and we had no error.
4168 */
4169 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4170 ret |= MUX_STATUS_READY;
4171 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02004172 case MUX_EXIT_STATUS:
4173 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004174 default:
4175 return -1;
4176 }
4177}
4178
Willy Tarreau62f52692017-10-08 23:01:42 +02004179/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004180 * Destroy the mux and the associated connection, if it is no longer used
4181 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004182static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004183{
Christopher Faulet73c12072019-04-08 11:23:22 +02004184 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004185
Willy Tarreau7838a792019-08-12 18:42:03 +02004186 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02004187 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02004188 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004189 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004190}
4191
4192/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004193 * Detach the stream from the connection and possibly release the connection.
4194 */
4195static void h2_detach(struct conn_stream *cs)
4196{
Willy Tarreau60935142017-10-16 18:11:19 +02004197 struct h2s *h2s = cs->ctx;
4198 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004199 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004200
Willy Tarreau7838a792019-08-12 18:42:03 +02004201 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4202
Willy Tarreau60935142017-10-16 18:11:19 +02004203 cs->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004204 if (!h2s) {
4205 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004206 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004207 }
Willy Tarreau60935142017-10-16 18:11:19 +02004208
Willy Tarreaud9464162020-01-10 18:25:07 +01004209 /* there's no txbuf so we're certain not to be able to send anything */
4210 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004211
Olivier Houchardf502aca2018-12-14 19:42:40 +01004212 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004213 h2c = h2s->h2c;
4214 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02004215 h2c->nb_cs--;
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004216 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
4217 !h2_frt_has_too_many_cs(h2c)) {
4218 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004219 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004220 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004221 }
Willy Tarreau60935142017-10-16 18:11:19 +02004222
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004223 /* this stream may be blocked waiting for some data to leave (possibly
4224 * an ES or RST frame), so orphan it in this case.
4225 */
Willy Tarreau3041fcc2018-03-29 15:41:32 +02004226 if (!(cs->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004227 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004228 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004229 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004230 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004231 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004232 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004233
Willy Tarreau45f752e2017-10-30 15:44:59 +01004234 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
4235 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
4236 /* unblock the connection if it was blocked on this
4237 * stream.
4238 */
4239 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4240 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004241 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004242 }
4243
Willy Tarreau71049cc2018-03-28 13:56:39 +02004244 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004245
Christopher Faulet9b79a102019-07-15 11:22:56 +02004246 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01004247 if (!(h2c->conn->flags &
4248 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004249 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004250 /* Add the connection in the session server list, if not already done */
4251 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4252 h2c->conn->owner = NULL;
4253 if (eb_is_empty(&h2c->streams_by_id)) {
4254 h2c->conn->mux->destroy(h2c);
4255 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4256 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004257 }
4258 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004259 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004260 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4261 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4262 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004263 return;
4264 }
4265 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004266 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004267 else {
4268 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004269 /* If the connection is owned by the session, first remove it
4270 * from its list
4271 */
4272 if (h2c->conn->owner) {
4273 session_unown_conn(h2c->conn->owner, h2c->conn);
4274 h2c->conn->owner = NULL;
4275 }
4276
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004277 /* mark that the tasklet may lose its context to another thread and
4278 * that the handler needs to check it under the idle conns lock.
4279 */
4280 HA_ATOMIC_OR(&h2c->wait_event.tasklet->state, TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004281 xprt_set_idle(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
4282
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004283 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004284 /* The server doesn't want it, let's kill the connection right away */
4285 h2c->conn->mux->destroy(h2c);
4286 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4287 return;
4288 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004289 /* At this point, the connection has been added to the
4290 * server idle list, so another thread may already have
4291 * hijacked it, so we can't do anything with it.
4292 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004293 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4294 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004295
Olivier Houchard8a786902018-12-15 16:05:40 +01004296 }
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004297 else if (!h2c->conn->hash_node->node.node.leaf_p &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004298 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02004299 !LIST_INLIST(&h2c->conn->session_list)) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004300 ebmb_insert(&__objt_server(h2c->conn->target)->per_thr[tid].avail_conns,
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004301 &h2c->conn->hash_node->node,
4302 sizeof(h2c->conn->hash_node->hash));
Christopher Fauletc5579d12020-07-01 15:45:41 +02004303 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004304 }
4305 }
4306 }
4307
Willy Tarreaue323f342018-03-28 13:51:45 +02004308 /* We don't want to close right now unless we're removing the
4309 * last stream, and either the connection is in error, or it
4310 * reached the ID already specified in a GOAWAY frame received
4311 * or sent (as seen by last_sid >= 0).
4312 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004313 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004314 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004315 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004316 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004317 }
4318 else if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004319 if (h2c_may_expire(h2c))
4320 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
4321 else
4322 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02004323 task_queue(h2c->task);
Willy Tarreau7838a792019-08-12 18:42:03 +02004324 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004325 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004326 else
4327 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004328}
4329
Willy Tarreau88bdba32019-05-13 18:17:53 +02004330/* Performs a synchronous or asynchronous shutr(). */
4331static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004332{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004333 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004334
Willy Tarreauf983d002019-05-14 10:40:21 +02004335 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004336 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004337
Willy Tarreau7838a792019-08-12 18:42:03 +02004338 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4339
Willy Tarreau18059042019-01-31 19:12:48 +01004340 /* a connstream may require us to immediately kill the whole connection
4341 * for example because of a "tcp-request content reject" rule that is
4342 * normally used to limit abuse. In this case we schedule a goaway to
4343 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004344 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004345 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004346 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004347 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004348 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4349 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4350 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004351 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4352 /* Nothing was never sent for this stream, so reset with
4353 * REFUSED_STREAM error to let the client retry the
4354 * request.
4355 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004356 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004357 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4358 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004359 else {
4360 /* a final response was already provided, we don't want this
4361 * stream anymore. This may happen when the server responds
4362 * before the end of an upload and closes quickly (redirect,
4363 * deny, ...)
4364 */
4365 h2s_error(h2s, H2_ERR_CANCEL);
4366 }
Willy Tarreau18059042019-01-31 19:12:48 +01004367
Willy Tarreau90c32322017-11-24 08:00:30 +01004368 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004369 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004370 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004371
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004372 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004373 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004374 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004375 done:
4376 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004377 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004378 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004379add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004380 /* Let the handler know we want to shutr, and add ourselves to the
4381 * most relevant list if not yet done. h2_deferred_shut() will be
4382 * automatically called via the shut_tl tasklet when there's room
4383 * again.
4384 */
4385 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau2b718102021-04-21 07:32:39 +02004386 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004387 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004388 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004389 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004390 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004391 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004392 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004393 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004394}
4395
Willy Tarreau88bdba32019-05-13 18:17:53 +02004396/* Performs a synchronous or asynchronous shutw(). */
4397static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004398{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004399 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004400
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004401 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004402 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004403
Willy Tarreau7838a792019-08-12 18:42:03 +02004404 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4405
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004406 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01004407 /* we can cleanly close using an empty data frame only after headers */
4408
4409 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4410 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004411 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004412
4413 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004414 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004415 else
4416 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004417 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004418 /* a connstream may require us to immediately kill the whole connection
4419 * for example because of a "tcp-request content reject" rule that is
4420 * normally used to limit abuse. In this case we schedule a goaway to
4421 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004422 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004423 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004424 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004425 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004426 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4427 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4428 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004429 else {
4430 /* Nothing was never sent for this stream, so reset with
4431 * REFUSED_STREAM error to let the client retry the
4432 * request.
4433 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004434 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004435 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4436 }
Willy Tarreau18059042019-01-31 19:12:48 +01004437
Willy Tarreau90c32322017-11-24 08:00:30 +01004438 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004439 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004440 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004441
Willy Tarreau00dd0782018-03-01 16:31:34 +01004442 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004443 }
4444
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004445 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004446 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004447
4448 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4449
Willy Tarreau88bdba32019-05-13 18:17:53 +02004450 done:
4451 h2s->flags &= ~H2_SF_WANT_SHUTW;
4452 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004453
4454 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004455 /* Let the handler know we want to shutw, and add ourselves to the
4456 * most relevant list if not yet done. h2_deferred_shut() will be
4457 * automatically called via the shut_tl tasklet when there's room
4458 * again.
4459 */
4460 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau2b718102021-04-21 07:32:39 +02004461 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004462 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004463 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004464 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004465 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004466 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004467 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004468 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004469}
4470
Willy Tarreau5723f292020-01-10 15:16:57 +01004471/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004472 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4473 * and prevented the last frame from being emitted.
4474 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004475struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004476{
4477 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004478 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004479
Willy Tarreau7838a792019-08-12 18:42:03 +02004480 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4481
Willy Tarreau5723f292020-01-10 15:16:57 +01004482 if (h2s->flags & H2_SF_NOTIFIED) {
4483 /* some data processing remains to be done first */
4484 goto end;
4485 }
4486
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004487 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004488 h2_do_shutw(h2s);
4489
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004490 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004491 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004492
Willy Tarreau88bdba32019-05-13 18:17:53 +02004493 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004494 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004495 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004496
Willy Tarreau88bdba32019-05-13 18:17:53 +02004497 if (!h2s->cs) {
4498 h2s_destroy(h2s);
Willy Tarreau74163142021-03-13 11:30:19 +01004499 if (h2c_is_dead(h2c)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004500 h2_release(h2c);
Willy Tarreau74163142021-03-13 11:30:19 +01004501 t = NULL;
4502 }
Willy Tarreau88bdba32019-05-13 18:17:53 +02004503 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004504 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004505 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004506 TRACE_LEAVE(H2_EV_STRM_SHUT);
Willy Tarreau74163142021-03-13 11:30:19 +01004507 return t;
Willy Tarreau62f52692017-10-08 23:01:42 +02004508}
4509
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004510/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004511static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
4512{
4513 struct h2s *h2s = cs->ctx;
4514
Willy Tarreau7838a792019-08-12 18:42:03 +02004515 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004516 if (cs->flags & CS_FL_KILL_CONN)
4517 h2s->flags |= H2_SF_KILL_CONN;
4518
Willy Tarreau7838a792019-08-12 18:42:03 +02004519 if (mode)
4520 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004521
Willy Tarreau7838a792019-08-12 18:42:03 +02004522 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004523}
4524
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004525/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004526static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
4527{
4528 struct h2s *h2s = cs->ctx;
4529
Willy Tarreau7838a792019-08-12 18:42:03 +02004530 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004531 if (cs->flags & CS_FL_KILL_CONN)
4532 h2s->flags |= H2_SF_KILL_CONN;
4533
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004534 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004535 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004536}
4537
Christopher Faulet9b79a102019-07-15 11:22:56 +02004538/* Decode the payload of a HEADERS frame and produce the HTX request or response
4539 * depending on the connection's side. Returns a positive value on success, a
4540 * negative value on failure, or 0 if it couldn't proceed. May report connection
4541 * errors in h2c->errcode if the frame is non-decodable and the connection
4542 * unrecoverable. In absence of connection error when a failure is reported, the
4543 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004544 *
4545 * The function may fold CONTINUATION frames into the initial HEADERS frame
4546 * by removing padding and next frame header, then moving the CONTINUATION
4547 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4548 * leaving a hole between the main frame and the beginning of the next one.
4549 * The possibly remaining incomplete or next frame at the end may be moved
4550 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4551 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4552 *
4553 * A buffer at the beginning of processing may look like this :
4554 *
4555 * ,---.---------.-----.--------------.--------------.------.---.
4556 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4557 * `---^---------^-----^--------------^--------------^------^---'
4558 * | | <-----> | |
4559 * area | dpl | wrap
4560 * |<--------------> |
4561 * | dfl |
4562 * |<-------------------------------------------------->|
4563 * head data
4564 *
4565 * Padding is automatically overwritten when folding, participating to the
4566 * hole size after dfl :
4567 *
4568 * ,---.------------------------.-----.--------------.------.---.
4569 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4570 * `---^------------------------^-----^--------------^------^---'
4571 * | | <-----> | |
4572 * area | hole | wrap
4573 * |<-----------------------> |
4574 * | dfl |
4575 * |<-------------------------------------------------->|
4576 * head data
4577 *
4578 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4579 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4580 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004581 *
4582 * The <flags> field must point to either the stream's flags or to a copy of it
4583 * so that the function can update the following flags :
4584 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004585 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004586 *
4587 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4588 * decoding, in order to detect if we're dealing with a headers or a trailers
4589 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004590 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004591static int h2c_decode_headers(struct h2c *h2c, struct buffer *rxbuf, uint32_t *flags, unsigned long long *body_len, char *upgrade_protocol)
Willy Tarreau13278b42017-10-13 19:23:14 +02004592{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004593 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004594 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004595 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004596 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004597 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004598 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004599 int flen; // header frame len
4600 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004601 int ret = 0;
4602 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004603 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004604
Willy Tarreau7838a792019-08-12 18:42:03 +02004605 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4606
Willy Tarreauea18f862018-12-22 20:19:26 +01004607next_frame:
4608 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4609 goto leave; // incomplete input frame
4610
4611 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4612 * this case, we'll try to paste it immediately after the initial
4613 * HEADERS frame payload and kill any possible padding. The initial
4614 * frame's length will be increased to represent the concatenation
4615 * of the two frames. The next frame is read from position <tlen>
4616 * and written at position <flen> (minus padding if some is present).
4617 */
4618 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4619 struct h2_fh hdr;
4620 int clen; // CONTINUATION frame's payload length
4621
Willy Tarreau7838a792019-08-12 18:42:03 +02004622 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 +01004623 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4624 /* no more data, the buffer may be full, either due to
4625 * too large a frame or because of too large a hole that
4626 * we're going to compact at the end.
4627 */
4628 goto leave;
4629 }
4630
4631 if (hdr.ft != H2_FT_CONTINUATION) {
4632 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004633 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 +01004634 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004635 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004636 goto fail;
4637 }
4638
4639 if (hdr.sid != h2c->dsi) {
4640 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004641 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 +01004642 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004643 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004644 goto fail;
4645 }
4646
4647 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4648 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004649 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 +01004650 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4651 goto fail;
4652 }
4653
4654 /* detect when we must stop aggragating frames */
4655 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4656
4657 /* Take as much as we can of the CONTINUATION frame's payload */
4658 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4659 if (clen > hdr.len)
4660 clen = hdr.len;
4661
4662 /* Move the frame's payload over the padding, hole and frame
4663 * header. At least one of hole or dpl is null (see diagrams
4664 * above). The hole moves after the new aggragated frame.
4665 */
4666 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole + 9), clen, -(h2c->dpl + hole + 9));
Christopher Fauletcb1847c2021-04-21 11:11:21 +02004667 h2c->dfl += hdr.len - h2c->dpl;
Willy Tarreauea18f862018-12-22 20:19:26 +01004668 hole += h2c->dpl + 9;
4669 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004670 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 +01004671 goto next_frame;
4672 }
4673
4674 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004675
Willy Tarreau13278b42017-10-13 19:23:14 +02004676 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004677 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004678 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004679 copy = alloc_trash_chunk();
4680 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004681 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 +02004682 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4683 goto fail;
4684 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004685 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4686 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4687 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004688 }
4689
Willy Tarreau13278b42017-10-13 19:23:14 +02004690 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4691 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004692 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004693 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004694 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 +01004695 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004696 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004697 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004698 }
4699
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004700 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004701 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 +01004702 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4703 goto fail;
4704 }
4705
Willy Tarreau13278b42017-10-13 19:23:14 +02004706 hdrs += 5; // stream dep = 4, weight = 1
4707 flen -= 5;
4708 }
4709
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004710 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004711 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 +01004712 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004713 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004714 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004715
Willy Tarreau937f7602018-02-26 15:22:17 +01004716 /* we can't retry a failed decompression operation so we must be very
4717 * careful not to take any risks. In practice the output buffer is
4718 * always empty except maybe for trailers, in which case we simply have
4719 * to wait for the upper layer to finish consuming what is available.
4720 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004721 htx = htx_from_buf(rxbuf);
4722 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004723 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 +02004724 h2c->flags |= H2_CF_DEM_SFULL;
4725 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004726 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004727
Willy Tarreau25919232019-01-03 14:48:18 +01004728 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004729 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4730 sizeof(list)/sizeof(list[0]), tmp);
4731 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004732 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 +01004733 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4734 goto fail;
4735 }
4736
Willy Tarreau25919232019-01-03 14:48:18 +01004737 /* The PACK decompressor was updated, let's update the input buffer and
4738 * the parser's state to commit these changes and allow us to later
4739 * fail solely on the stream if needed.
4740 */
4741 b_del(&h2c->dbuf, h2c->dfl + hole);
4742 h2c->dfl = hole = 0;
4743 h2c->st0 = H2_CS_FRAME_H;
4744
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004745 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004746 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Christopher Fauletd0db4232021-01-22 11:46:30 +01004747 msgf |= (*flags & H2_SF_BODY_TUNNEL) ? H2_MSGF_BODY_TUNNEL: 0;
Amaury Denoyelle74162742020-12-11 17:53:05 +01004748 /* If an Extended CONNECT has been sent on this stream, set message flag
Ilya Shipitsinacf84592021-02-06 22:29:08 +05004749 * to convert 200 response to 101 htx response */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004750 msgf |= (*flags & H2_SF_EXT_CONNECT_SENT) ? H2_MSGF_EXT_CONNECT: 0;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004751
Willy Tarreau88d138e2019-01-02 19:38:14 +01004752 if (*flags & H2_SF_HEADERS_RCVD)
4753 goto trailers;
4754
4755 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004756 if (h2c->flags & H2_CF_IS_BACK)
Amaury Denoyelle74162742020-12-11 17:53:05 +01004757 outlen = h2_make_htx_response(list, htx, &msgf, body_len, upgrade_protocol);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004758 else
4759 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004760
Christopher Faulet3d875582021-04-26 17:46:13 +02004761 if (outlen < 0 || htx_free_space(htx) < global.tune.maxrewrite) {
Willy Tarreau25919232019-01-03 14:48:18 +01004762 /* too large headers? this is a stream error only */
Christopher Faulet3d875582021-04-26 17:46:13 +02004763 TRACE_STATE("message headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
4764 htx->flags |= HTX_FL_PARSING_ERROR;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004765 goto fail;
4766 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004767
Willy Tarreau174b06a2018-04-25 18:13:58 +02004768 if (msgf & H2_MSGF_BODY) {
4769 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004770 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004771 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004772 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004773 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004774 }
Christopher Faulet7d247f02020-12-02 14:26:36 +01004775 if (msgf & H2_MSGF_BODYLESS_RSP)
4776 *flags |= H2_SF_BODYLESS_RESP;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004777
Christopher Fauletd0db4232021-01-22 11:46:30 +01004778 if (msgf & H2_MSGF_BODY_TUNNEL)
4779 *flags |= H2_SF_BODY_TUNNEL;
4780 else {
4781 /* Abort the tunnel attempt, if any */
4782 if (*flags & H2_SF_BODY_TUNNEL)
4783 *flags |= H2_SF_TUNNEL_ABRT;
4784 *flags &= ~H2_SF_BODY_TUNNEL;
4785 }
4786
Willy Tarreau88d138e2019-01-02 19:38:14 +01004787 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004788 /* indicate that a HEADERS frame was received for this stream, except
4789 * for 1xx responses. For 1xx responses, another HEADERS frame is
4790 * expected.
4791 */
4792 if (!(msgf & H2_MSGF_RSP_1XX))
4793 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004794
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004795 if (h2c->dff & H2_F_HEADERS_END_STREAM) {
4796 /* no more data are expected for this message */
4797 htx->flags |= HTX_FL_EOM;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004798 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004799
Amaury Denoyelleefe22762020-12-11 17:53:08 +01004800 if (msgf & H2_MSGF_EXT_CONNECT)
4801 *flags |= H2_SF_EXT_CONNECT_RCVD;
4802
Willy Tarreau86277d42019-01-02 15:36:11 +01004803 /* success */
4804 ret = 1;
4805
Willy Tarreau68dd9852017-07-03 14:44:26 +02004806 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004807 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004808 * move the remaining data over it.
4809 */
4810 if (hole) {
4811 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4812 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4813 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4814 b_sub(&h2c->dbuf, hole);
4815 }
4816
Christopher Faulet07f88d72021-04-21 10:39:53 +02004817 if (b_full(&h2c->dbuf) && h2c->dfl) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004818 /* too large frames */
4819 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004820 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004821 }
4822
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004823 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004824 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004825 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004826 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004827 return ret;
4828
Willy Tarreau68dd9852017-07-03 14:44:26 +02004829 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004830 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004831 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004832
4833 trailers:
4834 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004835 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4836 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004837 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 +01004838 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004839 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau88d138e2019-01-02 19:38:14 +01004840 goto fail;
4841 }
4842
Christopher Faulet9b79a102019-07-15 11:22:56 +02004843 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02004844 if (h2_make_htx_trailers(list, htx) <= 0) {
4845 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 +02004846 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004847 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004848 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02004849}
4850
Christopher Faulet9b79a102019-07-15 11:22:56 +02004851/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004852 * parser state is automatically updated. Returns > 0 if it could completely
4853 * send the current frame, 0 if it couldn't complete, in which case
4854 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
4855 * DATA frame can return 0 as a valid result). Stream errors are reported in
4856 * h2s->errcode and connection errors in h2c->errcode. The caller must already
4857 * have checked the frame header and ensured that the frame was complete or the
4858 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02004859 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01004860static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02004861{
4862 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004863 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004864 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004865 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004866 struct buffer *csbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004867 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02004868
Willy Tarreau7838a792019-08-12 18:42:03 +02004869 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
4870
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004871 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02004872
Olivier Houchard638b7992018-08-16 15:41:52 +02004873 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004874 if (!csbuf) {
4875 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02004876 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 +01004877 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004878 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004879 htx = htx_from_buf(csbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004880
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004881try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004882 flen = h2c->dfl - h2c->dpl;
4883 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01004884 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004885
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004886 if (flen > b_data(&h2c->dbuf)) {
4887 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004888 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01004889 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004890 }
4891
Christopher Faulet9b79a102019-07-15 11:22:56 +02004892 block = htx_free_data_space(htx);
4893 if (!block) {
4894 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004895 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 +02004896 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004897 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004898 if (flen > block)
4899 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004900
Christopher Faulet9b79a102019-07-15 11:22:56 +02004901 /* here, flen is the max we can copy into the output buffer */
4902 block = b_contig_data(&h2c->dbuf, 0);
4903 if (flen > block)
4904 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004905
Christopher Faulet9b79a102019-07-15 11:22:56 +02004906 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02004907 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 +02004908
Christopher Faulet9b79a102019-07-15 11:22:56 +02004909 b_del(&h2c->dbuf, sent);
4910 h2c->dfl -= sent;
4911 h2c->rcvd_c += sent;
4912 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02004913
Christopher Faulet9b79a102019-07-15 11:22:56 +02004914 if (h2s->flags & H2_SF_DATA_CLEN) {
4915 h2s->body_len -= sent;
4916 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004917 }
4918
Christopher Faulet9b79a102019-07-15 11:22:56 +02004919 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004920 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004921 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 +01004922 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004923 }
4924
Christopher Faulet9b79a102019-07-15 11:22:56 +02004925 goto try_again;
4926
Willy Tarreau4a28da12018-01-04 14:41:00 +01004927 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004928 /* here we're done with the frame, all the payload (except padding) was
4929 * transferred.
4930 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02004931
Christopher Faulet5be651d2021-01-22 15:28:03 +01004932 if (!(h2s->flags & H2_SF_BODY_TUNNEL) && (h2c->dff & H2_F_DATA_END_STREAM)) {
4933 /* no more data are expected for this message. This add the EOM
4934 * flag but only on the response path or if no tunnel attempt
4935 * was aborted. Otherwise (request path + tunnel abrted), the
4936 * EOM was already reported.
4937 */
Christopher Faulet33724322021-02-10 09:04:59 +01004938 if ((h2c->flags & H2_CF_IS_BACK) || !(h2s->flags & H2_SF_TUNNEL_ABRT)) {
4939 /* If we receive an empty DATA frame with ES flag while the HTX
4940 * message is empty, we must be sure to push a block to be sure
4941 * the HTX EOM flag will be handled on the other side. It is a
4942 * workaround because for now it is not possible to push empty
4943 * HTX DATA block. And without this block, there is no way to
4944 * "commit" the end of the message.
4945 */
4946 if (htx_is_empty(htx)) {
4947 if (!htx_add_endof(htx, HTX_BLK_EOT))
4948 goto fail;
4949 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004950 htx->flags |= HTX_FL_EOM;
Christopher Faulet33724322021-02-10 09:04:59 +01004951 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02004952 }
4953
Willy Tarreaud1023bb2018-03-22 16:53:12 +01004954 h2c->rcvd_c += h2c->dpl;
4955 h2c->rcvd_s += h2c->dpl;
4956 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004957 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet9b79a102019-07-15 11:22:56 +02004958 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02004959 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004960 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01004961 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004962 if (htx)
4963 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02004964 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01004965 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004966}
4967
Willy Tarreau115e83b2018-12-01 19:17:53 +01004968/* Try to send a HEADERS frame matching HTX response present in HTX message
4969 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4970 * must check the stream's status to detect any error which might have happened
4971 * subsequently to a successful send. The htx blocks are automatically removed
4972 * from the message. The htx message is assumed to be valid since produced from
4973 * the internal code, hence it contains a start line, an optional series of
4974 * header blocks and an end of header, otherwise an invalid frame could be
4975 * emitted and the resulting htx message could be left in an inconsistent state.
4976 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004977static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004978{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004979 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01004980 struct h2c *h2c = h2s->h2c;
4981 struct htx_blk *blk;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004982 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004983 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004984 struct htx_sl *sl;
4985 enum htx_blk_type type;
4986 int es_now = 0;
4987 int ret = 0;
4988 int hdr;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004989
Willy Tarreau7838a792019-08-12 18:42:03 +02004990 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
4991
Willy Tarreau115e83b2018-12-01 19:17:53 +01004992 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004993 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004994 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02004995 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004996 return 0;
4997 }
4998
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004999 /* get the start line (we do have one) and the rest of the headers,
5000 * that we dump starting at header 0 */
5001 sl = NULL;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005002 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005003 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005004 type = htx_get_blk_type(blk);
5005
5006 if (type == HTX_BLK_UNUSED)
5007 continue;
5008
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005009 if (type == HTX_BLK_EOH)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005010 break;
5011
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005012 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005013 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005014 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5015 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5016 goto fail;
5017 }
5018
5019 list[hdr].n = htx_get_blk_name(htx, blk);
5020 list[hdr].v = htx_get_blk_value(htx, blk);
5021 hdr++;
5022 }
5023 else if (type == HTX_BLK_RES_SL) {
Christopher Faulet56498132021-01-29 11:39:43 +01005024 BUG_ON(sl); /* Only one start-line expected */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005025 sl = htx_get_blk_ptr(htx, blk);
5026 h2s->status = sl->info.res.status;
Christopher Faulet7d247f02020-12-02 14:26:36 +01005027 if (h2s->status == 204 || h2s->status == 304)
5028 h2s->flags |= H2_SF_BODYLESS_RESP;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005029 if (h2s->status < 100 || h2s->status > 999) {
5030 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5031 goto fail;
5032 }
5033 else if (h2s->status == 101) {
Amaury Denoyelleefe22762020-12-11 17:53:08 +01005034 if (unlikely(h2s->flags & H2_SF_EXT_CONNECT_RCVD)) {
5035 /* If an Extended CONNECT has been received, we need to convert 101 to 200 */
5036 h2s->status = 200;
5037 h2s->flags &= ~H2_SF_EXT_CONNECT_RCVD;
5038 }
5039 else {
5040 /* Otherwise, 101 responses are not supported in H2, so return a error (RFC7540#8.1.1) */
5041 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5042 goto fail;
5043 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005044 }
5045 else if ((h2s->flags & H2_SF_BODY_TUNNEL) && h2s->status >= 300) {
5046 /* Abort the tunnel attempt */
5047 h2s->flags &= ~H2_SF_BODY_TUNNEL;
5048 h2s->flags |= H2_SF_TUNNEL_ABRT;
5049 }
5050 }
5051 else {
5052 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005053 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005054 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005055 }
5056
Christopher Faulet56498132021-01-29 11:39:43 +01005057 /* The start-line me be defined */
5058 BUG_ON(!sl);
5059
Willy Tarreau115e83b2018-12-01 19:17:53 +01005060 /* marker for end of headers */
5061 list[hdr].n = ist("");
5062
Willy Tarreau9c218e72019-05-26 10:08:28 +02005063 mbuf = br_tail(h2c->mbuf);
5064 retry:
5065 if (!h2_get_buf(h2c, mbuf)) {
5066 h2c->flags |= H2_CF_MUX_MALLOC;
5067 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005068 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 +02005069 return 0;
5070 }
5071
Willy Tarreau115e83b2018-12-01 19:17:53 +01005072 chunk_reset(&outbuf);
5073
5074 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005075 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5076 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005077 break;
5078 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005079 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01005080 }
5081
5082 if (outbuf.size < 9)
5083 goto full;
5084
5085 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5086 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5087 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5088 outbuf.data = 9;
5089
5090 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01005091 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005092 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005093 goto realign_again;
5094 goto full;
5095 }
5096
5097 /* encode all headers, stop at empty name */
5098 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5099 /* these ones do not exist in H2 and must be dropped. */
5100 if (isteq(list[hdr].n, ist("connection")) ||
5101 isteq(list[hdr].n, ist("proxy-connection")) ||
5102 isteq(list[hdr].n, ist("keep-alive")) ||
5103 isteq(list[hdr].n, ist("upgrade")) ||
5104 isteq(list[hdr].n, ist("transfer-encoding")))
5105 continue;
5106
Christopher Faulet86d144c2019-08-14 16:32:25 +02005107 /* Skip all pseudo-headers */
5108 if (*(list[hdr].n.ptr) == ':')
5109 continue;
5110
Willy Tarreau115e83b2018-12-01 19:17:53 +01005111 if (isteq(list[hdr].n, ist("")))
5112 break; // end
5113
5114 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
5115 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005116 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005117 goto realign_again;
5118 goto full;
5119 }
5120 }
5121
Willy Tarreaucb985a42019-10-07 16:56:34 +02005122 /* update the frame's size */
5123 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5124
5125 if (outbuf.data > h2c->mfs + 9) {
5126 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5127 /* output full */
5128 if (b_space_wraps(mbuf))
5129 goto realign_again;
5130 goto full;
5131 }
5132 }
5133
Willy Tarreau38b5bec2021-06-17 08:40:04 +02005134 TRACE_USER("sent H2 response ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5135
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005136 /* remove all header blocks including the EOH and compute the
5137 * corresponding size.
Willy Tarreau115e83b2018-12-01 19:17:53 +01005138 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005139 ret = 0;
5140 blk = htx_get_head_blk(htx);
5141 while (blk) {
5142 type = htx_get_blk_type(blk);
5143 ret += htx_get_blksz(blk);
5144 blk = htx_remove_blk(htx, blk);
5145 /* The removed block is the EOH */
5146 if (type == HTX_BLK_EOH)
5147 break;
Christopher Faulet5be651d2021-01-22 15:28:03 +01005148 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005149
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005150 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) {
5151 /* Response already closed: add END_STREAM */
5152 es_now = 1;
5153 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005154 else if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && h2s->status >= 200) {
5155 /* EOM+empty: we may need to add END_STREAM except for 1xx
Christopher Faulet991febd2020-12-02 15:17:31 +01005156 * responses and tunneled response.
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005157 */
Christopher Faulet991febd2020-12-02 15:17:31 +01005158 if (!(h2s->flags & H2_SF_BODY_TUNNEL) || h2s->status >= 300)
5159 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005160 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005161
Willy Tarreau115e83b2018-12-01 19:17:53 +01005162 if (es_now)
5163 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5164
5165 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005166 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01005167
5168 /* indicates the HEADERS frame was sent, except for 1xx responses. For
5169 * 1xx responses, another HEADERS frame is expected.
5170 */
Christopher Faulet89899422020-12-07 18:24:43 +01005171 if (h2s->status >= 200)
Christopher Faulet0b465482019-02-19 15:14:23 +01005172 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005173
Willy Tarreau115e83b2018-12-01 19:17:53 +01005174 if (es_now) {
5175 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005176 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 +01005177 if (h2s->st == H2_SS_OPEN)
5178 h2s->st = H2_SS_HLOC;
5179 else
5180 h2s_close(h2s);
5181 }
5182
5183 /* OK we could properly deliver the response */
Willy Tarreau115e83b2018-12-01 19:17:53 +01005184 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005185 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005186 return ret;
5187 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005188 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5189 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005190 h2c->flags |= H2_CF_MUX_MFULL;
5191 h2s->flags |= H2_SF_BLK_MROOM;
5192 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005193 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 +01005194 goto end;
5195 fail:
5196 /* unparsable HTX messages, too large ones to be produced in the local
5197 * list etc go here (unrecoverable errors).
5198 */
5199 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5200 ret = 0;
5201 goto end;
5202}
5203
Willy Tarreau80739692018-10-05 11:35:57 +02005204/* Try to send a HEADERS frame matching HTX request present in HTX message
5205 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5206 * must check the stream's status to detect any error which might have happened
5207 * subsequently to a successful send. The htx blocks are automatically removed
5208 * from the message. The htx message is assumed to be valid since produced from
5209 * the internal code, hence it contains a start line, an optional series of
5210 * header blocks and an end of header, otherwise an invalid frame could be
5211 * emitted and the resulting htx message could be left in an inconsistent state.
5212 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005213static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005214{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005215 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005216 struct h2c *h2c = h2s->h2c;
5217 struct htx_blk *blk;
Willy Tarreau80739692018-10-05 11:35:57 +02005218 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005219 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005220 struct htx_sl *sl;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005221 struct ist meth, uri, auth, host = IST_NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005222 enum htx_blk_type type;
5223 int es_now = 0;
5224 int ret = 0;
5225 int hdr;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005226 int extended_connect = 0;
Willy Tarreau80739692018-10-05 11:35:57 +02005227
Willy Tarreau7838a792019-08-12 18:42:03 +02005228 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5229
Willy Tarreau80739692018-10-05 11:35:57 +02005230 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005231 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005232 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005233 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005234 return 0;
5235 }
5236
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005237 /* get the start line (we do have one) and the rest of the headers,
5238 * that we dump starting at header 0 */
5239 sl = NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005240 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005241 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005242 type = htx_get_blk_type(blk);
5243
5244 if (type == HTX_BLK_UNUSED)
5245 continue;
5246
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005247 if (type == HTX_BLK_EOH)
Willy Tarreau80739692018-10-05 11:35:57 +02005248 break;
5249
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005250 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005251 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005252 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5253 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5254 goto fail;
5255 }
Willy Tarreau80739692018-10-05 11:35:57 +02005256
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005257 list[hdr].n = htx_get_blk_name(htx, blk);
5258 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005259
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005260 /* Skip header if same name is used to add the server name */
5261 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name &&
5262 isteq(list[hdr].n, ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len)))
5263 continue;
Christopher Faulet67d58092019-10-02 10:51:38 +02005264
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005265 /* Convert connection: upgrade to Extended connect from rfc 8441 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005266 if (isteqi(list[hdr].n, ist("connection"))) {
5267 /* rfc 7230 #6.1 Connection = list of tokens */
5268 struct ist connection_ist = list[hdr].v;
5269 do {
5270 if (isteqi(iststop(connection_ist, ','),
5271 ist("upgrade"))) {
5272 h2s->flags |= (H2_SF_BODY_TUNNEL|H2_SF_EXT_CONNECT_SENT);
5273 sl->info.req.meth = HTTP_METH_CONNECT;
5274 meth = ist("CONNECT");
5275
5276 extended_connect = 1;
5277 break;
5278 }
5279
5280 connection_ist = istadv(istfind(connection_ist, ','), 1);
5281 } while (istlen(connection_ist));
5282 }
5283
5284 if (isteq(list[hdr].n, ist("upgrade"))) {
5285 /* rfc 7230 #6.7 Upgrade = list of protocols
5286 * rfc 8441 #4 Extended connect = :protocol is single-valued
5287 *
5288 * only first HTTP/1 protocol is preserved
5289 */
5290 const struct ist protocol = iststop(list[hdr].v, ',');
5291 /* upgrade_protocol field is 16 bytes long in h2s */
5292 istpad(h2s->upgrade_protocol, isttrim(protocol, 15));
5293 }
5294
5295 if (isteq(list[hdr].n, ist("host")))
5296 host = list[hdr].v;
5297
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005298 hdr++;
5299 }
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005300 else if (type == HTX_BLK_REQ_SL) {
5301 BUG_ON(sl); /* Only one start-line expected */
5302 sl = htx_get_blk_ptr(htx, blk);
5303 meth = htx_sl_req_meth(sl);
5304 uri = htx_sl_req_uri(sl);
5305 if (sl->info.req.meth == HTTP_METH_HEAD)
5306 h2s->flags |= H2_SF_BODYLESS_RESP;
5307 if (unlikely(uri.len == 0)) {
5308 TRACE_ERROR("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5309 goto fail;
5310 }
5311 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005312 else {
5313 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5314 goto fail;
5315 }
Willy Tarreau80739692018-10-05 11:35:57 +02005316 }
5317
Christopher Faulet56498132021-01-29 11:39:43 +01005318 /* The start-line me be defined */
5319 BUG_ON(!sl);
5320
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005321 /* Now add the server name to a header (if requested) */
5322 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name) {
5323 struct server *srv = objt_server(h2c->conn->target);
5324
5325 if (srv) {
5326 list[hdr].n = ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len);
5327 list[hdr].v = ist(srv->id);
5328 hdr++;
5329 }
5330 }
5331
Willy Tarreau80739692018-10-05 11:35:57 +02005332 /* marker for end of headers */
5333 list[hdr].n = ist("");
5334
Willy Tarreau9c218e72019-05-26 10:08:28 +02005335 mbuf = br_tail(h2c->mbuf);
5336 retry:
5337 if (!h2_get_buf(h2c, mbuf)) {
5338 h2c->flags |= H2_CF_MUX_MALLOC;
5339 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005340 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 +02005341 return 0;
5342 }
5343
Willy Tarreau80739692018-10-05 11:35:57 +02005344 chunk_reset(&outbuf);
5345
5346 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005347 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5348 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005349 break;
5350 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005351 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005352 }
5353
5354 if (outbuf.size < 9)
5355 goto full;
5356
5357 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5358 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5359 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5360 outbuf.data = 9;
5361
5362 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005363 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005364 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005365 goto realign_again;
5366 goto full;
5367 }
5368
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005369 auth = ist(NULL);
5370
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005371 /* RFC7540 #8.3: the CONNECT method must have :
5372 * - :authority set to the URI part (host:port)
5373 * - :method set to CONNECT
5374 * - :scheme and :path omitted
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005375 *
5376 * Note that this is not applicable in case of the Extended CONNECT
5377 * protocol from rfc 8441.
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005378 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005379 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT) && !extended_connect) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005380 auth = uri;
5381
5382 if (!hpack_encode_header(&outbuf, ist(":authority"), auth)) {
5383 /* output full */
5384 if (b_space_wraps(mbuf))
5385 goto realign_again;
5386 goto full;
5387 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005388 h2s->flags |= H2_SF_BODY_TUNNEL;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005389 } else {
5390 /* other methods need a :scheme. If an authority is known from
5391 * the request line, it must be sent, otherwise only host is
5392 * sent. Host is never sent as the authority.
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005393 *
5394 * This code is also applicable for Extended CONNECT protocol
5395 * from rfc 8441.
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005396 */
5397 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005398
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005399 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5400 /* the URI seems to start with a scheme */
5401 int len = 1;
5402
5403 while (len < uri.len && uri.ptr[len] != ':')
5404 len++;
5405
5406 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5407 /* make the uri start at the authority now */
Tim Duesterhus9f75ed12021-03-02 18:57:26 +01005408 scheme = ist2(uri.ptr, len);
Tim Duesterhus154374c2021-03-02 18:57:27 +01005409 uri = istadv(uri, len + 3);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005410
5411 /* find the auth part of the URI */
Tim Duesterhus92c696e2021-02-28 16:11:36 +01005412 auth = ist2(uri.ptr, 0);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005413 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5414 auth.len++;
5415
Tim Duesterhus154374c2021-03-02 18:57:27 +01005416 uri = istadv(uri, auth.len);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005417 }
5418 }
5419
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005420 /* For Extended CONNECT, the :authority must be present.
5421 * Use host value for it.
5422 */
5423 if (unlikely(extended_connect) && isttest(host))
5424 auth = host;
5425
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005426 if (!scheme.len) {
5427 /* no explicit scheme, we're using an origin-form URI,
5428 * probably from an H1 request transcoded to H2 via an
5429 * external layer, then received as H2 without authority.
5430 * So we have to look up the scheme from the HTX flags.
5431 * In such a case only http and https are possible, and
5432 * https is the default (sent by browsers).
5433 */
5434 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5435 scheme = ist("http");
5436 else
5437 scheme = ist("https");
5438 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005439
5440 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005441 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005442 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005443 goto realign_again;
5444 goto full;
5445 }
Willy Tarreau80739692018-10-05 11:35:57 +02005446
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005447 if (auth.len && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005448 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005449 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005450 goto realign_again;
5451 goto full;
5452 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005453
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005454 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5455 * be sent as '/' or '*'.
5456 */
5457 if (unlikely(!uri.len)) {
5458 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5459 uri = ist("*");
5460 else
5461 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005462 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005463
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005464 if (!hpack_encode_path(&outbuf, uri)) {
5465 /* output full */
5466 if (b_space_wraps(mbuf))
5467 goto realign_again;
5468 goto full;
5469 }
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005470
5471 /* encode the pseudo-header protocol from rfc8441 if using
5472 * Extended CONNECT method.
5473 */
5474 if (unlikely(extended_connect)) {
5475 const struct ist protocol = ist(h2s->upgrade_protocol);
5476 if (isttest(protocol)) {
5477 if (!hpack_encode_header(&outbuf,
5478 ist(":protocol"),
5479 protocol)) {
5480 /* output full */
5481 if (b_space_wraps(mbuf))
5482 goto realign_again;
5483 goto full;
5484 }
5485 }
5486 }
Willy Tarreau80739692018-10-05 11:35:57 +02005487 }
5488
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005489 /* encode all headers, stop at empty name. Host is only sent if we
5490 * do not provide an authority.
5491 */
Willy Tarreau80739692018-10-05 11:35:57 +02005492 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005493 struct ist n = list[hdr].n;
5494 struct ist v = list[hdr].v;
5495
Willy Tarreau80739692018-10-05 11:35:57 +02005496 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005497 if (isteq(n, ist("connection")) ||
5498 (auth.len && isteq(n, ist("host"))) ||
5499 isteq(n, ist("proxy-connection")) ||
5500 isteq(n, ist("keep-alive")) ||
5501 isteq(n, ist("upgrade")) ||
5502 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005503 continue;
5504
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005505 if (isteq(n, ist("te"))) {
5506 /* "te" may only be sent with "trailers" if this value
5507 * is present, otherwise it must be deleted.
5508 */
5509 v = istist(v, ist("trailers"));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01005510 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005511 continue;
5512 v = ist("trailers");
5513 }
5514
Christopher Faulet86d144c2019-08-14 16:32:25 +02005515 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005516 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005517 continue;
5518
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005519 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005520 break; // end
5521
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005522 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005523 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005524 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005525 goto realign_again;
5526 goto full;
5527 }
5528 }
5529
Willy Tarreaucb985a42019-10-07 16:56:34 +02005530 /* update the frame's size */
5531 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5532
5533 if (outbuf.data > h2c->mfs + 9) {
5534 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5535 /* output full */
5536 if (b_space_wraps(mbuf))
5537 goto realign_again;
5538 goto full;
5539 }
5540 }
5541
Willy Tarreau38b5bec2021-06-17 08:40:04 +02005542 TRACE_USER("sent H2 request ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5543
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005544 /* remove all header blocks including the EOH and compute the
5545 * corresponding size.
Willy Tarreau80739692018-10-05 11:35:57 +02005546 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005547 ret = 0;
5548 blk = htx_get_head_blk(htx);
5549 while (blk) {
5550 type = htx_get_blk_type(blk);
5551 ret += htx_get_blksz(blk);
5552 blk = htx_remove_blk(htx, blk);
5553 /* The removed block is the EOH */
5554 if (type == HTX_BLK_EOH)
5555 break;
Christopher Fauletd0db4232021-01-22 11:46:30 +01005556 }
Willy Tarreau80739692018-10-05 11:35:57 +02005557
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005558 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) {
5559 /* Request already closed: add END_STREAM */
Willy Tarreau80739692018-10-05 11:35:57 +02005560 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005561 }
5562 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5563 /* EOM+empty: we may need to add END_STREAM (except for CONNECT
5564 * request)
5565 */
5566 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5567 es_now = 1;
5568 }
Willy Tarreau80739692018-10-05 11:35:57 +02005569
Willy Tarreau80739692018-10-05 11:35:57 +02005570 if (es_now)
5571 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5572
5573 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005574 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005575 h2s->flags |= H2_SF_HEADERS_SENT;
5576 h2s->st = H2_SS_OPEN;
5577
Willy Tarreau80739692018-10-05 11:35:57 +02005578 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005579 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 +02005580 // trim any possibly pending data (eg: inconsistent content-length)
5581 h2s->flags |= H2_SF_ES_SENT;
5582 h2s->st = H2_SS_HLOC;
5583 }
5584
Willy Tarreau80739692018-10-05 11:35:57 +02005585 end:
5586 return ret;
5587 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005588 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5589 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005590 h2c->flags |= H2_CF_MUX_MFULL;
5591 h2s->flags |= H2_SF_BLK_MROOM;
5592 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005593 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 +02005594 goto end;
5595 fail:
5596 /* unparsable HTX messages, too large ones to be produced in the local
5597 * list etc go here (unrecoverable errors).
5598 */
5599 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5600 ret = 0;
5601 goto end;
5602}
5603
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005604/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005605 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5606 * caller must check the stream's status to detect any error which might have
5607 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005608 * consumed, or zero if nothing done.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005609 */
Christopher Faulet142854b2020-12-02 15:12:40 +01005610static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005611{
5612 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005613 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005614 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005615 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005616 size_t total = 0;
5617 int es_now = 0;
5618 int bsize; /* htx block size */
5619 int fsize; /* h2 frame size */
5620 struct htx_blk *blk;
5621 enum htx_blk_type type;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005622 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005623
Willy Tarreau7838a792019-08-12 18:42:03 +02005624 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5625
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005626 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005627 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005628 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005629 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005630 goto end;
5631 }
5632
Willy Tarreau98de12a2018-12-12 07:03:00 +01005633 htx = htx_from_buf(buf);
5634
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005635 /* We only come here with HTX_BLK_DATA blocks */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005636
5637 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005638 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005639 goto end;
5640
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005641 if ((h2c->flags & H2_CF_IS_BACK) &&
Christopher Fauletf95f8762021-01-22 11:59:07 +01005642 (h2s->flags & (H2_SF_HEADERS_RCVD|H2_SF_BODY_TUNNEL)) == H2_SF_BODY_TUNNEL) {
5643 /* The response HEADERS frame not received yet. Thus the tunnel
5644 * is not fully established yet. In this situation, we block
5645 * data sending.
5646 */
5647 h2s->flags |= H2_SF_BLK_MBUSY;
5648 TRACE_STATE("Request DATA frame blocked waiting for tunnel establishment", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5649 goto end;
5650 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01005651 else if ((h2c->flags & H2_CF_IS_BACK) && (h2s->flags & H2_SF_TUNNEL_ABRT)) {
5652 /* a tunnel attempt was aborted but the is pending raw data to xfer to the server.
5653 * Thus the stream is closed with the CANCEL error. The error will be reported to
5654 * the upper layer as aserver abort. But at this stage there is nothing more we can
5655 * do. We just wait for the end of the response to be sure to not truncate it.
5656 */
5657 if (!(h2s->flags & H2_SF_ES_RCVD)) {
5658 TRACE_STATE("Request DATA frame blocked waiting end of aborted tunnel", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5659 h2s->flags |= H2_SF_BLK_MBUSY;
5660 }
5661 else {
5662 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5663 h2s_error(h2s, H2_ERR_CANCEL);
5664 }
5665 goto end;
5666 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005667
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005668 blk = htx_get_head_blk(htx);
5669 type = htx_get_blk_type(blk);
5670 bsize = htx_get_blksz(blk);
5671 fsize = bsize;
5672 trunc_out = 0;
5673 if (type != HTX_BLK_DATA)
5674 goto end;
5675
Willy Tarreau9c218e72019-05-26 10:08:28 +02005676 mbuf = br_tail(h2c->mbuf);
5677 retry:
5678 if (!h2_get_buf(h2c, mbuf)) {
5679 h2c->flags |= H2_CF_MUX_MALLOC;
5680 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005681 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 +02005682 goto end;
5683 }
5684
Willy Tarreau98de12a2018-12-12 07:03:00 +01005685 /* Perform some optimizations to reduce the number of buffer copies.
5686 * First, if the mux's buffer is empty and the htx area contains
5687 * exactly one data block of the same size as the requested count, and
5688 * this count fits within the frame size, the stream's window size, and
5689 * the connection's window size, then it's possible to simply swap the
5690 * caller's buffer with the mux's output buffer and adjust offsets and
5691 * length to match the entire DATA HTX block in the middle. In this
5692 * case we perform a true zero-copy operation from end-to-end. This is
5693 * the situation that happens all the time with large files. Second, if
5694 * this is not possible, but the mux's output buffer is empty, we still
5695 * have an opportunity to avoid the copy to the intermediary buffer, by
5696 * making the intermediary buffer's area point to the output buffer's
5697 * area. In this case we want to skip the HTX header to make sure that
5698 * copies remain aligned and that this operation remains possible all
5699 * the time. This goes for headers, data blocks and any data extracted
5700 * from the HTX blocks.
5701 */
5702 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005703 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005704 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005705 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005706
Willy Tarreaubcc45952019-05-26 10:05:50 +02005707 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005708 /* Too bad there are data left there. We're willing to memcpy/memmove
5709 * up to 1/4 of the buffer, which means that it's OK to copy a large
5710 * frame into a buffer containing few data if it needs to be realigned,
5711 * and that it's also OK to copy few data without realigning. Otherwise
5712 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005713 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005714 if (fsize + 9 <= b_room(mbuf) &&
5715 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005716 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5717 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 +01005718 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005719 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005720
Willy Tarreau9c218e72019-05-26 10:08:28 +02005721 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5722 goto retry;
5723
Willy Tarreau98de12a2018-12-12 07:03:00 +01005724 h2c->flags |= H2_CF_MUX_MFULL;
5725 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005726 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 +01005727 goto end;
5728 }
5729
Christopher Faulet925abdf2021-04-27 22:51:07 +02005730 if (htx->flags & HTX_FL_EOM) {
5731 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5732 * message)
5733 */
5734 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5735 es_now = 1;
5736 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005737 /* map an H2 frame to the HTX block so that we can put the
5738 * frame header there.
5739 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005740 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5741 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005742
5743 /* prepend an H2 DATA frame header just before the DATA block */
5744 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5745 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
Christopher Faulet925abdf2021-04-27 22:51:07 +02005746 if (es_now)
5747 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005748 h2_set_frame_size(outbuf.area, fsize);
5749
5750 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005751 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005752 h2c->mws -= fsize;
5753
5754 /* and exchange with our old area */
5755 buf->area = old_area;
5756 buf->data = buf->head = 0;
5757 total += fsize;
Christopher Faulet925abdf2021-04-27 22:51:07 +02005758 fsize = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005759
5760 TRACE_PROTO("sent H2 DATA frame (zero-copy)", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Christopher Faulet925abdf2021-04-27 22:51:07 +02005761 goto out;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005762 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005763
Willy Tarreau98de12a2018-12-12 07:03:00 +01005764 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005765 /* for DATA and EOM we'll have to emit a frame, even if empty */
5766
5767 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005768 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5769 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005770 break;
5771 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005772 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005773 }
5774
5775 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005776 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5777 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005778 h2c->flags |= H2_CF_MUX_MFULL;
5779 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005780 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005781 goto end;
5782 }
5783
5784 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5785 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5786 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5787 outbuf.data = 9;
5788
5789 /* we have in <fsize> the exact number of bytes we need to copy from
5790 * the HTX buffer. We need to check this against the connection's and
5791 * the stream's send windows, and to ensure that this fits in the max
5792 * frame size and in the buffer's available space minus 9 bytes (for
5793 * the frame header). The connection's flow control is applied last so
5794 * that we can use a separate list of streams which are immediately
5795 * unblocked on window opening. Note: we don't implement padding.
5796 */
5797
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005798 if (!fsize)
5799 goto send_empty;
5800
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005801 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005802 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreau2b718102021-04-21 07:32:39 +02005803 if (LIST_INLIST(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005804 LIST_DEL_INIT(&h2s->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02005805 LIST_APPEND(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005806 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 +01005807 goto end;
5808 }
5809
Willy Tarreauee573762018-12-04 15:25:57 +01005810 if (fsize > count)
5811 fsize = count;
5812
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005813 if (fsize > h2s_mws(h2s))
5814 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005815
5816 if (h2c->mfs && fsize > h2c->mfs)
5817 fsize = h2c->mfs; // >0
5818
5819 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005820 /* It doesn't fit at once. If it at least fits once split and
5821 * the amount of data to move is low, let's defragment the
5822 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005823 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005824 if (b_space_wraps(mbuf) &&
5825 (fsize + 9 <= b_room(mbuf)) &&
5826 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005827 goto realign_again;
5828 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005829 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005830
5831 if (fsize <= 0) {
5832 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005833 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5834 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005835 h2c->flags |= H2_CF_MUX_MFULL;
5836 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005837 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005838 goto end;
5839 }
5840 }
5841
5842 if (h2c->mws <= 0) {
5843 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005844 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 +01005845 goto end;
5846 }
5847
5848 if (fsize > h2c->mws)
5849 fsize = h2c->mws;
5850
5851 /* now let's copy this this into the output buffer */
5852 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005853 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005854 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005855 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005856
5857 send_empty:
5858 /* update the frame's size */
5859 h2_set_frame_size(outbuf.area, fsize);
5860
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005861 /* consume incoming HTX block */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005862 total += fsize;
5863 if (fsize == bsize) {
5864 htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005865 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5866 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5867 * message)
5868 */
5869 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5870 es_now = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02005871 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005872 }
5873 else {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005874 /* we've truncated this block */
5875 htx_cut_data_blk(htx, blk, fsize);
5876 }
5877
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005878 if (es_now)
5879 outbuf.area[4] |= H2_F_DATA_END_STREAM;
5880
5881 /* commit the H2 response */
5882 b_add(mbuf, fsize + 9);
5883
Christopher Faulet925abdf2021-04-27 22:51:07 +02005884 out:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005885 if (es_now) {
5886 if (h2s->st == H2_SS_OPEN)
5887 h2s->st = H2_SS_HLOC;
5888 else
5889 h2s_close(h2s);
5890
5891 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005892 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 +01005893 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005894 else if (fsize) {
5895 if (fsize == bsize) {
5896 TRACE_DEVEL("more data may be available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5897 goto new_frame;
5898 }
5899 else if (trunc_out) {
5900 /* we've truncated this block */
5901 goto new_frame;
5902 }
5903 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005904
5905 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005906 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005907 return total;
5908}
5909
Christopher Faulet991febd2020-12-02 15:17:31 +01005910/* Skip the message payload (DATA blocks) and emit an empty DATA frame with the
5911 * ES flag set for stream <h2s>. This function is called for response known to
5912 * have no payload. Only DATA blocks are skipped. This means the trailers are
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005913 * still emitted. The caller must check the stream's status to detect any error
Christopher Faulet991febd2020-12-02 15:17:31 +01005914 * which might have happened subsequently to a successful send. Returns the
5915 * number of data bytes consumed, or zero if nothing done.
5916 */
5917static size_t h2s_skip_data(struct h2s *h2s, struct buffer *buf, size_t count)
5918{
5919 struct h2c *h2c = h2s->h2c;
5920 struct htx *htx;
5921 int bsize; /* htx block size */
5922 int fsize; /* h2 frame size */
5923 struct htx_blk *blk;
5924 enum htx_blk_type type;
5925 size_t total = 0;
5926
5927 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5928
5929 if (h2c_mux_busy(h2c, h2s)) {
5930 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5931 h2s->flags |= H2_SF_BLK_MBUSY;
5932 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5933 goto end;
5934 }
5935
5936 htx = htx_from_buf(buf);
5937
5938 next_data:
5939 if (!count || htx_is_empty(htx))
5940 goto end;
5941 blk = htx_get_head_blk(htx);
5942 type = htx_get_blk_type(blk);
5943 bsize = htx_get_blksz(blk);
5944 fsize = bsize;
5945 if (type != HTX_BLK_DATA)
5946 goto end;
5947
5948 if (fsize > count)
5949 fsize = count;
5950
5951 if (fsize != bsize)
5952 goto skip_data;
5953
5954 if (!(htx->flags & HTX_FL_EOM) || !htx_is_unique_blk(htx, blk))
5955 goto skip_data;
5956
5957 /* Here, it is the last block and it is also the end of the message. So
5958 * we can emit an empty DATA frame with the ES flag set
5959 */
5960 if (h2_send_empty_data_es(h2s) <= 0)
5961 goto end;
5962
5963 if (h2s->st == H2_SS_OPEN)
5964 h2s->st = H2_SS_HLOC;
5965 else
5966 h2s_close(h2s);
5967
5968 skip_data:
5969 /* consume incoming HTX block */
5970 total += fsize;
5971 if (fsize == bsize) {
5972 TRACE_DEVEL("more data may be available, trying to skip another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5973 htx_remove_blk(htx, blk);
5974 goto next_data;
5975 }
5976 else {
5977 /* we've truncated this block */
5978 htx_cut_data_blk(htx, blk, fsize);
5979 }
5980
5981 end:
5982 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5983 return total;
5984}
5985
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005986/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
5987 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
5988 * processed. The caller must check the stream's status to detect any error
5989 * which might have happened subsequently to a successful send. The htx blocks
5990 * are automatically removed from the message. The htx message is assumed to be
5991 * valid since produced from the internal code. Processing stops when meeting
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005992 * the EOT, which *is* removed. All trailers are processed at once and sent as a
5993 * single frame. The ES flag is always set.
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005994 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005995static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005996{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005997 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005998 struct h2c *h2c = h2s->h2c;
5999 struct htx_blk *blk;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006000 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02006001 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006002 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006003 int ret = 0;
6004 int hdr;
6005 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006006
Willy Tarreau7838a792019-08-12 18:42:03 +02006007 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
6008
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006009 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006010 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006011 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02006012 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006013 goto end;
6014 }
6015
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006016 /* get trailers. */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006017 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006018 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006019 type = htx_get_blk_type(blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006020
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006021 if (type == HTX_BLK_UNUSED)
6022 continue;
6023
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006024 if (type == HTX_BLK_EOT)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006025 break;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006026 if (type == HTX_BLK_TLR) {
6027 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
6028 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
6029 goto fail;
6030 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006031
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006032 list[hdr].n = htx_get_blk_name(htx, blk);
6033 list[hdr].v = htx_get_blk_value(htx, blk);
6034 hdr++;
6035 }
6036 else {
6037 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006038 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02006039 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006040 }
6041
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006042 /* marker for end of trailers */
6043 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006044
Willy Tarreau9c218e72019-05-26 10:08:28 +02006045 mbuf = br_tail(h2c->mbuf);
6046 retry:
6047 if (!h2_get_buf(h2c, mbuf)) {
6048 h2c->flags |= H2_CF_MUX_MALLOC;
6049 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006050 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 +02006051 goto end;
6052 }
6053
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006054 chunk_reset(&outbuf);
6055
6056 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006057 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6058 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006059 break;
6060 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006061 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006062 }
6063
6064 if (outbuf.size < 9)
6065 goto full;
6066
6067 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
6068 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
6069 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6070 outbuf.data = 9;
6071
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006072 /* encode all headers */
6073 for (idx = 0; idx < hdr; idx++) {
6074 /* these ones do not exist in H2 or must not appear in
6075 * trailers and must be dropped.
6076 */
6077 if (isteq(list[idx].n, ist("host")) ||
6078 isteq(list[idx].n, ist("content-length")) ||
6079 isteq(list[idx].n, ist("connection")) ||
6080 isteq(list[idx].n, ist("proxy-connection")) ||
6081 isteq(list[idx].n, ist("keep-alive")) ||
6082 isteq(list[idx].n, ist("upgrade")) ||
6083 isteq(list[idx].n, ist("te")) ||
6084 isteq(list[idx].n, ist("transfer-encoding")))
6085 continue;
6086
Christopher Faulet86d144c2019-08-14 16:32:25 +02006087 /* Skip all pseudo-headers */
6088 if (*(list[idx].n.ptr) == ':')
6089 continue;
6090
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006091 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
6092 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006093 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006094 goto realign_again;
6095 goto full;
6096 }
6097 }
6098
Willy Tarreau5121e5d2019-05-06 15:13:41 +02006099 if (outbuf.data == 9) {
6100 /* here we have a problem, we have nothing to emit (either we
6101 * received an empty trailers block followed or we removed its
6102 * contents above). Because of this we can't send a HEADERS
6103 * frame, so we have to cheat and instead send an empty DATA
6104 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01006105 */
6106 outbuf.area[3] = H2_FT_DATA;
6107 outbuf.area[4] = H2_F_DATA_END_STREAM;
6108 }
6109
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006110 /* update the frame's size */
6111 h2_set_frame_size(outbuf.area, outbuf.data - 9);
6112
Willy Tarreau572d9f52019-10-11 16:58:37 +02006113 if (outbuf.data > h2c->mfs + 9) {
6114 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
6115 /* output full */
6116 if (b_space_wraps(mbuf))
6117 goto realign_again;
6118 goto full;
6119 }
6120 }
6121
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006122 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02006123 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 +02006124 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006125 h2s->flags |= H2_SF_ES_SENT;
6126
6127 if (h2s->st == H2_SS_OPEN)
6128 h2s->st = H2_SS_HLOC;
6129 else
6130 h2s_close(h2s);
6131
6132 /* OK we could properly deliver the response */
6133 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02006134 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006135 ret = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006136 blk = htx_get_head_blk(htx);
6137 while (blk) {
6138 type = htx_get_blk_type(blk);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006139 ret += htx_get_blksz(blk);
6140 blk = htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006141 /* The removed block is the EOT */
6142 if (type == HTX_BLK_EOT)
6143 break;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006144 }
6145
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006146 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006147 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006148 return ret;
6149 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02006150 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6151 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006152 h2c->flags |= H2_CF_MUX_MFULL;
6153 h2s->flags |= H2_SF_BLK_MROOM;
6154 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006155 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 +01006156 goto end;
6157 fail:
6158 /* unparsable HTX messages, too large ones to be produced in the local
6159 * list etc go here (unrecoverable errors).
6160 */
6161 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
6162 ret = 0;
6163 goto end;
6164}
6165
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006166/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6167 * event subscriber <es> is not allowed to change from a previous call as long
6168 * as at least one event is still subscribed. The <event_type> must only be a
6169 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006170 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006171static int h2_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02006172{
Olivier Houchard6ff20392018-07-17 18:46:31 +02006173 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02006174 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006175
Willy Tarreau7838a792019-08-12 18:42:03 +02006176 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006177
6178 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006179 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006180
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006181 es->events |= event_type;
6182 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006183
6184 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006185 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006186
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006187 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006188 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02006189 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02006190 !LIST_INLIST(&h2s->list)) {
Olivier Houchardf8338152019-05-14 17:50:32 +02006191 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02006192 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Olivier Houchardf8338152019-05-14 17:50:32 +02006193 else
Willy Tarreau2b718102021-04-21 07:32:39 +02006194 LIST_APPEND(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02006195 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02006196 }
Willy Tarreau7838a792019-08-12 18:42:03 +02006197 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006198 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006199}
6200
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006201/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6202 * The <es> pointer is not allowed to differ from the one passed to the
6203 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006204 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006205static int h2_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006206{
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006207 struct h2s *h2s = cs->ctx;
6208
Willy Tarreau7838a792019-08-12 18:42:03 +02006209 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006210
6211 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006212 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006213
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006214 es->events &= ~event_type;
6215 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01006216 h2s->subs = NULL;
6217
6218 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006219 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006220
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006221 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006222 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006223 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006224 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
6225 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02006226 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01006227
Willy Tarreau7838a792019-08-12 18:42:03 +02006228 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006229 return 0;
6230}
6231
6232
Olivier Houchard511efea2018-08-16 15:30:32 +02006233/* Called from the upper layer, to receive data */
6234static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
6235{
Olivier Houchard638b7992018-08-16 15:41:52 +02006236 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01006237 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01006238 struct htx *h2s_htx = NULL;
6239 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02006240 size_t ret = 0;
6241
Willy Tarreau7838a792019-08-12 18:42:03 +02006242 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
6243
Olivier Houchard511efea2018-08-16 15:30:32 +02006244 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006245 h2s_htx = htx_from_buf(&h2s->rxbuf);
6246 if (htx_is_empty(h2s_htx)) {
6247 /* Here htx_to_buf() will set buffer data to 0 because
6248 * the HTX is empty.
6249 */
6250 htx_to_buf(h2s_htx, &h2s->rxbuf);
6251 goto end;
6252 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01006253
Christopher Faulet9b79a102019-07-15 11:22:56 +02006254 ret = h2s_htx->data;
6255 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01006256
Christopher Faulet9b79a102019-07-15 11:22:56 +02006257 /* <buf> is empty and the message is small enough, swap the
6258 * buffers. */
6259 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01006260 htx_to_buf(buf_htx, buf);
6261 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006262 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
6263 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01006264 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02006265
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006266 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_UNUSED);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006267
6268 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
6269 buf_htx->flags |= HTX_FL_PARSING_ERROR;
6270 if (htx_is_empty(buf_htx))
6271 cs->flags |= CS_FL_EOI;
Willy Tarreau86724e22018-12-01 23:19:43 +01006272 }
Christopher Faulet810df062020-07-22 16:20:34 +02006273 else if (htx_is_empty(h2s_htx))
Christopher Faulet42432f32020-11-20 17:43:16 +01006274 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006275
Christopher Faulet9b79a102019-07-15 11:22:56 +02006276 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
6277 htx_to_buf(buf_htx, buf);
6278 htx_to_buf(h2s_htx, &h2s->rxbuf);
6279 ret -= h2s_htx->data;
6280
Christopher Faulet37070b22019-02-14 15:12:14 +01006281 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02006282 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01006283 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006284 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01006285 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006286 if (h2s->flags & H2_SF_ES_RCVD) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02006287 cs->flags |= CS_FL_EOI;
Christopher Fauletd0db4232021-01-22 11:46:30 +01006288 /* Add EOS flag for tunnel */
6289 if (h2s->flags & H2_SF_BODY_TUNNEL)
6290 cs->flags |= CS_FL_EOS;
6291 }
Christopher Fauletaade4ed2020-10-08 15:38:41 +02006292 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02006293 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01006294 if (cs->flags & CS_FL_ERR_PENDING)
6295 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02006296 if (b_size(&h2s->rxbuf)) {
6297 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01006298 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02006299 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006300 }
6301
Willy Tarreau082f5592018-11-25 08:03:32 +01006302 if (ret && h2c->dsi == h2s->id) {
6303 /* demux is blocking on this stream's buffer */
6304 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006305 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006306 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006307
Willy Tarreau7838a792019-08-12 18:42:03 +02006308 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006309 return ret;
6310}
6311
Olivier Houchardd846c262018-10-19 17:24:29 +02006312
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006313/* Called from the upper layer, to send data from buffer <buf> for no more than
6314 * <count> bytes. Returns the number of bytes effectively sent. Some status
6315 * flags may be updated on the conn_stream.
6316 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02006317static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006318{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006319 struct h2s *h2s = cs->ctx;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006320 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006321 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006322 struct htx *htx;
6323 struct htx_blk *blk;
6324 enum htx_blk_type btype;
6325 uint32_t bsize;
6326 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006327
Willy Tarreau7838a792019-08-12 18:42:03 +02006328 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6329
Olivier Houchardd360ac62019-03-22 17:37:16 +01006330 /* If we were not just woken because we wanted to send but couldn't,
6331 * and there's somebody else that is waiting to send, do nothing,
6332 * we will subscribe later and be put at the end of the list
6333 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006334 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006335 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6336 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 +01006337 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006338 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006339 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006340
Willy Tarreau7838a792019-08-12 18:42:03 +02006341 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6342 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 +02006343 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006344 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006345
Willy Tarreaucab22952019-10-31 15:48:18 +01006346 if (h2s->h2c->st0 >= H2_CS_ERROR) {
6347 cs->flags |= CS_FL_ERROR;
6348 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);
6349 return 0;
6350 }
6351
Christopher Faulet9b79a102019-07-15 11:22:56 +02006352 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006353
Willy Tarreau0bad0432018-06-14 16:54:01 +02006354 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006355 h2s->flags |= H2_SF_OUTGOING_DATA;
6356
Willy Tarreau751f2d02018-10-05 09:35:00 +02006357 if (h2s->id == 0) {
6358 int32_t id = h2c_get_next_sid(h2s->h2c);
6359
6360 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02006361 cs->flags |= CS_FL_ERROR;
Willy Tarreau7838a792019-08-12 18:42:03 +02006362 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 +02006363 return 0;
6364 }
6365
6366 eb32_delete(&h2s->by_id);
6367 h2s->by_id.key = h2s->id = id;
6368 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006369 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006370 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6371 }
6372
Christopher Faulet9b79a102019-07-15 11:22:56 +02006373 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6374 count && !htx_is_empty(htx)) {
6375 idx = htx_get_head(htx);
6376 blk = htx_get_blk(htx, idx);
6377 btype = htx_get_blk_type(blk);
6378 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006379
Christopher Faulet9b79a102019-07-15 11:22:56 +02006380 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006381 case HTX_BLK_REQ_SL:
6382 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006383 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006384 if (ret > 0) {
6385 total += ret;
6386 count -= ret;
6387 if (ret < bsize)
6388 goto done;
6389 }
6390 break;
6391
Willy Tarreau115e83b2018-12-01 19:17:53 +01006392 case HTX_BLK_RES_SL:
6393 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006394 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006395 if (ret > 0) {
6396 total += ret;
6397 count -= ret;
6398 if (ret < bsize)
6399 goto done;
6400 }
6401 break;
6402
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006403 case HTX_BLK_DATA:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006404 /* all these cause the emission of a DATA frame (possibly empty) */
Christopher Faulet991febd2020-12-02 15:17:31 +01006405 if (!(h2s->h2c->flags & H2_CF_IS_BACK) &&
6406 (h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BODYLESS_RESP)) == H2_SF_BODYLESS_RESP)
6407 ret = h2s_skip_data(h2s, buf, count);
6408 else
6409 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006410 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006411 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006412 total += ret;
6413 count -= ret;
6414 if (ret < bsize)
6415 goto done;
6416 }
6417 break;
6418
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006419 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006420 case HTX_BLK_EOT:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006421 /* This is the first trailers block, all the subsequent ones */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006422 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006423 if (ret > 0) {
6424 total += ret;
6425 count -= ret;
6426 if (ret < bsize)
6427 goto done;
6428 }
6429 break;
6430
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006431 default:
6432 htx_remove_blk(htx, blk);
6433 total += bsize;
6434 count -= bsize;
6435 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006436 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006437 }
6438
Christopher Faulet9b79a102019-07-15 11:22:56 +02006439 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006440 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006441 /* trim any possibly pending data after we close (extra CR-LF,
6442 * unprocessed trailers, abnormal extra data, ...)
6443 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006444 total += count;
6445 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006446 }
6447
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006448 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006449 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006450 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 +01006451 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006452 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006453 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006454 }
6455
Christopher Faulet9b79a102019-07-15 11:22:56 +02006456 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006457
Olivier Houchard7505f942018-08-21 18:10:44 +02006458 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006459 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006460 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 +02006461 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006462 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006463
Olivier Houchard7505f942018-08-21 18:10:44 +02006464 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006465 /* If we're waiting for flow control, and we got a shutr on the
6466 * connection, we will never be unlocked, so add an error on
6467 * the conn_stream.
6468 */
6469 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
6470 !b_data(&h2s->h2c->dbuf) &&
6471 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006472 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 +01006473 if (cs->flags & CS_FL_EOS)
6474 cs->flags |= CS_FL_ERROR;
6475 else
6476 cs->flags |= CS_FL_ERR_PENDING;
6477 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006478
Willy Tarreau5723f292020-01-10 15:16:57 +01006479 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6480 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006481 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006482 LIST_DEL_INIT(&h2s->list);
6483 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006484
Willy Tarreau7838a792019-08-12 18:42:03 +02006485 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006486 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006487}
6488
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006489/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01006490static int h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006491{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01006492 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01006493 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006494 struct eb32_node *node;
6495 int fctl_cnt = 0;
6496 int send_cnt = 0;
6497 int tree_cnt = 0;
6498 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02006499 struct buffer *hmbuf, *tmbuf;
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006500 int ret = 0;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006501
6502 if (!h2c)
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006503 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006504
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006505 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006506 fctl_cnt++;
6507
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006508 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006509 send_cnt++;
6510
Willy Tarreau3af37712018-12-18 14:34:41 +01006511 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006512 node = eb32_first(&h2c->streams_by_id);
6513 while (node) {
6514 h2s = container_of(node, struct h2s, by_id);
6515 tree_cnt++;
6516 if (!h2s->cs)
6517 orph_cnt++;
6518 node = eb32_next(node);
6519 }
6520
Willy Tarreau60f62682019-05-26 11:32:27 +02006521 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006522 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006523 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau987c0632018-12-18 10:32:05 +01006524 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02006525 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
6526 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006527 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau616ac812018-07-24 14:12:42 +02006528 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006529 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006530 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
6531 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
6532 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02006533 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6534 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6535 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006536 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6537 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006538
6539 if (h2s) {
Willy Tarreaued4464e2021-01-20 15:50:03 +01006540 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 +02006541 h2s, h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
Willy Tarreau987c0632018-12-18 10:32:05 +01006542 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
6543 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
6544 h2s->cs);
6545 if (h2s->cs)
Willy Tarreau98e40b92021-01-20 16:27:01 +01006546 chunk_appendf(msg, "(.flg=0x%08x .data=%p)",
Willy Tarreau987c0632018-12-18 10:32:05 +01006547 h2s->cs->flags, h2s->cs->data);
Willy Tarreau98e40b92021-01-20 16:27:01 +01006548
6549 chunk_appendf(&trash, " .subs=%p", h2s->subs);
6550 if (h2s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01006551 chunk_appendf(&trash, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
6552 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
6553 h2s->subs->tasklet->calls,
6554 h2s->subs->tasklet->context);
6555 if (h2s->subs->tasklet->calls >= 1000000)
6556 ret = 1;
6557 resolve_sym_name(&trash, NULL, h2s->subs->tasklet->process);
6558 chunk_appendf(&trash, ")");
Willy Tarreau98e40b92021-01-20 16:27:01 +01006559 }
Willy Tarreau987c0632018-12-18 10:32:05 +01006560 }
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006561 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006562}
Willy Tarreau62f52692017-10-08 23:01:42 +02006563
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006564/* Migrate the the connection to the current thread.
6565 * Return 0 if successful, non-zero otherwise.
6566 * Expected to be called with the old thread lock held.
6567 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006568static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006569{
6570 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006571 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006572
6573 if (fd_takeover(conn->handle.fd, conn) != 0)
6574 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006575
6576 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6577 /* We failed to takeover the xprt, even if the connection may
6578 * still be valid, flag it as error'd, as we have already
6579 * taken over the fd, and wake the tasklet, so that it will
6580 * destroy it.
6581 */
6582 conn->flags |= CO_FL_ERROR;
6583 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6584 return -1;
6585 }
6586
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006587 if (h2c->wait_event.events)
6588 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6589 h2c->wait_event.events, &h2c->wait_event);
6590 /* To let the tasklet know it should free itself, and do nothing else,
6591 * set its context to NULL.
6592 */
6593 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006594 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006595
6596 task = h2c->task;
6597 if (task) {
6598 task->context = NULL;
6599 h2c->task = NULL;
6600 __ha_barrier_store();
6601 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006602
6603 h2c->task = task_new(tid_bit);
6604 if (!h2c->task) {
6605 h2_release(h2c);
6606 return -1;
6607 }
6608 h2c->task->process = h2_timeout_task;
6609 h2c->task->context = h2c;
6610 }
6611 h2c->wait_event.tasklet = tasklet_new();
6612 if (!h2c->wait_event.tasklet) {
6613 h2_release(h2c);
6614 return -1;
6615 }
6616 h2c->wait_event.tasklet->process = h2_io_cb;
6617 h2c->wait_event.tasklet->context = h2c;
6618 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6619 SUB_RETRY_RECV, &h2c->wait_event);
6620
6621 return 0;
6622}
6623
Willy Tarreau62f52692017-10-08 23:01:42 +02006624/*******************************************************/
6625/* functions below are dedicated to the config parsers */
6626/*******************************************************/
6627
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006628/* config parser for global "tune.h2.header-table-size" */
6629static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006630 const struct proxy *defpx, const char *file, int line,
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006631 char **err)
6632{
6633 if (too_many_args(1, args, err, NULL))
6634 return -1;
6635
6636 h2_settings_header_table_size = atoi(args[1]);
6637 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6638 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6639 return -1;
6640 }
6641 return 0;
6642}
Willy Tarreau62f52692017-10-08 23:01:42 +02006643
Willy Tarreaue6baec02017-07-27 11:45:11 +02006644/* config parser for global "tune.h2.initial-window-size" */
6645static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006646 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue6baec02017-07-27 11:45:11 +02006647 char **err)
6648{
6649 if (too_many_args(1, args, err, NULL))
6650 return -1;
6651
6652 h2_settings_initial_window_size = atoi(args[1]);
6653 if (h2_settings_initial_window_size < 0) {
6654 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6655 return -1;
6656 }
6657 return 0;
6658}
6659
Willy Tarreau5242ef82017-07-27 11:47:28 +02006660/* config parser for global "tune.h2.max-concurrent-streams" */
6661static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006662 const struct proxy *defpx, const char *file, int line,
Willy Tarreau5242ef82017-07-27 11:47:28 +02006663 char **err)
6664{
6665 if (too_many_args(1, args, err, NULL))
6666 return -1;
6667
6668 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006669 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006670 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6671 return -1;
6672 }
6673 return 0;
6674}
6675
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006676/* config parser for global "tune.h2.max-frame-size" */
6677static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006678 const struct proxy *defpx, const char *file, int line,
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006679 char **err)
6680{
6681 if (too_many_args(1, args, err, NULL))
6682 return -1;
6683
6684 h2_settings_max_frame_size = atoi(args[1]);
6685 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6686 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6687 return -1;
6688 }
6689 return 0;
6690}
6691
Willy Tarreau62f52692017-10-08 23:01:42 +02006692
6693/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006694/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006695/***************************************/
6696
6697/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006698static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006699 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006700 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006701 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006702 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006703 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006704 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006705 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01006706 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02006707 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006708 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006709 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006710 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006711 .shutr = h2_shutr,
6712 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006713 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006714 .show_fd = h2_show_fd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006715 .takeover = h2_takeover,
Christopher Fauleta4600572021-03-08 15:28:28 +01006716 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX|MX_FL_HOL_RISK|MX_FL_NO_UPG,
Willy Tarreau62f52692017-10-08 23:01:42 +02006717 .name = "H2",
6718};
6719
Christopher Faulet32f61c02018-04-10 14:33:41 +02006720static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006721 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006722
Willy Tarreau0108d902018-11-25 19:14:37 +01006723INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6724
Willy Tarreau62f52692017-10-08 23:01:42 +02006725/* config keyword parsers */
6726static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006727 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006728 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006729 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006730 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006731 { 0, NULL, NULL }
6732}};
6733
Willy Tarreau0108d902018-11-25 19:14:37 +01006734INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006735
6736/* initialize internal structs after the config is parsed.
6737 * Returns zero on success, non-zero on error.
6738 */
6739static int init_h2()
6740{
6741 pool_head_hpack_tbl = create_pool("hpack_tbl",
6742 h2_settings_header_table_size,
6743 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01006744 if (!pool_head_hpack_tbl) {
6745 ha_alert("failed to allocate hpack_tbl memory pool\n");
6746 return (ERR_ALERT | ERR_FATAL);
6747 }
6748 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006749}
6750
6751REGISTER_POST_CHECK(init_h2);