blob: 4fcd2d6d9036fb9cb199012bc88e8e7495c46a6f [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
375static struct trace_source trace_h2 = {
376 .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 Tarreauf3ce0412019-11-24 14:57:00 +0100621 if (h2c->errcode)
622 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
623
Willy Tarreau73db4342019-09-25 07:28:44 +0200624 if (h2c->dsi >= 0 &&
625 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
Willy Tarreau8520d872020-09-18 07:39:29 +0200626 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 +0200627 }
628
629 if (h2s) {
630 if (h2s->id <= 0)
631 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
632 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100633 if (h2s->id && h2s->errcode)
634 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200635 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200636 }
637
638 /* Let's dump decoded requests and responses right after parsing. They
639 * are traced at level USER with a few recognizable flags.
640 */
641 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
642 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
643 htx = htxbuf(buf); // recv req/res
644 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
645 htx = a3; // send req/res
646 else
647 htx = NULL;
648
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200649 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200650 const struct htx_blk *blk = htx_get_blk(htx, pos);
651 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
652 enum htx_blk_type type = htx_get_blk_type(blk);
653
654 if (type == HTX_BLK_REQ_SL)
655 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200656 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200657 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
658 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
659 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
660 else if (type == HTX_BLK_RES_SL)
661 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200662 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200663 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
664 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
665 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
666 }
667}
668
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200669
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100670/* Detect a pending read0 for a H2 connection. It happens if a read0 was
671 * already reported on a previous xprt->rcvbuf() AND a frame parser failed
672 * to parse pending data, confirming no more progress is possible because
673 * we're facing a truncated frame. The function returns 1 to report a read0
674 * or 0 otherwise.
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200675 */
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100676static inline int h2c_read0_pending(struct h2c *h2c)
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200677{
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100678 return !!(h2c->flags & H2_CF_END_REACHED);
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200679}
680
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200681/* returns true if the connection is allowed to expire, false otherwise. A
682 * connection may expire when:
683 * - it has no stream
684 * - it has data in the mux buffer
685 * - it has streams in the blocked list
686 * - it has streams in the fctl list
687 * - it has streams in the send list
688 * Otherwise it means some streams are waiting in the data layer and it should
689 * not expire.
690 */
691static inline int h2c_may_expire(const struct h2c *h2c)
692{
693 return eb_is_empty(&h2c->streams_by_id) ||
694 br_data(h2c->mbuf) ||
695 !LIST_ISEMPTY(&h2c->blocked_list) ||
696 !LIST_ISEMPTY(&h2c->fctl_list) ||
Willy Tarreaud9464162020-01-10 18:25:07 +0100697 !LIST_ISEMPTY(&h2c->send_list);
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200698}
699
Olivier Houchard7a977432019-03-21 15:47:13 +0100700static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200701h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100702{
703 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
704 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
705 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
706 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200707 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100708 (conn_xprt_read0_pending(h2c->conn) ||
709 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
710 return 1;
711
712 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100713}
714
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200715/*****************************************************/
716/* functions below are for dynamic buffer management */
717/*****************************************************/
718
Willy Tarreau315d8072017-12-10 22:17:57 +0100719/* indicates whether or not the we may call the h2_recv() function to attempt
720 * to receive data into the buffer and/or demux pending data. The condition is
721 * a bit complex due to some API limits for now. The rules are the following :
722 * - if an error or a shutdown was detected on the connection and the buffer
723 * is empty, we must not attempt to receive
724 * - if the demux buf failed to be allocated, we must not try to receive and
725 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100726 * - if no flag indicates a blocking condition, we may attempt to receive,
727 * regardless of whether the demux buffer is full or not, so that only
728 * de demux part decides whether or not to block. This is needed because
729 * the connection API indeed prevents us from re-enabling receipt that is
730 * already enabled in a polled state, so we must always immediately stop
731 * as soon as the demux can't proceed so as never to hit an end of read
732 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100733 * - otherwise must may not attempt
734 */
735static inline int h2_recv_allowed(const struct h2c *h2c)
736{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200737 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100738 (h2c->st0 >= H2_CS_ERROR ||
739 h2c->conn->flags & CO_FL_ERROR ||
740 conn_xprt_read0_pending(h2c->conn)))
741 return 0;
742
743 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100744 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100745 return 1;
746
747 return 0;
748}
749
Willy Tarreau47b515a2018-12-21 16:09:41 +0100750/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200751static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100752{
753 if (!h2_recv_allowed(h2c))
754 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200755 if ((!consider_buffer || !b_data(&h2c->dbuf))
756 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100757 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200758 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100759}
760
761
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100762/* returns true if the front connection has too many conn_streams attached */
763static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200764{
Willy Tarreaua8754662018-12-23 20:43:58 +0100765 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200766}
767
Willy Tarreau44e973f2018-03-01 17:49:30 +0100768/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
769 * flags are used to figure what buffer was requested. It returns 1 if the
770 * allocation succeeds, in which case the connection is woken up, or 0 if it's
771 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200772 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100773static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200774{
775 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100776 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200777
Willy Tarreau44e973f2018-03-01 17:49:30 +0100778 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc_margin(&h2c->dbuf, 0)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200779 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200780 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200781 return 1;
782 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200783
Willy Tarreau51330962019-05-26 09:38:07 +0200784 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc_margin(br_tail(h2c->mbuf), 0)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100785 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200786
787 if (h2c->flags & H2_CF_DEM_MROOM) {
788 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200789 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200790 }
Willy Tarreau14398122017-09-22 14:26:04 +0200791 return 1;
792 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100793
794 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
795 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Olivier Houchard638b7992018-08-16 15:41:52 +0200796 b_alloc_margin(&h2s->rxbuf, 0)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100797 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200798 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100799 return 1;
800 }
801
Willy Tarreau14398122017-09-22 14:26:04 +0200802 return 0;
803}
804
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200805static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200806{
807 struct buffer *buf = NULL;
808
Willy Tarreau90f366b2021-02-20 11:49:49 +0100809 if (likely(!LIST_ADDED(&h2c->buf_wait.list)) &&
Willy Tarreau44e973f2018-03-01 17:49:30 +0100810 unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) {
811 h2c->buf_wait.target = h2c;
812 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreau90f366b2021-02-20 11:49:49 +0100813 LIST_ADDQ(&ti->buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200814 }
815 return buf;
816}
817
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200818static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200819{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200820 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100821 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100822 offer_buffers(NULL, 1);
Willy Tarreau14398122017-09-22 14:26:04 +0200823 }
824}
825
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200826static inline void h2_release_mbuf(struct h2c *h2c)
827{
828 struct buffer *buf;
829 unsigned int count = 0;
830
831 while (b_size(buf = br_head_pick(h2c->mbuf))) {
832 b_free(buf);
833 count++;
834 }
835 if (count)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100836 offer_buffers(NULL, count);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200837}
838
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100839/* returns the number of allocatable outgoing streams for the connection taking
840 * the last_sid and the reserved ones into account.
841 */
842static inline int h2_streams_left(const struct h2c *h2c)
843{
844 int ret;
845
846 /* consider the number of outgoing streams we're allowed to create before
847 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
848 * nb_reserved is the number of streams which don't yet have an ID.
849 */
850 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
851 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
852 if (ret < 0)
853 ret = 0;
854 return ret;
855}
856
Willy Tarreau00f18a32019-01-26 12:19:01 +0100857/* returns the number of streams in use on a connection to figure if it's
858 * idle or not. We check nb_cs and not nb_streams as the caller will want
859 * to know if it was the last one after a detach().
860 */
861static int h2_used_streams(struct connection *conn)
862{
863 struct h2c *h2c = conn->ctx;
864
865 return h2c->nb_cs;
866}
867
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100868/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100869static int h2_avail_streams(struct connection *conn)
870{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100871 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100872 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100873 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100874
Willy Tarreau6afec462019-01-28 06:40:19 +0100875 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
876 * streams on the connection.
877 */
878 if (h2c->last_sid >= 0)
879 return 0;
880
Willy Tarreauc61966f2019-10-31 15:10:03 +0100881 if (h2c->st0 >= H2_CS_ERROR)
882 return 0;
883
Willy Tarreau86949782019-01-31 10:42:05 +0100884 /* note: may be negative if a SETTINGS frame changes the limit */
885 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100886
887 /* we must also consider the limit imposed by stream IDs */
888 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100889 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100890 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100891 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
892 ret1 = MIN(ret1, ret2);
893 }
894 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100895}
896
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200897
Willy Tarreau62f52692017-10-08 23:01:42 +0200898/*****************************************************************/
899/* functions below are dedicated to the mux setup and management */
900/*****************************************************************/
901
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200902/* Initialize the mux once it's attached. For outgoing connections, the context
903 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200904 * connections from the fact that the context is still NULL (even during mux
905 * upgrades). <input> is always used as Input buffer and may contain data. It is
906 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200907 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200908static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
909 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200910{
911 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100912 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200913 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200914
Christopher Fauletf81ef032019-10-04 15:19:43 +0200915 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200916
Willy Tarreaubafbe012017-11-24 17:34:44 +0100917 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200918 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200919 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200920
Christopher Faulete9b70722019-04-08 10:46:02 +0200921 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200922 h2c->flags = H2_CF_IS_BACK;
923 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
924 if (tick_isset(prx->timeout.serverfin))
925 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100926
927 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
928 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200929 } else {
930 h2c->flags = H2_CF_NONE;
931 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
932 if (tick_isset(prx->timeout.clientfin))
933 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100934
935 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
936 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200937 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100938
Willy Tarreau0b37d652018-10-03 10:33:02 +0200939 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100940 h2c->task = NULL;
Willy Tarreau3f133572017-10-31 19:21:06 +0100941 if (tick_isset(h2c->timeout)) {
942 t = task_new(tid_bit);
943 if (!t)
944 goto fail;
945
946 h2c->task = t;
947 t->process = h2_timeout_task;
948 t->context = h2c;
949 t->expire = tick_add(now_ms, h2c->timeout);
950 }
Willy Tarreauea392822017-10-31 10:02:25 +0100951
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200952 h2c->wait_event.tasklet = tasklet_new();
953 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200954 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200955 h2c->wait_event.tasklet->process = h2_io_cb;
956 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100957 h2c->wait_event.events = 0;
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200958
Willy Tarreau2bdcc702020-05-19 11:31:11 +0200959 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +0200960 if (!h2c->ddht)
961 goto fail;
962
963 /* Initialise the context. */
964 h2c->st0 = H2_CS_PREFACE;
965 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100966 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200967 h2c->max_id = -1;
968 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100969 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200970 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +0100971 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200972 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100973 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100974 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200975
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200976 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200977 h2c->dsi = -1;
978 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100979
Willy Tarreau32218eb2017-09-22 08:07:25 +0200980 h2c->last_sid = -1;
981
Willy Tarreau51330962019-05-26 09:38:07 +0200982 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +0200983 h2c->miw = 65535; /* mux initial window size */
984 h2c->mws = 65535; /* mux window size */
985 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +0200986 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200987 LIST_INIT(&h2c->send_list);
988 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200989 LIST_INIT(&h2c->blocked_list);
Willy Tarreau90f366b2021-02-20 11:49:49 +0100990 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200991
Christopher Fauletf81ef032019-10-04 15:19:43 +0200992 conn->ctx = h2c;
993
Willy Tarreau3f133572017-10-31 19:21:06 +0100994 if (t)
995 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +0100996
Willy Tarreau01b44822018-10-03 14:26:37 +0200997 if (h2c->flags & H2_CF_IS_BACK) {
998 /* FIXME: this is temporary, for outgoing connections we need
999 * to immediately allocate a stream until the code is modified
1000 * so that the caller calls ->attach(). For now the outgoing cs
Christopher Fauletf81ef032019-10-04 15:19:43 +02001001 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +02001002 */
1003 struct h2s *h2s;
1004
Christopher Fauletf81ef032019-10-04 15:19:43 +02001005 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +02001006 if (!h2s)
1007 goto fail_stream;
1008 }
1009
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001010 HA_ATOMIC_ADD(&h2c->px_counters->open_conns, 1);
Amaury Denoyellee7b891f2020-11-03 15:04:45 +01001011 HA_ATOMIC_ADD(&h2c->px_counters->total_conns, 1);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001012
Willy Tarreau0f383582018-10-03 14:22:21 +02001013 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02001014 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001015 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001016 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +02001017 fail_stream:
1018 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +02001019 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001020 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001021 if (h2c->wait_event.tasklet)
1022 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001023 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +02001024 fail_no_h2c:
Christopher Fauletf81ef032019-10-04 15:19:43 +02001025 conn->ctx = conn_ctx; /* restore saved ctx */
1026 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001027 return -1;
1028}
1029
Willy Tarreau751f2d02018-10-05 09:35:00 +02001030/* returns the next allocatable outgoing stream ID for the H2 connection, or
1031 * -1 if no more is allocatable.
1032 */
1033static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1034{
1035 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001036
1037 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001038 id = -1;
1039 return id;
1040}
1041
Willy Tarreau2373acc2017-10-12 17:35:14 +02001042/* returns the stream associated with id <id> or NULL if not found */
1043static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1044{
1045 struct eb32_node *node;
1046
Willy Tarreau751f2d02018-10-05 09:35:00 +02001047 if (id == 0)
1048 return (struct h2s *)h2_closed_stream;
1049
Willy Tarreau2a856182017-05-16 15:20:39 +02001050 if (id > h2c->max_id)
1051 return (struct h2s *)h2_idle_stream;
1052
Willy Tarreau2373acc2017-10-12 17:35:14 +02001053 node = eb32_lookup(&h2c->streams_by_id, id);
1054 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001055 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001056
1057 return container_of(node, struct h2s, by_id);
1058}
1059
Christopher Faulet73c12072019-04-08 11:23:22 +02001060/* release function. This one should be called to free all resources allocated
1061 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001062 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001063static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001064{
William Dauchy477757c2020-08-07 22:19:23 +02001065 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001066
Willy Tarreau7838a792019-08-12 18:42:03 +02001067 TRACE_ENTER(H2_EV_H2C_END);
1068
Willy Tarreau32218eb2017-09-22 08:07:25 +02001069 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +02001070 /* The connection must be aattached to this mux to be released */
1071 if (h2c->conn && h2c->conn->ctx == h2c)
1072 conn = h2c->conn;
1073
Willy Tarreau7838a792019-08-12 18:42:03 +02001074 TRACE_DEVEL("freeing h2c", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001075 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +02001076
Willy Tarreau90f366b2021-02-20 11:49:49 +01001077 if (LIST_ADDED(&h2c->buf_wait.list))
1078 LIST_DEL_INIT(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001079
Willy Tarreau44e973f2018-03-01 17:49:30 +01001080 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +02001081 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +01001082
Willy Tarreauea392822017-10-31 10:02:25 +01001083 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +02001084 h2c->task->context = NULL;
1085 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +01001086 h2c->task = NULL;
1087 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001088 if (h2c->wait_event.tasklet)
1089 tasklet_free(h2c->wait_event.tasklet);
Christopher Faulet21d849f2019-09-18 11:07:20 +02001090 if (conn && h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001091 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Christopher Faulet21d849f2019-09-18 11:07:20 +02001092 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001093
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001094 HA_ATOMIC_SUB(&h2c->px_counters->open_conns, 1);
1095
Willy Tarreaubafbe012017-11-24 17:34:44 +01001096 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001097 }
1098
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001099 if (conn) {
1100 conn->mux = NULL;
1101 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001102 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001103
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001104 conn_stop_tracking(conn);
1105 conn_full_close(conn);
1106 if (conn->destroy_cb)
1107 conn->destroy_cb(conn);
1108 conn_free(conn);
1109 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001110
1111 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001112}
1113
1114
Willy Tarreau71681172017-10-23 14:39:06 +02001115/******************************************************/
1116/* functions below are for the H2 protocol processing */
1117/******************************************************/
1118
1119/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001120static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001121{
1122 return h2s ? h2s->id : 0;
1123}
1124
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001125/* returns the sum of the stream's own window size and the mux's initial
1126 * window, which together form the stream's effective window size.
1127 */
1128static inline int h2s_mws(const struct h2s *h2s)
1129{
1130 return h2s->sws + h2s->h2c->miw;
1131}
1132
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001133/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001134static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001135{
1136 if (h2c->msi < 0)
1137 return 0;
1138
1139 if (h2c->msi == h2s_id(h2s))
1140 return 0;
1141
1142 return 1;
1143}
1144
Willy Tarreau741d6df2017-10-17 08:00:59 +02001145/* marks an error on the connection */
Willy Tarreau1f094672017-11-20 21:27:45 +01001146static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001147{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001148 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001149 h2c->errcode = err;
1150 h2c->st0 = H2_CS_ERROR;
1151}
1152
Willy Tarreau175cebb2019-01-24 10:02:24 +01001153/* marks an error on the stream. It may also update an already closed stream
1154 * (e.g. to report an error after an RST was received).
1155 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001156static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001157{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001158 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001159 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001160 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001161 if (h2s->st < H2_SS_ERROR)
1162 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +01001163 if (h2s->cs)
1164 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001165 }
1166}
1167
Willy Tarreau7e094452018-12-19 18:08:52 +01001168/* attempt to notify the data layer of recv availability */
1169static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1170{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001171 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001172 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001173 tasklet_wakeup(h2s->subs->tasklet);
1174 h2s->subs->events &= ~SUB_RETRY_RECV;
1175 if (!h2s->subs->events)
1176 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001177 }
1178}
1179
1180/* attempt to notify the data layer of send availability */
1181static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1182{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001183 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001184 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001185 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001186 tasklet_wakeup(h2s->subs->tasklet);
1187 h2s->subs->events &= ~SUB_RETRY_SEND;
1188 if (!h2s->subs->events)
1189 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001190 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001191 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1192 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1193 tasklet_wakeup(h2s->shut_tl);
1194 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001195}
1196
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001197/* alerts the data layer, trying to wake it up by all means, following
1198 * this sequence :
1199 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1200 * - if its subscribed to send, then it's woken up for send
1201 * - if it was subscribed to neither, its ->wake() callback is called
1202 * It is safe to call this function with a closed stream which doesn't have a
1203 * conn_stream anymore.
1204 */
1205static void __maybe_unused h2s_alert(struct h2s *h2s)
1206{
Willy Tarreau7838a792019-08-12 18:42:03 +02001207 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1208
Willy Tarreauf96508a2020-01-10 11:12:48 +01001209 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001210 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001211 h2s_notify_recv(h2s);
1212 h2s_notify_send(h2s);
1213 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001214 else if (h2s->cs && h2s->cs->data_cb->wake != NULL) {
1215 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001216 h2s->cs->data_cb->wake(h2s->cs);
Willy Tarreau7838a792019-08-12 18:42:03 +02001217 }
1218
1219 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001220}
1221
Willy Tarreaue4820742017-07-27 13:37:23 +02001222/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001223static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001224{
1225 uint8_t *out = frame;
1226
1227 *out = len >> 16;
1228 write_n16(out + 1, len);
1229}
1230
Willy Tarreau54c15062017-10-10 17:10:03 +02001231/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1232 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1233 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001234 * available in the buffer's input prior to calling this function. The buffer
1235 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001236 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001237static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001238 const struct buffer *b, int o)
1239{
Willy Tarreau591d4452018-06-15 17:21:00 +02001240 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 +02001241}
1242
Willy Tarreau1f094672017-11-20 21:27:45 +01001243static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001244{
Willy Tarreau591d4452018-06-15 17:21:00 +02001245 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001246}
1247
Willy Tarreau1f094672017-11-20 21:27:45 +01001248static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001249{
Willy Tarreau591d4452018-06-15 17:21:00 +02001250 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001251}
1252
Willy Tarreau1f094672017-11-20 21:27:45 +01001253static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001254{
Willy Tarreau591d4452018-06-15 17:21:00 +02001255 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001256}
1257
1258
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001259/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1260 * The algorithm is not obvious. It turns out that H2 headers are neither
1261 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1262 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001263 *
1264 * b0 b1 b2 b3 b4 b5..b8
1265 * +----------+---------+--------+----+----+----------------------+
1266 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1267 * +----------+---------+--------+----+----+----------------------+
1268 *
1269 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1270 * we get the sid properly aligned and ordered, and 16 bits of len properly
1271 * ordered as well. The type and flags can be extracted using bit shifts from
1272 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001273 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1274 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001275 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001276static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001277{
1278 uint64_t w;
1279
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001280 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001281 return 0;
1282
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001283 w = h2_get_n64(b, o + 1);
1284 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001285 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1286 h->ff = w >> 32;
1287 h->ft = w >> 40;
1288 h->len += w >> 48;
1289 return 1;
1290}
1291
1292/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1293 * h2_peek_frame_hdr() above.
1294 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001295static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001296{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001297 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001298}
1299
1300/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001301static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001302{
1303 int ret;
1304
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001305 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001306 if (ret > 0)
1307 h2_skip_frame_hdr(b);
1308 return ret;
1309}
1310
Willy Tarreaucb985a42019-10-07 16:56:34 +02001311
1312/* try to fragment the headers frame present at the beginning of buffer <b>,
1313 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1314 * success. Typical causes of failure include a buffer not large enough to
1315 * add extra frame headers. The existing frame size is read in the current
1316 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1317 * and its length will be adjusted. The stream ID for continuation frames will
1318 * be copied from the initial frame's.
1319 */
1320static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1321{
1322 size_t remain = b->data - 9;
1323 int extra_frames = (remain - 1) / mfs;
1324 size_t fsize;
1325 char *fptr;
1326 int frame;
1327
1328 if (b->data <= mfs + 9)
1329 return 1;
1330
1331 /* Too large a frame, we need to fragment it using CONTINUATION
1332 * frames. We start from the end and move tails as needed.
1333 */
1334 if (b->data + extra_frames * 9 > b->size)
1335 return 0;
1336
1337 for (frame = extra_frames; frame; frame--) {
1338 fsize = ((remain - 1) % mfs) + 1;
1339 remain -= fsize;
1340
1341 /* move data */
1342 fptr = b->area + 9 + remain + (frame - 1) * 9;
1343 memmove(fptr + 9, b->area + 9 + remain, fsize);
1344 b->data += 9;
1345
1346 /* write new frame header */
1347 h2_set_frame_size(fptr, fsize);
1348 fptr[3] = H2_FT_CONTINUATION;
1349 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1350 write_n32(fptr + 5, read_n32(b->area + 5));
1351 }
1352
1353 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1354 h2_set_frame_size(b->area, remain);
1355 return 1;
1356}
1357
1358
Willy Tarreau00dd0782018-03-01 16:31:34 +01001359/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1360 * its connection if the stream was not yet closed. Please use this exclusively
1361 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001362 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001363static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001364{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001365 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001366 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001367 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001368 if (!h2s->id)
1369 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +01001370 if (h2s->cs) {
Willy Tarreaua27db382019-03-25 18:13:16 +01001371 if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf))
1372 h2s_notify_recv(h2s);
1373 }
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001374 HA_ATOMIC_SUB(&h2s->h2c->px_counters->open_streams, 1);
1375
Willy Tarreau7838a792019-08-12 18:42:03 +02001376 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001377 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001378 h2s->st = H2_SS_CLOSED;
1379}
1380
Willy Tarreau71049cc2018-03-28 13:56:39 +02001381/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001382/* h2s_destroy should only ever be called by the thread that owns the stream,
1383 * that means that a tasklet should be used if we want to destroy the h2s
1384 * from another thread
1385 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001386static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001387{
Willy Tarreau7838a792019-08-12 18:42:03 +02001388 struct connection *conn = h2s->h2c->conn;
1389
1390 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1391
Willy Tarreau0a10de62018-03-01 16:27:53 +01001392 h2s_close(h2s);
1393 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001394 if (b_size(&h2s->rxbuf)) {
1395 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01001396 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02001397 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001398
1399 if (h2s->subs)
1400 h2s->subs->events = 0;
1401
Joseph Herlantd77575d2018-11-25 10:54:45 -08001402 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001403 * reference left would be in the h2c send_list/fctl_list, and if
1404 * we're in it, we're getting out anyway
1405 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001406 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001407
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001408 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001409 tasklet_free(h2s->shut_tl);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001410 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001411
1412 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001413}
1414
Willy Tarreaua8e49542018-10-03 18:53:55 +02001415/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1416 * stream tree. In case of error, nothing is added and NULL is returned. The
1417 * causes of errors can be any failed memory allocation. The caller is
1418 * responsible for checking if the connection may support an extra stream
1419 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001420 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001421static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001422{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001423 struct h2s *h2s;
1424
Willy Tarreau7838a792019-08-12 18:42:03 +02001425 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1426
Willy Tarreaubafbe012017-11-24 17:34:44 +01001427 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001428 if (!h2s)
1429 goto out;
1430
Willy Tarreau5723f292020-01-10 15:16:57 +01001431 h2s->shut_tl = tasklet_new();
1432 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001433 pool_free(pool_head_h2s, h2s);
1434 goto out;
1435 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001436 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001437 h2s->shut_tl->process = h2_deferred_shut;
1438 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001439 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001440 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001441 h2s->cs = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001442 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001443 h2s->flags = H2_SF_NONE;
1444 h2s->errcode = H2_ERR_NO_ERROR;
1445 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001446 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001447 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001448 h2s->rxbuf = BUF_NULL;
Amaury Denoyelle74162742020-12-11 17:53:05 +01001449 memset(h2s->upgrade_protocol, 0, sizeof(h2s->upgrade_protocol));
Willy Tarreau751f2d02018-10-05 09:35:00 +02001450
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001451 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001452 if (id > 0)
1453 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001454 else
1455 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001456
1457 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001458 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001459 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001460
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001461 HA_ATOMIC_ADD(&h2c->px_counters->open_streams, 1);
Amaury Denoyellee7b891f2020-11-03 15:04:45 +01001462 HA_ATOMIC_ADD(&h2c->px_counters->total_streams, 1);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001463
Willy Tarreau7838a792019-08-12 18:42:03 +02001464 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001465 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001466 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001467 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001468 return NULL;
1469}
1470
1471/* creates a new stream <id> on the h2c connection and returns it, or NULL in
Christopher Faulet7d013e72020-12-15 16:56:50 +01001472 * case of memory allocation error. <input> is used as input buffer for the new
1473 * stream. On success, it is transferred to the stream and the mux is no longer
1474 * responsible of it. On error, <input> is unchanged, thus the mux must still
1475 * take care of it.
Willy Tarreaua8e49542018-10-03 18:53:55 +02001476 */
Christopher Faulet7d013e72020-12-15 16:56:50 +01001477static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id, struct buffer *input)
Willy Tarreaua8e49542018-10-03 18:53:55 +02001478{
1479 struct session *sess = h2c->conn->owner;
1480 struct conn_stream *cs;
1481 struct h2s *h2s;
1482
Willy Tarreau7838a792019-08-12 18:42:03 +02001483 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1484
Willy Tarreaua8e49542018-10-03 18:53:55 +02001485 if (h2c->nb_streams >= h2_settings_max_concurrent_streams)
1486 goto out;
1487
1488 h2s = h2s_new(h2c, id);
1489 if (!h2s)
1490 goto out;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001491
Christopher Faulet236c93b2020-07-02 09:19:54 +02001492 cs = cs_new(h2c->conn, h2c->conn->target);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001493 if (!cs)
1494 goto out_close;
1495
Olivier Houchard746fb772018-12-15 19:42:00 +01001496 cs->flags |= CS_FL_NOT_FIRST;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001497 h2s->cs = cs;
1498 cs->ctx = h2s;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001499 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001500
Christopher Faulet7d013e72020-12-15 16:56:50 +01001501 if (stream_create_from_cs(cs, input) < 0)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001502 goto out_free_cs;
1503
Willy Tarreau590a0512018-09-05 11:56:48 +02001504 /* We want the accept date presented to the next stream to be the one
1505 * we have now, the handshake time to be null (since the next stream
1506 * is not delayed by a handshake), and the idle time to count since
1507 * right now.
1508 */
1509 sess->accept_date = date;
1510 sess->tv_accept = now;
1511 sess->t_handshake = 0;
1512
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001513 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001514 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001515 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001516 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001517 return h2s;
1518
1519 out_free_cs:
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001520 h2c->nb_cs--;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001521 cs_free(cs);
Olivier Houchard58d87f32019-05-29 16:44:17 +02001522 h2s->cs = NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001523 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001524 h2s_destroy(h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001525 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001526 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001527 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001528 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001529}
1530
Willy Tarreau751f2d02018-10-05 09:35:00 +02001531/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1532 * and returns it, or NULL in case of memory allocation error or if the highest
1533 * possible stream ID was reached.
1534 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001535static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001536{
1537 struct h2s *h2s = NULL;
1538
Willy Tarreau7838a792019-08-12 18:42:03 +02001539 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1540
Willy Tarreau86949782019-01-31 10:42:05 +01001541 if (h2c->nb_streams >= h2c->streams_limit)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001542 goto out;
1543
Willy Tarreaua80dca82019-01-24 17:08:28 +01001544 if (h2_streams_left(h2c) < 1)
1545 goto out;
1546
Willy Tarreau751f2d02018-10-05 09:35:00 +02001547 /* Defer choosing the ID until we send the first message to create the stream */
1548 h2s = h2s_new(h2c, 0);
1549 if (!h2s)
1550 goto out;
1551
1552 h2s->cs = cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001553 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001554 cs->ctx = h2s;
1555 h2c->nb_cs++;
1556
Willy Tarreau751f2d02018-10-05 09:35:00 +02001557 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001558 if (likely(h2s))
1559 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1560 else
1561 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001562 return h2s;
1563}
1564
Willy Tarreaube5b7152017-09-25 16:25:39 +02001565/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1566 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1567 * the various settings codes.
1568 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001569static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001570{
1571 struct buffer *res;
1572 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001573 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001574 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001575 int ret = 0;
1576
1577 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001578
1579 if (h2c_mux_busy(h2c, NULL)) {
1580 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001581 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001582 }
1583
Willy Tarreaube5b7152017-09-25 16:25:39 +02001584 chunk_init(&buf, buf_data, sizeof(buf_data));
1585 chunk_memcpy(&buf,
1586 "\x00\x00\x00" /* length : 0 for now */
1587 "\x04\x00" /* type : 4 (settings), flags : 0 */
1588 "\x00\x00\x00\x00", /* stream ID : 0 */
1589 9);
1590
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001591 if (h2c->flags & H2_CF_IS_BACK) {
1592 /* send settings_enable_push=0 */
1593 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1594 }
1595
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01001596 /* rfc 8441 #3 SETTINGS_ENABLE_CONNECT_PROTOCOL=1
1597 * sent automatically */
1598 chunk_memcat(&buf, "\x00\x08\x00\x00\x00\x01", 6);
1599
Willy Tarreaube5b7152017-09-25 16:25:39 +02001600 if (h2_settings_header_table_size != 4096) {
1601 char str[6] = "\x00\x01"; /* header_table_size */
1602
1603 write_n32(str + 2, h2_settings_header_table_size);
1604 chunk_memcat(&buf, str, 6);
1605 }
1606
1607 if (h2_settings_initial_window_size != 65535) {
1608 char str[6] = "\x00\x04"; /* initial_window_size */
1609
1610 write_n32(str + 2, h2_settings_initial_window_size);
1611 chunk_memcat(&buf, str, 6);
1612 }
1613
1614 if (h2_settings_max_concurrent_streams != 0) {
1615 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1616
1617 /* Note: 0 means "unlimited" for haproxy's config but not for
1618 * the protocol, so never send this value!
1619 */
1620 write_n32(str + 2, h2_settings_max_concurrent_streams);
1621 chunk_memcat(&buf, str, 6);
1622 }
1623
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001624 mfs = h2_settings_max_frame_size;
1625 if (mfs > global.tune.bufsize)
1626 mfs = global.tune.bufsize;
1627
1628 if (!mfs)
1629 mfs = global.tune.bufsize;
1630
1631 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001632 char str[6] = "\x00\x05"; /* max_frame_size */
1633
1634 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1635 * match bufsize - rewrite size, but at the moment it seems
1636 * that clients don't take care of it.
1637 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001638 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001639 chunk_memcat(&buf, str, 6);
1640 }
1641
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001642 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001643
1644 res = br_tail(h2c->mbuf);
1645 retry:
1646 if (!h2_get_buf(h2c, res)) {
1647 h2c->flags |= H2_CF_MUX_MALLOC;
1648 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001649 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001650 }
1651
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001652 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001653 if (unlikely(ret <= 0)) {
1654 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001655 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1656 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001657 h2c->flags |= H2_CF_MUX_MFULL;
1658 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001659 }
1660 else {
1661 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001662 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001663 }
1664 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001665 out:
1666 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001667 return ret;
1668}
1669
Willy Tarreau52eed752017-09-22 15:05:09 +02001670/* Try to receive a connection preface, then upon success try to send our
1671 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1672 * missing data. It may return an error in h2c.
1673 */
1674static int h2c_frt_recv_preface(struct h2c *h2c)
1675{
1676 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001677 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001678
Willy Tarreau7838a792019-08-12 18:42:03 +02001679 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1680
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001681 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001682
1683 if (unlikely(ret1 <= 0)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02001684 if (ret1 < 0)
1685 sess_log(h2c->conn->owner);
1686
Amaury Denoyellea8879232020-10-27 17:16:03 +01001687 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001688 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 +02001689 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001690 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
1691 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001692 ret2 = 0;
1693 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001694 }
1695
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001696 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001697 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001698 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001699 out:
1700 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001701 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001702}
1703
Willy Tarreau01b44822018-10-03 14:26:37 +02001704/* Try to send a connection preface, then upon success try to send our
1705 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1706 * missing data. It may return an error in h2c.
1707 */
1708static int h2c_bck_send_preface(struct h2c *h2c)
1709{
1710 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001711 int ret = 0;
1712
1713 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001714
1715 if (h2c_mux_busy(h2c, NULL)) {
1716 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001717 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001718 }
1719
Willy Tarreaubcc45952019-05-26 10:05:50 +02001720 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001721 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001722 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001723 h2c->flags |= H2_CF_MUX_MALLOC;
1724 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001725 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001726 }
1727
1728 if (!b_data(res)) {
1729 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001730 ret = b_istput(res, ist(H2_CONN_PREFACE));
1731 if (unlikely(ret <= 0)) {
1732 if (!ret) {
1733 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1734 goto retry;
1735 h2c->flags |= H2_CF_MUX_MFULL;
1736 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001737 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001738 }
1739 else {
1740 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001741 ret = 0;
1742 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001743 }
1744 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001745 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001746 ret = h2c_send_settings(h2c);
1747 out:
1748 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1749 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001750}
1751
Willy Tarreau081d4722017-05-16 21:51:05 +02001752/* try to send a GOAWAY frame on the connection to report an error or a graceful
1753 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1754 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1755 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1756 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1757 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1758 * on unrecoverable failure. It will not attempt to send one again in this last
1759 * case so that it is safe to use h2c_error() to report such errors.
1760 */
1761static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1762{
1763 struct buffer *res;
1764 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001765 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001766
Willy Tarreau7838a792019-08-12 18:42:03 +02001767 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1768
1769 if (h2c->flags & H2_CF_GOAWAY_FAILED) {
1770 ret = 1; // claim that it worked
1771 goto out;
1772 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001773
1774 if (h2c_mux_busy(h2c, h2s)) {
1775 if (h2s)
1776 h2s->flags |= H2_SF_BLK_MBUSY;
1777 else
1778 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001779 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001780 }
1781
Willy Tarreau9c218e72019-05-26 10:08:28 +02001782 /* len: 8, type: 7, flags: none, sid: 0 */
1783 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1784
1785 if (h2c->last_sid < 0)
1786 h2c->last_sid = h2c->max_id;
1787
1788 write_n32(str + 9, h2c->last_sid);
1789 write_n32(str + 13, h2c->errcode);
1790
Willy Tarreaubcc45952019-05-26 10:05:50 +02001791 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001792 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001793 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001794 h2c->flags |= H2_CF_MUX_MALLOC;
1795 if (h2s)
1796 h2s->flags |= H2_SF_BLK_MROOM;
1797 else
1798 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001799 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001800 }
1801
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001802 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001803 if (unlikely(ret <= 0)) {
1804 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001805 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1806 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001807 h2c->flags |= H2_CF_MUX_MFULL;
1808 if (h2s)
1809 h2s->flags |= H2_SF_BLK_MROOM;
1810 else
1811 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001812 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001813 }
1814 else {
1815 /* we cannot report this error using GOAWAY, so we mark
1816 * it and claim a success.
1817 */
1818 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1819 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001820 ret = 1;
1821 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001822 }
1823 }
1824 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001825
1826 /* some codes are not for real errors, just attempts to close cleanly */
1827 switch (h2c->errcode) {
1828 case H2_ERR_NO_ERROR:
1829 case H2_ERR_ENHANCE_YOUR_CALM:
1830 case H2_ERR_REFUSED_STREAM:
1831 case H2_ERR_CANCEL:
1832 break;
1833 default:
1834 HA_ATOMIC_ADD(&h2c->px_counters->goaway_resp, 1);
1835 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001836 out:
1837 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001838 return ret;
1839}
1840
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001841/* Try to send an RST_STREAM frame on the connection for the indicated stream
1842 * during mux operations. This stream must be valid and cannot be closed
1843 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1844 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1845 * not yet.
1846 *
1847 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1848 * to write the message, it subscribes the stream to future notifications.
1849 */
1850static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1851{
1852 struct buffer *res;
1853 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001854 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001855
Willy Tarreau7838a792019-08-12 18:42:03 +02001856 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1857
1858 if (!h2s || h2s->st == H2_SS_CLOSED) {
1859 ret = 1;
1860 goto out;
1861 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001862
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001863 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1864 * RST_STREAM in response to a RST_STREAM frame.
1865 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001866 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001867 ret = 1;
1868 goto ignore;
1869 }
1870
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001871 if (h2c_mux_busy(h2c, h2s)) {
1872 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001873 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001874 }
1875
Willy Tarreau9c218e72019-05-26 10:08:28 +02001876 /* len: 4, type: 3, flags: none */
1877 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1878 write_n32(str + 5, h2s->id);
1879 write_n32(str + 9, h2s->errcode);
1880
Willy Tarreaubcc45952019-05-26 10:05:50 +02001881 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001882 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001883 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001884 h2c->flags |= H2_CF_MUX_MALLOC;
1885 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001886 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001887 }
1888
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001889 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001890 if (unlikely(ret <= 0)) {
1891 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001892 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1893 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001894 h2c->flags |= H2_CF_MUX_MFULL;
1895 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001896 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001897 }
1898 else {
1899 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001900 ret = 0;
1901 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001902 }
1903 }
1904
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001905 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001906 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001907 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001908 out:
1909 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001910 return ret;
1911}
1912
1913/* Try to send an RST_STREAM frame on the connection for the stream being
1914 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001915 * error code, even if the stream is one of the dummy ones, and will update
1916 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001917 *
1918 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1919 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001920 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001921 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001922 */
1923static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1924{
1925 struct buffer *res;
1926 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001927 int ret = 0;
1928
1929 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001930
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001931 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1932 * RST_STREAM in response to a RST_STREAM frame.
1933 */
1934 if (h2c->dft == H2_FT_RST_STREAM) {
1935 ret = 1;
1936 goto ignore;
1937 }
1938
Willy Tarreau27a84c92017-10-17 08:10:17 +02001939 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001940 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001941 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001942 }
1943
Willy Tarreau9c218e72019-05-26 10:08:28 +02001944 /* len: 4, type: 3, flags: none */
1945 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1946
1947 write_n32(str + 5, h2c->dsi);
1948 write_n32(str + 9, h2s->errcode);
1949
Willy Tarreaubcc45952019-05-26 10:05:50 +02001950 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001951 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001952 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001953 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001954 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001955 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001956 }
1957
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001958 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02001959 if (unlikely(ret <= 0)) {
1960 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001961 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1962 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001963 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001964 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001965 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001966 }
1967 else {
1968 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001969 ret = 0;
1970 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001971 }
1972 }
1973
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001974 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02001975 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001976 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001977 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001978 }
1979
Willy Tarreau7838a792019-08-12 18:42:03 +02001980 out:
Amaury Denoyellea8879232020-10-27 17:16:03 +01001981 HA_ATOMIC_ADD(&h2c->px_counters->rst_stream_resp, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001982 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001983 return ret;
1984}
1985
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001986/* try to send an empty DATA frame with the ES flag set to notify about the
1987 * end of stream and match a shutdown(write). If an ES was already sent as
1988 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
1989 * on success or zero if nothing was done. In case of lack of room to write the
1990 * message, it subscribes the requesting stream to future notifications.
1991 */
1992static int h2_send_empty_data_es(struct h2s *h2s)
1993{
1994 struct h2c *h2c = h2s->h2c;
1995 struct buffer *res;
1996 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02001997 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001998
Willy Tarreau7838a792019-08-12 18:42:03 +02001999 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
2000
2001 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
2002 ret = 1;
2003 goto out;
2004 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002005
2006 if (h2c_mux_busy(h2c, h2s)) {
2007 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002008 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002009 }
2010
Willy Tarreau9c218e72019-05-26 10:08:28 +02002011 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
2012 memcpy(str, "\x00\x00\x00\x00\x01", 5);
2013 write_n32(str + 5, h2s->id);
2014
Willy Tarreaubcc45952019-05-26 10:05:50 +02002015 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002016 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002017 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002018 h2c->flags |= H2_CF_MUX_MALLOC;
2019 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002020 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002021 }
2022
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002023 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002024 if (likely(ret > 0)) {
2025 h2s->flags |= H2_SF_ES_SENT;
2026 }
2027 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002028 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2029 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002030 h2c->flags |= H2_CF_MUX_MFULL;
2031 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002032 }
2033 else {
2034 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002035 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002036 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002037 out:
2038 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002039 return ret;
2040}
2041
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002042/* wake a specific stream and assign its conn_stream some CS_FL_* flags among
Willy Tarreau99ad1b32019-05-14 11:46:28 +02002043 * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002044 * is automatically updated accordingly. If the stream is orphaned, it is
2045 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002046 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002047static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002048{
Willy Tarreau7838a792019-08-12 18:42:03 +02002049 struct h2c *h2c = h2s->h2c;
2050
2051 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2052
Christopher Fauletf02ca002019-03-07 16:21:34 +01002053 if (!h2s->cs) {
2054 /* this stream was already orphaned */
2055 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002056 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002057 return;
2058 }
2059
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002060 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002061 if (h2s->st == H2_SS_OPEN)
2062 h2s->st = H2_SS_HREM;
2063 else if (h2s->st == H2_SS_HLOC)
2064 h2s_close(h2s);
2065 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002066
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002067 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
2068 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
2069 h2s->cs->flags |= CS_FL_ERR_PENDING;
2070 if (h2s->cs->flags & CS_FL_EOS)
2071 h2s->cs->flags |= CS_FL_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02002072
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002073 if (h2s->st < H2_SS_ERROR)
2074 h2s->st = H2_SS_ERROR;
2075 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002076
2077 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002078 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002079}
2080
2081/* wake the streams attached to the connection, whose id is greater than <last>
2082 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002083 */
Willy Tarreau23482912019-05-07 15:23:14 +02002084static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002085{
2086 struct eb32_node *node;
2087 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002088
Willy Tarreau7838a792019-08-12 18:42:03 +02002089 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2090
Christopher Fauletf02ca002019-03-07 16:21:34 +01002091 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002092 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2093 while (node) {
2094 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002095 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002096 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002097 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002098
Christopher Fauletf02ca002019-03-07 16:21:34 +01002099 /* Wake all streams with unassigned ID (ID == 0) */
2100 node = eb32_lookup(&h2c->streams_by_id, 0);
2101 while (node) {
2102 h2s = container_of(node, struct h2s, by_id);
2103 if (h2s->id > 0)
2104 break;
2105 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002106 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002107 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002108
2109 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002110}
2111
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002112/* Wake up all blocked streams whose window size has become positive after the
2113 * mux's initial window was adjusted. This should be done after having processed
2114 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002115 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002116static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002117{
2118 struct h2s *h2s;
2119 struct eb32_node *node;
2120
Willy Tarreau7838a792019-08-12 18:42:03 +02002121 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2122
Willy Tarreau3421aba2017-07-27 15:41:03 +02002123 node = eb32_first(&h2c->streams_by_id);
2124 while (node) {
2125 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002126 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002127 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002128 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002129 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2130 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002131 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002132 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002133 node = eb32_next(node);
2134 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002135
2136 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002137}
2138
2139/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2140 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002141 * return an error in h2c. The caller must have already verified frame length
2142 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002143 */
2144static int h2c_handle_settings(struct h2c *h2c)
2145{
2146 unsigned int offset;
2147 int error;
2148
Willy Tarreau7838a792019-08-12 18:42:03 +02002149 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2150
Willy Tarreau3421aba2017-07-27 15:41:03 +02002151 if (h2c->dff & H2_F_SETTINGS_ACK) {
2152 if (h2c->dfl) {
2153 error = H2_ERR_FRAME_SIZE_ERROR;
2154 goto fail;
2155 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002156 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002157 }
2158
Willy Tarreau3421aba2017-07-27 15:41:03 +02002159 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002160 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002161 goto out0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002162
2163 /* parse the frame */
2164 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002165 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2166 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002167
2168 switch (type) {
2169 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2170 /* we need to update all existing streams with the
2171 * difference from the previous iws.
2172 */
2173 if (arg < 0) { // RFC7540#6.5.2
2174 error = H2_ERR_FLOW_CONTROL_ERROR;
2175 goto fail;
2176 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002177 h2c->miw = arg;
2178 break;
2179 case H2_SETTINGS_MAX_FRAME_SIZE:
2180 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002181 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 +02002182 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002183 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002184 goto fail;
2185 }
2186 h2c->mfs = arg;
2187 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002188 case H2_SETTINGS_ENABLE_PUSH:
2189 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002190 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002191 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002192 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002193 goto fail;
2194 }
2195 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002196 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2197 if (h2c->flags & H2_CF_IS_BACK) {
2198 /* the limit is only for the backend; for the frontend it is our limit */
2199 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2200 arg = h2_settings_max_concurrent_streams;
2201 h2c->streams_limit = arg;
2202 }
2203 break;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002204 case H2_SETTINGS_ENABLE_CONNECT_PROTOCOL:
2205 /* nothing to do here as this settings is automatically
2206 * transmits to the client */
2207 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002208 }
2209 }
2210
2211 /* need to ACK this frame now */
2212 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002213 done:
2214 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002215 return 1;
2216 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002217 if (!(h2c->flags & H2_CF_IS_BACK))
2218 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002219 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002220 out0:
2221 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 +02002222 return 0;
2223}
2224
2225/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2226 * success or one of the h2_status values.
2227 */
2228static int h2c_ack_settings(struct h2c *h2c)
2229{
2230 struct buffer *res;
2231 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002232 int ret = 0;
2233
2234 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002235
2236 if (h2c_mux_busy(h2c, NULL)) {
2237 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002238 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002239 }
2240
Willy Tarreau9c218e72019-05-26 10:08:28 +02002241 memcpy(str,
2242 "\x00\x00\x00" /* length : 0 (no data) */
2243 "\x04" "\x01" /* type : 4, flags : ACK */
2244 "\x00\x00\x00\x00" /* stream ID */, 9);
2245
Willy Tarreaubcc45952019-05-26 10:05:50 +02002246 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002247 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002248 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002249 h2c->flags |= H2_CF_MUX_MALLOC;
2250 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002251 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002252 }
2253
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002254 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002255 if (unlikely(ret <= 0)) {
2256 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002257 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2258 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002259 h2c->flags |= H2_CF_MUX_MFULL;
2260 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002261 }
2262 else {
2263 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002264 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002265 }
2266 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002267 out:
2268 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002269 return ret;
2270}
2271
Willy Tarreaucf68c782017-10-10 17:11:41 +02002272/* processes a PING frame and schedules an ACK if needed. The caller must pass
2273 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002274 * missing data. The caller must have already verified frame length
2275 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002276 */
2277static int h2c_handle_ping(struct h2c *h2c)
2278{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002279 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002280 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002281 h2c->st0 = H2_CS_FRAME_A;
2282 return 1;
2283}
2284
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002285/* Try to send a window update for stream id <sid> and value <increment>.
2286 * Returns > 0 on success or zero on missing room or failure. It may return an
2287 * error in h2c.
2288 */
2289static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2290{
2291 struct buffer *res;
2292 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002293 int ret = 0;
2294
2295 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002296
2297 if (h2c_mux_busy(h2c, NULL)) {
2298 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002299 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002300 }
2301
Willy Tarreau9c218e72019-05-26 10:08:28 +02002302 /* length: 4, type: 8, flags: none */
2303 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2304 write_n32(str + 5, sid);
2305 write_n32(str + 9, increment);
2306
Willy Tarreaubcc45952019-05-26 10:05:50 +02002307 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002308 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002309 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002310 h2c->flags |= H2_CF_MUX_MALLOC;
2311 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002312 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002313 }
2314
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002315 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002316 if (unlikely(ret <= 0)) {
2317 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002318 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2319 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002320 h2c->flags |= H2_CF_MUX_MFULL;
2321 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002322 }
2323 else {
2324 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002325 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002326 }
2327 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002328 out:
2329 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002330 return ret;
2331}
2332
2333/* try to send pending window update for the connection. It's safe to call it
2334 * with no pending updates. Returns > 0 on success or zero on missing room or
2335 * failure. It may return an error in h2c.
2336 */
2337static int h2c_send_conn_wu(struct h2c *h2c)
2338{
2339 int ret = 1;
2340
Willy Tarreau7838a792019-08-12 18:42:03 +02002341 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2342
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002343 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002344 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002345
Willy Tarreau97aaa672018-12-23 09:49:04 +01002346 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2347 /* increase the advertised connection window to 2G on
2348 * first update.
2349 */
2350 h2c->flags |= H2_CF_WINDOW_OPENED;
2351 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2352 }
2353
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002354 /* send WU for the connection */
2355 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2356 if (ret > 0)
2357 h2c->rcvd_c = 0;
2358
Willy Tarreau7838a792019-08-12 18:42:03 +02002359 out:
2360 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002361 return ret;
2362}
2363
2364/* try to send pending window update for the current dmux stream. It's safe to
2365 * call it with no pending updates. Returns > 0 on success or zero on missing
2366 * room or failure. It may return an error in h2c.
2367 */
2368static int h2c_send_strm_wu(struct h2c *h2c)
2369{
2370 int ret = 1;
2371
Willy Tarreau7838a792019-08-12 18:42:03 +02002372 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2373
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002374 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002375 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002376
2377 /* send WU for the stream */
2378 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2379 if (ret > 0)
2380 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002381 out:
2382 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002383 return ret;
2384}
2385
Willy Tarreaucf68c782017-10-10 17:11:41 +02002386/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2387 * success, 0 on missing data or one of the h2_status values.
2388 */
2389static int h2c_ack_ping(struct h2c *h2c)
2390{
2391 struct buffer *res;
2392 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002393 int ret = 0;
2394
2395 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002396
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002397 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002398 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002399
2400 if (h2c_mux_busy(h2c, NULL)) {
2401 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002402 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002403 }
2404
Willy Tarreaucf68c782017-10-10 17:11:41 +02002405 memcpy(str,
2406 "\x00\x00\x08" /* length : 8 (same payload) */
2407 "\x06" "\x01" /* type : 6, flags : ACK */
2408 "\x00\x00\x00\x00" /* stream ID */, 9);
2409
2410 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002411 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002412
Willy Tarreau9c218e72019-05-26 10:08:28 +02002413 res = br_tail(h2c->mbuf);
2414 retry:
2415 if (!h2_get_buf(h2c, res)) {
2416 h2c->flags |= H2_CF_MUX_MALLOC;
2417 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002418 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002419 }
2420
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002421 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002422 if (unlikely(ret <= 0)) {
2423 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002424 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2425 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002426 h2c->flags |= H2_CF_MUX_MFULL;
2427 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002428 }
2429 else {
2430 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002431 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002432 }
2433 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002434 out:
2435 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002436 return ret;
2437}
2438
Willy Tarreau26f95952017-07-27 17:18:30 +02002439/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2440 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002441 * h2c or h2s. The caller must have already verified frame length and stream ID
2442 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002443 */
2444static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2445{
2446 int32_t inc;
2447 int error;
2448
Willy Tarreau7838a792019-08-12 18:42:03 +02002449 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2450
Willy Tarreau26f95952017-07-27 17:18:30 +02002451 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002452 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002453 goto out0;
Willy Tarreau26f95952017-07-27 17:18:30 +02002454
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002455 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002456
2457 if (h2c->dsi != 0) {
2458 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002459
2460 /* it's not an error to receive WU on a closed stream */
2461 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002462 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002463
2464 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002465 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 +02002466 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002467 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau26f95952017-07-27 17:18:30 +02002468 goto strm_err;
2469 }
2470
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002471 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002472 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 +02002473 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreaua3075282020-12-01 10:22:43 +01002474 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau26f95952017-07-27 17:18:30 +02002475 goto strm_err;
2476 }
2477
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002478 h2s->sws += inc;
2479 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002480 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002481 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002482 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2483 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Olivier Houcharddddfe312018-10-10 18:51:00 +02002484 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002485 }
2486 }
2487 else {
2488 /* connection window update */
2489 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002490 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002491 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002492 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau26f95952017-07-27 17:18:30 +02002493 goto conn_err;
2494 }
2495
2496 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2497 error = H2_ERR_FLOW_CONTROL_ERROR;
2498 goto conn_err;
2499 }
2500
2501 h2c->mws += inc;
2502 }
2503
Willy Tarreau7838a792019-08-12 18:42:03 +02002504 done:
2505 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002506 return 1;
2507
2508 conn_err:
2509 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002510 out0:
2511 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 +02002512 return 0;
2513
2514 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002515 h2s_error(h2s, error);
2516 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002517 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002518 return 0;
2519}
2520
Willy Tarreaue96b0922017-10-30 00:28:29 +01002521/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002522 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2523 * have already verified frame length and stream ID validity. Described in
2524 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002525 */
2526static int h2c_handle_goaway(struct h2c *h2c)
2527{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002528 int last;
2529
Willy Tarreau7838a792019-08-12 18:42:03 +02002530 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002531 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002532 if (b_data(&h2c->dbuf) < h2c->dfl) {
2533 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002534 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002535 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002536
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002537 last = h2_get_n32(&h2c->dbuf, 0);
2538 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002539 if (h2c->last_sid < 0)
2540 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002541 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002542 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002543 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002544}
2545
Willy Tarreau92153fc2017-12-03 19:46:19 +01002546/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002547 * invalid. Returns > 0 on success or zero on missing data. It may return an
2548 * error in h2c. The caller must have already verified frame length and stream
2549 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002550 */
2551static int h2c_handle_priority(struct h2c *h2c)
2552{
Willy Tarreau7838a792019-08-12 18:42:03 +02002553 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2554
Willy Tarreau92153fc2017-12-03 19:46:19 +01002555 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002556 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002557 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002558 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002559 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002560
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002561 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002562 /* 7540#5.3 : can't depend on itself */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002563 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002564 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua3075282020-12-01 10:22:43 +01002565 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02002566 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002567 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002568 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002569 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002570 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002571}
2572
Willy Tarreaucd234e92017-08-18 10:59:39 +02002573/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002574 * Returns > 0 on success or zero on missing data. The caller must have already
2575 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002576 */
2577static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2578{
Willy Tarreau7838a792019-08-12 18:42:03 +02002579 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2580
Willy Tarreaucd234e92017-08-18 10:59:39 +02002581 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002582 if (b_data(&h2c->dbuf) < h2c->dfl) {
2583 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 +02002584 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002585 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002586
2587 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002588 if (h2s->st == H2_SS_CLOSED) {
2589 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 +02002590 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002591 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002592
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002593 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002594 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002595
2596 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01002597 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01002598 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002599 }
2600
2601 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002602 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002603 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002604}
2605
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002606/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2607 * It may return an error in h2c or h2s. The caller must consider that the
2608 * return value is the new h2s in case one was allocated (most common case).
2609 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002610 * errors here are reported as connection errors since it's impossible to
2611 * recover from such errors after the compression context has been altered.
2612 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002613static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002614{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002615 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002616 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002617 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002618 int error;
2619
Willy Tarreau7838a792019-08-12 18:42:03 +02002620 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2621
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002622 if (!b_size(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002623 goto out; // empty buffer
Willy Tarreau13278b42017-10-13 19:23:14 +02002624
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002625 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002626 goto out; // incomplete frame
Willy Tarreau13278b42017-10-13 19:23:14 +02002627
2628 /* now either the frame is complete or the buffer is complete */
2629 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002630 /* The stream exists/existed, this must be a trailers frame */
2631 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002632 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len, NULL);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002633 /* unrecoverable error ? */
2634 if (h2c->st0 >= H2_CS_ERROR)
2635 goto out;
2636
2637 if (error == 0)
2638 goto out; // missing data
2639
2640 if (error < 0) {
2641 /* Failed to decode this frame (e.g. too large request)
2642 * but the HPACK decompressor is still synchronized.
2643 */
2644 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2645 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002646 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002647 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002648 goto done;
2649 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002650 /* the connection was already killed by an RST, let's consume
2651 * the data and send another RST.
2652 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002653 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau1f035502019-01-30 11:44:07 +01002654 h2s = (struct h2s*)h2_error_stream;
2655 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002656 }
2657 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2658 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2659 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002660 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Amaury Denoyellea8879232020-10-27 17:16:03 +01002661 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002662 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002663 goto conn_err;
2664 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002665 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2666 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002667
Amaury Denoyelle74162742020-12-11 17:53:05 +01002668 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002669
Willy Tarreau25919232019-01-03 14:48:18 +01002670 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002671 if (h2c->st0 >= H2_CS_ERROR)
2672 goto out;
2673
Willy Tarreau25919232019-01-03 14:48:18 +01002674 if (error <= 0) {
2675 if (error == 0)
2676 goto out; // missing data
2677
2678 /* Failed to decode this stream (e.g. too large request)
2679 * but the HPACK decompressor is still synchronized.
2680 */
2681 h2s = (struct h2s*)h2_error_stream;
2682 goto send_rst;
2683 }
2684
Willy Tarreau22de8d32018-09-05 19:55:58 +02002685 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002686 * positively from h2c_frt_stream_new(), the stream will report the error,
2687 * and if we return in error, h2c_frt_stream_new() will emit the error.
Christopher Faulet7d013e72020-12-15 16:56:50 +01002688 *
2689 * Xfer the rxbuf to the stream. On success, the new stream owns the
2690 * rxbuf. On error, it is released here.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002691 */
Christopher Faulet7d013e72020-12-15 16:56:50 +01002692 h2s = h2c_frt_stream_new(h2c, h2c->dsi, &rxbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02002693 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002694 h2s = (struct h2s*)h2_refused_stream;
2695 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002696 }
2697
2698 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002699 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002700 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002701
Willy Tarreau88d138e2019-01-02 19:38:14 +01002702 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002703 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002704 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002705
2706 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002707 if (h2s->st == H2_SS_OPEN)
2708 h2s->st = H2_SS_HREM;
2709 else
2710 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002711 }
2712
Willy Tarreau3a429f02019-01-03 11:41:50 +01002713 /* update the max stream ID if the request is being processed */
2714 if (h2s->id > h2c->max_id)
2715 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002716
Willy Tarreau022e5e52020-09-10 09:33:15 +02002717 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn, 0, &rxbuf);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002718 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002719
2720 conn_err:
2721 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002722 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002723
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002724 out:
2725 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002726 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 +01002727 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002728
2729 send_rst:
2730 /* make the demux send an RST for the current stream. We may only
2731 * do this if we're certain that the HEADERS frame was properly
2732 * decompressed so that the HPACK decoder is still kept up to date.
2733 */
2734 h2_release_buf(h2c, &rxbuf);
2735 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002736
Willy Tarreau022e5e52020-09-10 09:33:15 +02002737 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 +02002738 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002739 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002740}
2741
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002742/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2743 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2744 * errors here are reported as connection errors since it's impossible to
2745 * recover from such errors after the compression context has been altered.
2746 */
2747static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2748{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002749 struct buffer rxbuf = BUF_NULL;
2750 unsigned long long body_len = 0;
2751 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002752 int error;
2753
Willy Tarreau7838a792019-08-12 18:42:03 +02002754 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2755
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002756 if (!b_size(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002757 goto fail; // empty buffer
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002758
2759 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002760 goto fail; // incomplete frame
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002761
Christopher Faulet6884aa32019-09-23 15:28:20 +02002762 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002763 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len, h2s->upgrade_protocol);
Christopher Faulet6884aa32019-09-23 15:28:20 +02002764 }
2765 else {
2766 /* the connection was already killed by an RST, let's consume
2767 * the data and send another RST.
2768 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002769 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002770 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002771 h2c->st0 = H2_CS_FRAME_E;
2772 goto send_rst;
2773 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002774
Willy Tarreau25919232019-01-03 14:48:18 +01002775 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002776 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002777 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002778
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002779 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2780 /* RFC7540#5.1 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002781 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 +01002782 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2783 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreaua3075282020-12-01 10:22:43 +01002784 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02002785 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002786 }
2787
Willy Tarreau25919232019-01-03 14:48:18 +01002788 if (error <= 0) {
2789 if (error == 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002790 goto fail; // missing data
Willy Tarreau25919232019-01-03 14:48:18 +01002791
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002792 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002793 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 +01002794 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002795 h2c->st0 = H2_CS_FRAME_E;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002796 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02002797 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002798 }
2799
Christopher Fauletfa922f02019-05-07 10:55:17 +02002800 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002801 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002802
Willy Tarreau927b88b2019-03-04 08:03:25 +01002803 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002804 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002805 else if (h2s->flags & H2_SF_ES_RCVD) {
2806 if (h2s->st == H2_SS_OPEN)
2807 h2s->st = H2_SS_HREM;
2808 else if (h2s->st == H2_SS_HLOC)
2809 h2s_close(h2s);
2810 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002811
Christopher Fauletf95f8762021-01-22 11:59:07 +01002812 /* Unblock busy server h2s waiting for the response headers to validate
2813 * the tunnel establishment or the end of the response of an oborted
2814 * tunnel
2815 */
2816 if ((h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY)) == (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY) ||
2817 (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)) {
2818 TRACE_STATE("Unblock h2s blocked on tunnel establishment/abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2819 h2s->flags &= ~H2_SF_BLK_MBUSY;
2820 }
2821
Willy Tarreau022e5e52020-09-10 09:33:15 +02002822 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 +02002823 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002824 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002825 fail:
2826 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2827 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002828
2829 send_rst:
2830 /* make the demux send an RST for the current stream. We may only
2831 * do this if we're certain that the HEADERS frame was properly
2832 * decompressed so that the HPACK decoder is still kept up to date.
2833 */
2834 h2_release_buf(h2c, &rxbuf);
2835 h2c->st0 = H2_CS_FRAME_E;
2836
Willy Tarreau022e5e52020-09-10 09:33:15 +02002837 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 +02002838 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2839 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002840}
2841
Willy Tarreau454f9052017-10-26 19:40:35 +02002842/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2843 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2844 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01002845static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02002846{
2847 int error;
2848
Willy Tarreau7838a792019-08-12 18:42:03 +02002849 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2850
Willy Tarreau454f9052017-10-26 19:40:35 +02002851 /* note that empty DATA frames are perfectly valid and sometimes used
2852 * to signal an end of stream (with the ES flag).
2853 */
2854
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002855 if (!b_size(&h2c->dbuf) && h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002856 goto fail; // empty buffer
Willy Tarreau454f9052017-10-26 19:40:35 +02002857
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002858 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002859 goto fail; // incomplete frame
Willy Tarreau454f9052017-10-26 19:40:35 +02002860
2861 /* now either the frame is complete or the buffer is complete */
2862
Willy Tarreau454f9052017-10-26 19:40:35 +02002863 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2864 /* RFC7540#6.1 */
2865 error = H2_ERR_STREAM_CLOSED;
2866 goto strm_err;
2867 }
2868
Christopher Faulet4f09ec82019-06-19 09:25:58 +02002869 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002870 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002871 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 +01002872 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002873 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002874 goto strm_err;
2875 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002876 if (!(h2c->flags & H2_CF_IS_BACK) &&
2877 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT) &&
2878 ((h2c->dfl - h2c->dpl) || !(h2c->dff & H2_F_DATA_END_STREAM))) {
2879 /* a tunnel attempt was aborted but the client still try to send some raw data.
2880 * Thus the stream is closed with the CANCEL error. Here we take care it is not
2881 * an empty DATA Frame with the ES flag. The error is only handled if ES was
2882 * already sent to the client because depending on the scheduling, these data may
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002883 * have been sent before the server response but not handle here.
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002884 */
2885 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2886 error = H2_ERR_CANCEL;
2887 goto strm_err;
2888 }
Willy Tarreau1915ca22019-01-24 11:49:37 +01002889
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002890 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02002891 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002892
Willy Tarreau454f9052017-10-26 19:40:35 +02002893 /* call the upper layers to process the frame, then let the upper layer
2894 * notify the stream about any change.
2895 */
2896 if (!h2s->cs) {
Willy Tarreau082c4572019-08-06 10:11:02 +02002897 /* The upper layer has already closed, this may happen on
2898 * 4xx/redirects during POST, or when receiving a response
2899 * from an H2 server after the client has aborted.
2900 */
2901 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002902 goto strm_err;
2903 }
2904
Willy Tarreau8f650c32017-11-21 19:36:21 +01002905 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002906 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01002907
Willy Tarreau721c9742017-11-07 11:05:42 +01002908 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002909 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002910 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002911 }
2912
2913 /* check for completion : the callee will change this to FRAME_A or
2914 * FRAME_H once done.
2915 */
2916 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02002917 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02002918
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002919 /* last frame */
2920 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002921 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002922 if (h2s->st == H2_SS_OPEN)
2923 h2s->st = H2_SS_HREM;
2924 else
2925 h2s_close(h2s);
2926
Willy Tarreau1915ca22019-01-24 11:49:37 +01002927 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
2928 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002929 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 +01002930 error = H2_ERR_PROTOCOL_ERROR;
Amaury Denoyellea8879232020-10-27 17:16:03 +01002931 HA_ATOMIC_ADD(&h2c->px_counters->strm_proto_err, 1);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002932 goto strm_err;
2933 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002934 }
2935
Christopher Fauletf95f8762021-01-22 11:59:07 +01002936 /* Unblock busy server h2s waiting for the end of the response for an
2937 * aborted tunnel
2938 */
2939 if ((h2c->flags & H2_CF_IS_BACK) &&
2940 (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)) {
2941 TRACE_STATE("Unblock h2s blocked on tunnel abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2942 h2s->flags &= ~H2_SF_BLK_MBUSY;
2943 }
2944
Willy Tarreau7838a792019-08-12 18:42:03 +02002945 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02002946 return 1;
2947
Willy Tarreau454f9052017-10-26 19:40:35 +02002948 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002949 h2s_error(h2s, error);
2950 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002951 fail:
2952 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 +02002953 return 0;
2954}
2955
Willy Tarreau63864812019-08-07 14:25:20 +02002956/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
2957 * valid for the current stream state. This is needed only after parsing the
2958 * frame header but in practice it can be performed at any time during
2959 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
2960 * or 0 in case of error, in which case either h2s or h2c will carry an error.
2961 */
2962static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
2963{
Willy Tarreau7838a792019-08-12 18:42:03 +02002964 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
2965
Willy Tarreau63864812019-08-07 14:25:20 +02002966 if (h2s->st == H2_SS_IDLE &&
2967 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
2968 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
2969 * this state MUST be treated as a connection error
2970 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002971 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 +02002972 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002973 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02002974 /* only log if no other stream can report the error */
2975 sess_log(h2c->conn->owner);
2976 }
Willy Tarreaua3075282020-12-01 10:22:43 +01002977 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02002978 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 +02002979 return 0;
2980 }
2981
Willy Tarreau57a18162019-11-24 14:57:53 +01002982 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
2983 /* only PUSH_PROMISE would be permitted here */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002984 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 +01002985 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua3075282020-12-01 10:22:43 +01002986 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau57a18162019-11-24 14:57:53 +01002987 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
2988 return 0;
2989 }
2990
Willy Tarreau63864812019-08-07 14:25:20 +02002991 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
2992 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
2993 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
2994 * this state MUST be treated as a stream error.
2995 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
2996 * PUSH_PROMISE/CONTINUATION cause connection errors.
2997 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01002998 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002999 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 +02003000 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua3075282020-12-01 10:22:43 +01003001 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003002 }
3003 else {
Willy Tarreau63864812019-08-07 14:25:20 +02003004 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003005 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003006 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 +02003007 return 0;
3008 }
3009
3010 /* Below the management of frames received in closed state is a
3011 * bit hackish because the spec makes strong differences between
3012 * streams closed by receiving RST, sending RST, and seeing ES
3013 * in both directions. In addition to this, the creation of a
3014 * new stream reusing the identifier of a closed one will be
3015 * detected here. Given that we cannot keep track of all closed
3016 * streams forever, we consider that unknown closed streams were
3017 * closed on RST received, which allows us to respond with an
3018 * RST without breaking the connection (eg: to abort a transfer).
3019 * Some frames have to be silently ignored as well.
3020 */
3021 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
3022 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
3023 /* #5.1.1: The identifier of a newly
3024 * established stream MUST be numerically
3025 * greater than all streams that the initiating
3026 * endpoint has opened or reserved. This
3027 * governs streams that are opened using a
3028 * HEADERS frame and streams that are reserved
3029 * using PUSH_PROMISE. An endpoint that
3030 * receives an unexpected stream identifier
3031 * MUST respond with a connection error.
3032 */
3033 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003034 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 +02003035 return 0;
3036 }
3037
Willy Tarreau4c08f122019-09-26 08:47:15 +02003038 if (h2s->flags & H2_SF_RST_RCVD &&
3039 !(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 +02003040 /* RFC7540#5.1:closed: an endpoint that
3041 * receives any frame other than PRIORITY after
3042 * receiving a RST_STREAM MUST treat that as a
3043 * stream error of type STREAM_CLOSED.
3044 *
3045 * Note that old streams fall into this category
3046 * and will lead to an RST being sent.
3047 *
3048 * However, we cannot generalize this to all frame types. Those
3049 * carrying compression state must still be processed before
3050 * being dropped or we'll desynchronize the decoder. This can
3051 * happen with request trailers received after sending an
3052 * RST_STREAM, or with header/trailers responses received after
3053 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02003054 *
3055 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003056 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003057 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003058 */
3059 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3060 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003061 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 +02003062 return 0;
3063 }
3064
3065 /* RFC7540#5.1:closed: if this state is reached as a
3066 * result of sending a RST_STREAM frame, the peer that
3067 * receives the RST_STREAM might have already sent
3068 * frames on the stream that cannot be withdrawn. An
3069 * endpoint MUST ignore frames that it receives on
3070 * closed streams after it has sent a RST_STREAM
3071 * frame. An endpoint MAY choose to limit the period
3072 * over which it ignores frames and treat frames that
3073 * arrive after this time as being in error.
3074 */
3075 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3076 /* RFC7540#5.1:closed: any frame other than
3077 * PRIO/WU/RST in this state MUST be treated as
3078 * a connection error
3079 */
3080 if (h2c->dft != H2_FT_RST_STREAM &&
3081 h2c->dft != H2_FT_PRIORITY &&
3082 h2c->dft != H2_FT_WINDOW_UPDATE) {
3083 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003084 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 +02003085 return 0;
3086 }
3087 }
3088 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003089 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003090 return 1;
3091}
3092
Willy Tarreaubc933932017-10-09 16:21:43 +02003093/* process Rx frames to be demultiplexed */
3094static void h2_process_demux(struct h2c *h2c)
3095{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003096 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003097 struct h2_fh hdr;
3098 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003099 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003100
Willy Tarreau7838a792019-08-12 18:42:03 +02003101 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3102
Willy Tarreau081d4722017-05-16 21:51:05 +02003103 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003104 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003105
3106 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3107 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003108 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003109 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003110 goto out;
3111
Willy Tarreau52eed752017-09-22 15:05:09 +02003112 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3113 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003114 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003115 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003116 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003117 sess_log(h2c->conn->owner);
3118 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003119 goto fail;
3120 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003121 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003122
3123 h2c->max_id = 0;
3124 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003125 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003126 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003127
3128 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003129 /* ensure that what is pending is a valid SETTINGS frame
3130 * without an ACK.
3131 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003132 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 +02003133 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003134 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003135 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003136 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 +02003137 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003138 if (!(h2c->flags & H2_CF_IS_BACK))
3139 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003140 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003141 goto fail;
3142 }
3143
3144 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3145 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003146 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 +02003147 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3148 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003149 if (!(h2c->flags & H2_CF_IS_BACK))
3150 sess_log(h2c->conn->owner);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003151 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003152 goto fail;
3153 }
3154
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003155 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003156 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003157 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 +02003158 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3159 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003160 if (!(h2c->flags & H2_CF_IS_BACK))
3161 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003162 goto fail;
3163 }
3164
Willy Tarreau3bf69182018-12-21 15:34:50 +01003165 /* that's OK, switch to FRAME_P to process it. This is
3166 * a SETTINGS frame whose header has already been
3167 * deleted above.
3168 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003169 padlen = 0;
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003170 HA_ATOMIC_ADD(&h2c->px_counters->settings_rcvd, 1);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003171 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003172 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003173 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003174
3175 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003176 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003177 int ret = 0;
3178
Willy Tarreau7838a792019-08-12 18:42:03 +02003179 if (!b_data(&h2c->dbuf)) {
3180 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
Willy Tarreau133aaa92021-02-05 12:16:01 +01003181 goto dbuf_empty;
Willy Tarreau7838a792019-08-12 18:42:03 +02003182 }
3183
3184 if (h2c->st0 >= H2_CS_ERROR) {
3185 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003186 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003187 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003188
3189 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau30d05f32019-08-06 15:49:51 +02003190 h2c->rcvd_s = 0;
3191
Willy Tarreau7838a792019-08-12 18:42:03 +02003192 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Willy Tarreaua4428bd2018-12-22 18:11:41 +01003193 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr))
Willy Tarreau7e98c052017-10-10 15:56:59 +02003194 break;
3195
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003196 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003197 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 +02003198 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003199 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003200 /* only log if no other stream can report the error */
3201 sess_log(h2c->conn->owner);
3202 }
Willy Tarreaua3075282020-12-01 10:22:43 +01003203 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003204 break;
3205 }
3206
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003207 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003208 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3209 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3210 * we read the pad length and drop it from the remaining
3211 * payload (one byte + the 9 remaining ones = 10 total
3212 * removed), so we have a frame payload starting after the
3213 * pad len. Flow controlled frames (DATA) also count the
3214 * padlen in the flow control, so it must be adjusted.
3215 */
3216 if (hdr.len < 1) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003217 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 +01003218 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003219 if (!(h2c->flags & H2_CF_IS_BACK))
3220 sess_log(h2c->conn->owner);
Willy Tarreaua3075282020-12-01 10:22:43 +01003221 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau3bf69182018-12-21 15:34:50 +01003222 goto fail;
3223 }
3224 hdr.len--;
3225
3226 if (b_data(&h2c->dbuf) < 10)
3227 break; // missing padlen
3228
3229 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3230
3231 if (padlen > hdr.len) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003232 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 +01003233 /* RFC7540#6.1 : pad length = length of
3234 * frame payload or greater => error.
3235 */
3236 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003237 if (!(h2c->flags & H2_CF_IS_BACK))
3238 sess_log(h2c->conn->owner);
Willy Tarreaua3075282020-12-01 10:22:43 +01003239 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau3bf69182018-12-21 15:34:50 +01003240 goto fail;
3241 }
3242
3243 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3244 h2c->rcvd_c++;
3245 h2c->rcvd_s++;
3246 }
3247 b_del(&h2c->dbuf, 1);
3248 }
3249 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003250
3251 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003252 h2c->dfl = hdr.len;
3253 h2c->dsi = hdr.sid;
3254 h2c->dft = hdr.ft;
3255 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003256 h2c->dpl = padlen;
Willy Tarreau73db4342019-09-25 07:28:44 +02003257 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 +02003258 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003259
3260 /* check for minimum basic frame format validity */
3261 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3262 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003263 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 +01003264 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003265 if (!(h2c->flags & H2_CF_IS_BACK))
3266 sess_log(h2c->conn->owner);
Willy Tarreaua3075282020-12-01 10:22:43 +01003267 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003268 goto fail;
3269 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003270 }
3271
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003272 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3273 * H2_CS_FRAME_P indicates an incomplete previous operation
3274 * (most often the first attempt) and requires some validity
3275 * checks for the frame and the current state. The two other
3276 * ones are set after completion (or abortion) and must skip
3277 * validity checks.
3278 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003279 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3280
Willy Tarreau567beb82018-12-18 16:52:44 +01003281 if (tmp_h2s != h2s && h2s && h2s->cs &&
3282 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003283 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003284 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003285 (h2s->flags & H2_SF_ES_RCVD) ||
3286 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003287 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003288 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 +01003289 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003290 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003291 }
3292 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003293
Willy Tarreau63864812019-08-07 14:25:20 +02003294 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003295 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3296 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003297 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003298 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003299
Willy Tarreau7e98c052017-10-10 15:56:59 +02003300 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003301 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003302 if (h2c->st0 == H2_CS_FRAME_P) {
3303 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003304 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003305 }
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003306 HA_ATOMIC_ADD(&h2c->px_counters->settings_rcvd, 1);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003307
Willy Tarreau7838a792019-08-12 18:42:03 +02003308 if (h2c->st0 == H2_CS_FRAME_A) {
3309 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 +02003310 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003311 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003312 break;
3313
Willy Tarreaucf68c782017-10-10 17:11:41 +02003314 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003315 if (h2c->st0 == H2_CS_FRAME_P) {
3316 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003317 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003318 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003319
Willy Tarreau7838a792019-08-12 18:42:03 +02003320 if (h2c->st0 == H2_CS_FRAME_A) {
3321 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 +02003322 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003323 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003324 break;
3325
Willy Tarreau26f95952017-07-27 17:18:30 +02003326 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003327 if (h2c->st0 == H2_CS_FRAME_P) {
3328 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 +02003329 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003330 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003331 break;
3332
Willy Tarreau61290ec2017-10-17 08:19:21 +02003333 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003334 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003335 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3336 * frames' parsers consume all following CONTINUATION
3337 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003338 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003339 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 +01003340 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003341 if (!(h2c->flags & H2_CF_IS_BACK))
3342 sess_log(h2c->conn->owner);
Willy Tarreaua3075282020-12-01 10:22:43 +01003343 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreauea18f862018-12-22 20:19:26 +01003344 goto fail;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003345
Willy Tarreau13278b42017-10-13 19:23:14 +02003346 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003347 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003348 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003349 if (h2c->flags & H2_CF_IS_BACK)
3350 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3351 else
3352 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003353 if (tmp_h2s) {
3354 h2s = tmp_h2s;
3355 ret = 1;
3356 }
3357 }
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003358 HA_ATOMIC_ADD(&h2c->px_counters->headers_rcvd, 1);
Willy Tarreau13278b42017-10-13 19:23:14 +02003359 break;
3360
Willy Tarreau454f9052017-10-26 19:40:35 +02003361 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003362 if (h2c->st0 == H2_CS_FRAME_P) {
3363 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003364 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003365 }
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003366 HA_ATOMIC_ADD(&h2c->px_counters->data_rcvd, 1);
Willy Tarreau454f9052017-10-26 19:40:35 +02003367
Willy Tarreau7838a792019-08-12 18:42:03 +02003368 if (h2c->st0 == H2_CS_FRAME_A) {
3369 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 +02003370 ret = h2c_send_strm_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003371 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003372 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003373
Willy Tarreau92153fc2017-12-03 19:46:19 +01003374 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003375 if (h2c->st0 == H2_CS_FRAME_P) {
3376 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003377 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003378 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003379 break;
3380
Willy Tarreaucd234e92017-08-18 10:59:39 +02003381 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003382 if (h2c->st0 == H2_CS_FRAME_P) {
3383 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 +02003384 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003385 }
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003386 HA_ATOMIC_ADD(&h2c->px_counters->rst_stream_rcvd, 1);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003387 break;
3388
Willy Tarreaue96b0922017-10-30 00:28:29 +01003389 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003390 if (h2c->st0 == H2_CS_FRAME_P) {
3391 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003392 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003393 }
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +01003394 HA_ATOMIC_ADD(&h2c->px_counters->goaway_rcvd, 1);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003395 break;
3396
Willy Tarreau1c661982017-10-30 13:52:01 +01003397 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003398 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003399 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003400 /* drop frames that we ignore. They may be larger than
3401 * the buffer so we drain all of their contents until
3402 * we reach the end.
3403 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003404 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3405 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003406 h2c->dfl -= ret;
3407 ret = h2c->dfl == 0;
3408 }
3409
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003410 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003411 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003412 if (h2s->st == H2_SS_ERROR) {
3413 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 +01003414 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003415 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003416
Willy Tarreau7838a792019-08-12 18:42:03 +02003417 if (h2c->st0 == H2_CS_FRAME_E) {
3418 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 +01003419 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003420 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003421
Willy Tarreau133aaa92021-02-05 12:16:01 +01003422 dbuf_empty:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003423 /* error or missing data condition met above ? */
Willy Tarreau7838a792019-08-12 18:42:03 +02003424 if (ret <= 0) {
3425 TRACE_DEVEL("insufficient data to proceed", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003426 if (h2c->flags & H2_CF_RCVD_SHUT)
3427 h2c->flags |= H2_CF_END_REACHED;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003428 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003429 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003430
3431 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003432 if (h2c->dfl)
3433 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003434 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3435 b_del(&h2c->dbuf, ret);
3436 h2c->dfl -= ret;
3437 if (!h2c->dfl) {
3438 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3439 h2c->st0 = H2_CS_FRAME_H;
3440 h2c->dsi = -1;
3441 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003442 }
3443 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003444
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003445 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003446 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3447 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003448 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003449 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003450
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003451 done:
Willy Tarreau567beb82018-12-18 16:52:44 +01003452 if (h2s && h2s->cs &&
3453 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003454 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003455 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003456 (h2s->flags & H2_SF_ES_RCVD) ||
3457 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003458 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003459 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 +01003460 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003461 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003462 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003463
Willy Tarreau7838a792019-08-12 18:42:03 +02003464 if (old_iw != h2c->miw) {
3465 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003466 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003467 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003468
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003469 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003470 out:
3471 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003472 return;
3473
3474 fail:
3475 /* we can go here on missing data, blocked response or error, but we
3476 * need to check if we've met a short read condition.
3477 */
3478 if (h2c->flags & H2_CF_RCVD_SHUT)
3479 h2c->flags |= H2_CF_END_REACHED;
3480 goto done;
Willy Tarreaubc933932017-10-09 16:21:43 +02003481}
3482
Willy Tarreau989539b2020-01-10 17:01:29 +01003483/* resume each h2s eligible for sending in list head <head> */
3484static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3485{
3486 struct h2s *h2s, *h2s_back;
3487
3488 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3489
3490 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3491 if (h2c->mws <= 0 ||
3492 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3493 h2c->st0 >= H2_CS_ERROR)
3494 break;
3495
3496 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003497
Willy Tarreaud9464162020-01-10 18:25:07 +01003498 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003499 continue;
3500
Willy Tarreau5723f292020-01-10 15:16:57 +01003501 /* If the sender changed his mind and unsubscribed, let's just
3502 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003503 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003504 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3505 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003506 LIST_DEL_INIT(&h2s->list);
3507 continue;
3508 }
3509
Willy Tarreauf96508a2020-01-10 11:12:48 +01003510 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003511 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003512 tasklet_wakeup(h2s->subs->tasklet);
3513 h2s->subs->events &= ~SUB_RETRY_SEND;
3514 if (!h2s->subs->events)
3515 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003516 }
3517 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3518 tasklet_wakeup(h2s->shut_tl);
3519 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003520 }
3521
3522 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3523}
3524
Willy Tarreaubc933932017-10-09 16:21:43 +02003525/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3526 * the end.
3527 */
3528static int h2_process_mux(struct h2c *h2c)
3529{
Willy Tarreau7838a792019-08-12 18:42:03 +02003530 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3531
Willy Tarreau01b44822018-10-03 14:26:37 +02003532 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3533 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3534 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3535 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003536 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003537 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003538 goto fail;
3539 }
3540 h2c->st0 = H2_CS_SETTINGS1;
3541 }
3542 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003543 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003544 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003545 }
3546
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003547 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003548 if (h2c->rcvd_s > 0 &&
3549 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3550 h2c_send_strm_wu(h2c) < 0)
3551 goto fail;
3552
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003553 if (h2c->rcvd_c > 0 &&
3554 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3555 h2c_send_conn_wu(h2c) < 0)
3556 goto fail;
3557
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003558 /* First we always process the flow control list because the streams
3559 * waiting there were already elected for immediate emission but were
3560 * blocked just on this.
3561 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003562 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3563 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003564
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003565 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003566 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003567 if (h2c->st0 == H2_CS_ERROR) {
3568 if (h2c->max_id >= 0) {
3569 h2c_send_goaway_error(h2c, NULL);
3570 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003571 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003572 }
3573
3574 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3575 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003576 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003577 done:
3578 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3579 return 1;
3580 out0:
3581 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3582 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003583}
3584
Willy Tarreau62f52692017-10-08 23:01:42 +02003585
Willy Tarreau479998a2018-11-18 06:30:59 +01003586/* Attempt to read data, and subscribe if none available.
3587 * The function returns 1 if data has been received, otherwise zero.
3588 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003589static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003590{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003591 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003592 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003593 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003594 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003595
Willy Tarreau7838a792019-08-12 18:42:03 +02003596 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3597
3598 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3599 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003600 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003601 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003602
Willy Tarreau7838a792019-08-12 18:42:03 +02003603 if (!h2_recv_allowed(h2c)) {
3604 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003605 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003606 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003607
Willy Tarreau44e973f2018-03-01 17:49:30 +01003608 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003609 if (!buf) {
3610 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003611 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003612 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003613 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003614
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003615 if (h2c->flags & H2_CF_RCVD_SHUT) {
3616 TRACE_DEVEL("leaving on rcvd_shut", H2_EV_H2C_RECV, h2c->conn);
3617 return 0;
3618 }
3619
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003620 if (!b_data(buf)) {
3621 /* try to pre-align the buffer like the
3622 * rxbufs will be to optimize memory copies. We'll make
3623 * sure that the frame header lands at the end of the
3624 * HTX block to alias it upon recv. We cannot use the
3625 * head because rcv_buf() will realign the buffer if
3626 * it's empty. Thus we cheat and pretend we already
3627 * have a few bytes there.
3628 */
3629 max = buf_room_for_htx_data(buf) + 9;
3630 buf->head = sizeof(struct htx) - 9;
3631 }
3632 else
3633 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003634
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003635 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003636
Willy Tarreauf0961222021-02-05 11:41:46 +01003637 if (max && !ret) {
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003638 if (conn_xprt_read0_pending(h2c->conn)) {
3639 TRACE_DATA("received read0", H2_EV_H2C_RECV, h2c->conn);
3640 h2c->flags |= H2_CF_RCVD_SHUT;
Willy Tarreauf0961222021-02-05 11:41:46 +01003641 } else if (h2_recv_allowed(h2c)) {
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003642 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
3643 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
3644 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003645 } else if (ret)
Willy Tarreau022e5e52020-09-10 09:33:15 +02003646 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003647
Olivier Houcharda1411e62018-08-17 18:42:48 +02003648 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003649 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003650 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003651 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003652 }
3653
Willy Tarreau7838a792019-08-12 18:42:03 +02003654 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003655 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003656 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003657 }
3658
3659 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003660 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003661}
3662
Willy Tarreau479998a2018-11-18 06:30:59 +01003663/* Try to send data if possible.
3664 * The function returns 1 if data have been sent, otherwise zero.
3665 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003666static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003667{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003668 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003669 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003670 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003671
Willy Tarreau7838a792019-08-12 18:42:03 +02003672 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003673
Willy Tarreau7838a792019-08-12 18:42:03 +02003674 if (conn->flags & CO_FL_ERROR) {
3675 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3676 return 1;
3677 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003678
Willy Tarreau911db9b2020-01-23 16:27:54 +01003679 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003680 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003681 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003682 }
3683
Willy Tarreaubc933932017-10-09 16:21:43 +02003684 /* This loop is quite simple : it tries to fill as much as it can from
3685 * pending streams into the existing buffer until it's reportedly full
3686 * or the end of send requests is reached. Then it tries to send this
3687 * buffer's contents out, marks it not full if at least one byte could
3688 * be sent, and tries again.
3689 *
3690 * The snd_buf() function normally takes a "flags" argument which may
3691 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3692 * data immediately comes and CO_SFL_STREAMER to indicate that the
3693 * connection is streaming lots of data (used to increase TLS record
3694 * size at the expense of latency). The former can be sent any time
3695 * there's a buffer full flag, as it indicates at least one stream
3696 * attempted to send and failed so there are pending data. An
3697 * alternative would be to set it as long as there's an active stream
3698 * but that would be problematic for ACKs until we have an absolute
3699 * guarantee that all waiters have at least one byte to send. The
3700 * latter should possibly not be set for now.
3701 */
3702
3703 done = 0;
3704 while (!done) {
3705 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003706 unsigned int released = 0;
3707 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003708
3709 /* fill as much as we can into the current buffer */
3710 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3711 done = h2_process_mux(h2c);
3712
Olivier Houchard2b094432019-01-29 18:28:36 +01003713 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003714 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003715
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003716 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
3717 (h2c->st0 == H2_CS_ERROR2) || (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003718 break;
3719
3720 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3721 flags |= CO_SFL_MSG_MORE;
3722
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003723 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3724 if (b_data(buf)) {
3725 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003726 if (!ret) {
3727 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003728 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003729 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003730 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003731 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003732 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003733 if (b_data(buf)) {
3734 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003735 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003736 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003737 }
3738 b_free(buf);
3739 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003740 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003741
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003742 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01003743 offer_buffers(NULL, released);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003744
Willy Tarreaubc933932017-10-09 16:21:43 +02003745 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003746 if (sent)
3747 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003748 }
3749
Willy Tarreaua2af5122017-10-09 11:56:46 +02003750 if (conn->flags & CO_FL_SOCK_WR_SH) {
3751 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003752 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003753 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003754 /* We're not full anymore, so we can wake any task that are waiting
3755 * for us.
3756 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003757 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3758 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003759
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003760 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003761 if (!br_data(h2c->mbuf)) {
3762 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003763 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003764 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003765schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003766 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3767 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003768 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003769 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003770
Willy Tarreau7838a792019-08-12 18:42:03 +02003771 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003772 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003773}
3774
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003775/* this is the tasklet referenced in h2c->wait_event.tasklet */
Willy Tarreau144f84a2021-03-02 16:09:26 +01003776struct task *h2_io_cb(struct task *t, void *ctx, unsigned int status)
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003777{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003778 struct connection *conn;
3779 struct tasklet *tl = (struct tasklet *)t;
3780 int conn_in_list;
3781 struct h2c *h2c;
Olivier Houchard7505f942018-08-21 18:10:44 +02003782 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003783
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003784
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003785 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003786 if (t->context == NULL) {
3787 /* The connection has been taken over by another thread,
3788 * we're no longer responsible for it, so just free the
3789 * tasklet, and do nothing.
3790 */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003791 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003792 tasklet_free(tl);
Willy Tarreau38468772020-06-28 00:31:13 +02003793 goto leave;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003794 }
3795 h2c = ctx;
3796 conn = h2c->conn;
3797
3798 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3799
3800 conn_in_list = conn->flags & CO_FL_LIST_MASK;
3801
3802 /* Remove the connection from the list, to be sure nobody attempts
3803 * to use it while we handle the I/O events
3804 */
3805 if (conn_in_list)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003806 conn_delete_from_tree(&conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003807
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003808 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau7838a792019-08-12 18:42:03 +02003809
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003810 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003811 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003812 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003813 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003814 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003815 ret = h2_process(h2c);
3816
3817 /* If we were in an idle list, we want to add it back into it,
3818 * unless h2_process() returned -1, which mean it has destroyed
3819 * the connection (testing !ret is enough, if h2_process() wasn't
3820 * called then ret will be 0 anyway.
3821 */
3822 if (!ret && conn_in_list) {
3823 struct server *srv = objt_server(conn->target);
3824
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003825 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003826 if (conn_in_list == CO_FL_SAFE_LIST)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003827 ebmb_insert(&srv->safe_conns_tree[tid], &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003828 else
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003829 ebmb_insert(&srv->idle_conns_tree[tid], &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003830 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003831 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003832
Willy Tarreau38468772020-06-28 00:31:13 +02003833leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02003834 TRACE_LEAVE(H2_EV_H2C_WAKE);
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003835 return NULL;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003836}
Willy Tarreaua2af5122017-10-09 11:56:46 +02003837
Willy Tarreau62f52692017-10-08 23:01:42 +02003838/* callback called on any event by the connection handler.
3839 * It applies changes and returns zero, or < 0 if it wants immediate
3840 * destruction of the connection (which normally doesn not happen in h2).
3841 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003842static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003843{
Olivier Houchard7505f942018-08-21 18:10:44 +02003844 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003845
Willy Tarreau7838a792019-08-12 18:42:03 +02003846 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3847
Willy Tarreauf0961222021-02-05 11:41:46 +01003848 if (!(h2c->flags & H2_CF_DEM_BLOCK_ANY) &&
3849 (b_data(&h2c->dbuf) || (h2c->flags & H2_CF_RCVD_SHUT))) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003850 h2_process_demux(h2c);
3851
3852 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003853 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003854
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003855 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003856 h2c->flags &= ~H2_CF_DEM_DFULL;
3857 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003858 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003859
Willy Tarreaub1e600c2020-10-13 18:09:15 +02003860 if (unlikely(h2c->proxy->disabled) && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01003861 /* frontend is stopping, reload likely in progress, let's try
3862 * to announce a graceful shutdown if not yet done. We don't
3863 * care if it fails, it will be tried again later.
3864 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003865 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
Willy Tarreau8ec14062017-12-30 18:08:13 +01003866 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3867 if (h2c->last_sid < 0)
3868 h2c->last_sid = (1U << 31) - 1;
3869 h2c_send_goaway_error(h2c, NULL);
3870 }
3871 }
3872
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003873 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003874 * If we received early data, and the handshake is done, wake
3875 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003876 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003877 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01003878 (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 +01003879 struct eb32_node *node;
3880 struct h2s *h2s;
3881
3882 h2c->flags |= H2_CF_WAIT_FOR_HS;
3883 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
3884
3885 while (node) {
3886 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01003887 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01003888 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003889 node = eb32_next(node);
3890 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003891 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003892
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003893 if (conn->flags & CO_FL_ERROR || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01003894 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
3895 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
3896 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02003897 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003898
3899 if (eb_is_empty(&h2c->streams_by_id)) {
3900 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003901 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003902 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003903 return -1;
3904 }
Willy Tarreau4481e262019-10-31 15:36:30 +01003905
3906 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01003907 if (conn->flags & CO_FL_LIST_MASK) {
3908 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003909 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01003910 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3911 }
Willy Tarreau4481e262019-10-31 15:36:30 +01003912 }
3913 else if (h2c->st0 == H2_CS_ERROR) {
3914 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01003915 if (conn->flags & CO_FL_LIST_MASK) {
3916 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003917 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01003918 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3919 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003920 }
3921
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003922 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01003923 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003924
Olivier Houchard53216e72018-10-10 15:46:36 +02003925 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
3926 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
3927 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02003928 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02003929 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
3930 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02003931 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003932
Willy Tarreau3f133572017-10-31 19:21:06 +01003933 if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02003934 if (h2c_may_expire(h2c))
3935 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3936 else
3937 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02003938 task_queue(h2c->task);
Willy Tarreauea392822017-10-31 10:02:25 +01003939 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003940
Olivier Houchard7505f942018-08-21 18:10:44 +02003941 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003942 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003943 return 0;
3944}
3945
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003946/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003947static int h2_wake(struct connection *conn)
3948{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003949 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02003950 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003951
Willy Tarreau7838a792019-08-12 18:42:03 +02003952 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3953 ret = h2_process(h2c);
Willy Tarreau508f9892020-02-11 04:38:56 +01003954 if (ret >= 0)
3955 h2_wake_some_streams(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003956 TRACE_LEAVE(H2_EV_H2C_WAKE);
3957 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003958}
3959
Willy Tarreauea392822017-10-31 10:02:25 +01003960/* Connection timeout management. The principle is that if there's no receipt
3961 * nor sending for a certain amount of time, the connection is closed. If the
3962 * MUX buffer still has lying data or is not allocatable, the connection is
3963 * immediately killed. If it's allocatable and empty, we attempt to send a
3964 * GOAWAY frame.
3965 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01003966struct task *h2_timeout_task(struct task *t, void *context, unsigned int state)
Willy Tarreauea392822017-10-31 10:02:25 +01003967{
Olivier Houchard9f6af332018-05-25 14:04:04 +02003968 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01003969 int expired = tick_is_expired(t->expire, now_ms);
3970
Willy Tarreau7838a792019-08-12 18:42:03 +02003971 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
3972
Willy Tarreaubd42e922020-06-30 11:19:23 +02003973 if (h2c) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02003974 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003975 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02003976
3977 /* Somebody already stole the connection from us, so we should not
3978 * free it, we just have to free the task.
3979 */
3980 if (!t->context) {
3981 h2c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003982 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02003983 goto do_leave;
3984 }
3985
3986
Willy Tarreaubd42e922020-06-30 11:19:23 +02003987 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003988 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02003989 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
3990 return t;
3991 }
Willy Tarreauea392822017-10-31 10:02:25 +01003992
Willy Tarreaubd42e922020-06-30 11:19:23 +02003993 if (!h2c_may_expire(h2c)) {
3994 /* we do still have streams but all of them are idle, waiting
3995 * for the data layer, so we must not enforce the timeout here.
3996 */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003997 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02003998 t->expire = TICK_ETERNITY;
3999 return t;
4000 }
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004001
Willy Tarreaubd42e922020-06-30 11:19:23 +02004002 /* We're about to destroy the connection, so make sure nobody attempts
4003 * to steal it from us.
4004 */
Willy Tarreaubd42e922020-06-30 11:19:23 +02004005 if (h2c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004006 conn_delete_from_tree(&h2c->conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004007
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004008 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004009 }
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004010
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004011do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02004012 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02004013
4014 if (!h2c) {
4015 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02004016 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02004017 return NULL;
4018 }
4019
4020 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01004021 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02004022 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01004023
Willy Tarreau662fafc2019-05-26 09:43:07 +02004024 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01004025 /* don't even try to send a GOAWAY, the buffer is stuck */
4026 h2c->flags |= H2_CF_GOAWAY_FAILED;
4027 }
4028
4029 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01004030 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01004031 if (h2c_send_goaway_error(h2c, NULL) <= 0)
4032 h2c->flags |= H2_CF_GOAWAY_FAILED;
4033
Willy Tarreau662fafc2019-05-26 09:43:07 +02004034 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004035 unsigned int released = 0;
4036 struct buffer *buf;
4037
4038 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
4039 if (b_data(buf)) {
4040 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
4041 if (!ret)
4042 break;
4043 b_del(buf, ret);
4044 if (b_data(buf))
4045 break;
4046 b_free(buf);
4047 released++;
4048 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02004049 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004050
4051 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01004052 offer_buffers(NULL, released);
Willy Tarreau787db9a2018-06-14 18:31:46 +02004053 }
Willy Tarreauea392822017-10-31 10:02:25 +01004054
Willy Tarreau4481e262019-10-31 15:36:30 +01004055 /* in any case this connection must not be considered idle anymore */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004056 if (h2c->conn->flags & CO_FL_LIST_MASK) {
4057 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004058 conn_delete_from_tree(&h2c->conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004059 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4060 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004061
Willy Tarreau0975f112018-03-29 15:22:59 +02004062 /* either we can release everything now or it will be done later once
4063 * the last stream closes.
4064 */
4065 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02004066 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01004067
Willy Tarreau7838a792019-08-12 18:42:03 +02004068 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01004069 return NULL;
4070}
4071
4072
Willy Tarreau62f52692017-10-08 23:01:42 +02004073/*******************************************/
4074/* functions below are used by the streams */
4075/*******************************************/
4076
4077/*
4078 * Attach a new stream to a connection
4079 * (Used for outgoing connections)
4080 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01004081static struct conn_stream *h2_attach(struct connection *conn, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02004082{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004083 struct conn_stream *cs;
4084 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004085 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004086
Willy Tarreau7838a792019-08-12 18:42:03 +02004087 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Christopher Faulet236c93b2020-07-02 09:19:54 +02004088 cs = cs_new(conn, conn->target);
Willy Tarreau7838a792019-08-12 18:42:03 +02004089 if (!cs) {
4090 TRACE_DEVEL("leaving on CS allocation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004091 return NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004092 }
Olivier Houchardf502aca2018-12-14 19:42:40 +01004093 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004094 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004095 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004096 cs_free(cs);
4097 return NULL;
4098 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004099 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004100 return cs;
Willy Tarreau62f52692017-10-08 23:01:42 +02004101}
4102
Willy Tarreaufafd3982018-11-18 21:29:20 +01004103/* Retrieves the first valid conn_stream from this connection, or returns NULL.
4104 * We have to scan because we may have some orphan streams. It might be
4105 * beneficial to scan backwards from the end to reduce the likeliness to find
4106 * orphans.
4107 */
4108static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
4109{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004110 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004111 struct h2s *h2s;
4112 struct eb32_node *node;
4113
4114 node = eb32_first(&h2c->streams_by_id);
4115 while (node) {
4116 h2s = container_of(node, struct h2s, by_id);
4117 if (h2s->cs)
4118 return h2s->cs;
4119 node = eb32_next(node);
4120 }
4121 return NULL;
4122}
4123
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004124static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4125{
4126 int ret = 0;
4127 struct h2c *h2c = conn->ctx;
4128
4129 switch (mux_ctl) {
4130 case MUX_STATUS:
4131 /* Only consider the mux to be ready if we're done with
4132 * the preface and settings, and we had no error.
4133 */
4134 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4135 ret |= MUX_STATUS_READY;
4136 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02004137 case MUX_EXIT_STATUS:
4138 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004139 default:
4140 return -1;
4141 }
4142}
4143
Willy Tarreau62f52692017-10-08 23:01:42 +02004144/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004145 * Destroy the mux and the associated connection, if it is no longer used
4146 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004147static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004148{
Christopher Faulet73c12072019-04-08 11:23:22 +02004149 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004150
Willy Tarreau7838a792019-08-12 18:42:03 +02004151 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02004152 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02004153 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004154 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004155}
4156
4157/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004158 * Detach the stream from the connection and possibly release the connection.
4159 */
4160static void h2_detach(struct conn_stream *cs)
4161{
Willy Tarreau60935142017-10-16 18:11:19 +02004162 struct h2s *h2s = cs->ctx;
4163 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004164 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004165
Willy Tarreau7838a792019-08-12 18:42:03 +02004166 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4167
Willy Tarreau60935142017-10-16 18:11:19 +02004168 cs->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004169 if (!h2s) {
4170 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004171 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004172 }
Willy Tarreau60935142017-10-16 18:11:19 +02004173
Willy Tarreaud9464162020-01-10 18:25:07 +01004174 /* there's no txbuf so we're certain not to be able to send anything */
4175 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004176
Olivier Houchardf502aca2018-12-14 19:42:40 +01004177 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004178 h2c = h2s->h2c;
4179 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02004180 h2c->nb_cs--;
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004181 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
4182 !h2_frt_has_too_many_cs(h2c)) {
4183 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004184 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004185 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004186 }
Willy Tarreau60935142017-10-16 18:11:19 +02004187
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004188 /* this stream may be blocked waiting for some data to leave (possibly
4189 * an ES or RST frame), so orphan it in this case.
4190 */
Willy Tarreau3041fcc2018-03-29 15:41:32 +02004191 if (!(cs->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004192 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004193 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004194 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004195 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004196 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004197 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004198
Willy Tarreau45f752e2017-10-30 15:44:59 +01004199 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
4200 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
4201 /* unblock the connection if it was blocked on this
4202 * stream.
4203 */
4204 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4205 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004206 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004207 }
4208
Willy Tarreau71049cc2018-03-28 13:56:39 +02004209 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004210
Christopher Faulet9b79a102019-07-15 11:22:56 +02004211 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01004212 if (!(h2c->conn->flags &
4213 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004214 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004215 /* Add the connection in the session server list, if not already done */
4216 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4217 h2c->conn->owner = NULL;
4218 if (eb_is_empty(&h2c->streams_by_id)) {
4219 h2c->conn->mux->destroy(h2c);
4220 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4221 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004222 }
4223 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004224 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004225 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4226 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4227 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004228 return;
4229 }
4230 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004231 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004232 else {
4233 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004234 /* If the connection is owned by the session, first remove it
4235 * from its list
4236 */
4237 if (h2c->conn->owner) {
4238 session_unown_conn(h2c->conn->owner, h2c->conn);
4239 h2c->conn->owner = NULL;
4240 }
4241
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004242 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004243 /* The server doesn't want it, let's kill the connection right away */
4244 h2c->conn->mux->destroy(h2c);
4245 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4246 return;
4247 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004248 /* At this point, the connection has been added to the
4249 * server idle list, so another thread may already have
4250 * hijacked it, so we can't do anything with it.
4251 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004252 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4253 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004254
Olivier Houchard8a786902018-12-15 16:05:40 +01004255 }
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004256 else if (!h2c->conn->hash_node->node.node.leaf_p &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004257 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
4258 !LIST_ADDED(&h2c->conn->session_list)) {
Amaury Denoyellef232cb32021-01-06 16:14:12 +01004259 ebmb_insert(&__objt_server(h2c->conn->target)->available_conns_tree[tid],
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004260 &h2c->conn->hash_node->node,
4261 sizeof(h2c->conn->hash_node->hash));
Christopher Fauletc5579d12020-07-01 15:45:41 +02004262 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004263 }
4264 }
4265 }
4266
Willy Tarreaue323f342018-03-28 13:51:45 +02004267 /* We don't want to close right now unless we're removing the
4268 * last stream, and either the connection is in error, or it
4269 * reached the ID already specified in a GOAWAY frame received
4270 * or sent (as seen by last_sid >= 0).
4271 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004272 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004273 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004274 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004275 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004276 }
4277 else if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004278 if (h2c_may_expire(h2c))
4279 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
4280 else
4281 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02004282 task_queue(h2c->task);
Willy Tarreau7838a792019-08-12 18:42:03 +02004283 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004284 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004285 else
4286 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004287}
4288
Willy Tarreau88bdba32019-05-13 18:17:53 +02004289/* Performs a synchronous or asynchronous shutr(). */
4290static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004291{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004292 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004293
Willy Tarreauf983d002019-05-14 10:40:21 +02004294 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004295 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004296
Willy Tarreau7838a792019-08-12 18:42:03 +02004297 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4298
Willy Tarreau18059042019-01-31 19:12:48 +01004299 /* a connstream may require us to immediately kill the whole connection
4300 * for example because of a "tcp-request content reject" rule that is
4301 * normally used to limit abuse. In this case we schedule a goaway to
4302 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004303 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004304 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004305 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004306 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004307 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4308 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4309 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004310 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4311 /* Nothing was never sent for this stream, so reset with
4312 * REFUSED_STREAM error to let the client retry the
4313 * request.
4314 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004315 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004316 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4317 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004318 else {
4319 /* a final response was already provided, we don't want this
4320 * stream anymore. This may happen when the server responds
4321 * before the end of an upload and closes quickly (redirect,
4322 * deny, ...)
4323 */
4324 h2s_error(h2s, H2_ERR_CANCEL);
4325 }
Willy Tarreau18059042019-01-31 19:12:48 +01004326
Willy Tarreau90c32322017-11-24 08:00:30 +01004327 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004328 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004329 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004330
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004331 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004332 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004333 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004334 done:
4335 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004336 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004337 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004338add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004339 /* Let the handler know we want to shutr, and add ourselves to the
4340 * most relevant list if not yet done. h2_deferred_shut() will be
4341 * automatically called via the shut_tl tasklet when there's room
4342 * again.
4343 */
4344 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreauc234ae32019-05-13 17:56:11 +02004345 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004346 if (h2s->flags & H2_SF_BLK_MFCTL)
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004347 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004348 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004349 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004350 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004351 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004352 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004353}
4354
Willy Tarreau88bdba32019-05-13 18:17:53 +02004355/* Performs a synchronous or asynchronous shutw(). */
4356static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004357{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004358 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004359
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004360 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004361 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004362
Willy Tarreau7838a792019-08-12 18:42:03 +02004363 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4364
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004365 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01004366 /* we can cleanly close using an empty data frame only after headers */
4367
4368 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4369 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004370 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004371
4372 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004373 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004374 else
4375 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004376 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004377 /* a connstream may require us to immediately kill the whole connection
4378 * for example because of a "tcp-request content reject" rule that is
4379 * normally used to limit abuse. In this case we schedule a goaway to
4380 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004381 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004382 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004383 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004384 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004385 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4386 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4387 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004388 else {
4389 /* Nothing was never sent for this stream, so reset with
4390 * REFUSED_STREAM error to let the client retry the
4391 * request.
4392 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004393 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004394 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4395 }
Willy Tarreau18059042019-01-31 19:12:48 +01004396
Willy Tarreau90c32322017-11-24 08:00:30 +01004397 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004398 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004399 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004400
Willy Tarreau00dd0782018-03-01 16:31:34 +01004401 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004402 }
4403
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004404 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004405 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004406
4407 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4408
Willy Tarreau88bdba32019-05-13 18:17:53 +02004409 done:
4410 h2s->flags &= ~H2_SF_WANT_SHUTW;
4411 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004412
4413 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004414 /* Let the handler know we want to shutw, and add ourselves to the
4415 * most relevant list if not yet done. h2_deferred_shut() will be
4416 * automatically called via the shut_tl tasklet when there's room
4417 * again.
4418 */
4419 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreauc234ae32019-05-13 17:56:11 +02004420 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004421 if (h2s->flags & H2_SF_BLK_MFCTL)
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004422 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004423 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004424 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004425 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004426 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004427 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004428}
4429
Willy Tarreau5723f292020-01-10 15:16:57 +01004430/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004431 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4432 * and prevented the last frame from being emitted.
4433 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004434struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004435{
4436 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004437 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004438
Willy Tarreau7838a792019-08-12 18:42:03 +02004439 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4440
Willy Tarreau5723f292020-01-10 15:16:57 +01004441 if (h2s->flags & H2_SF_NOTIFIED) {
4442 /* some data processing remains to be done first */
4443 goto end;
4444 }
4445
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004446 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004447 h2_do_shutw(h2s);
4448
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004449 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004450 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004451
Willy Tarreau88bdba32019-05-13 18:17:53 +02004452 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004453 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004454 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004455
Willy Tarreau88bdba32019-05-13 18:17:53 +02004456 if (!h2s->cs) {
4457 h2s_destroy(h2s);
4458 if (h2c_is_dead(h2c))
4459 h2_release(h2c);
4460 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004461 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004462 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004463 TRACE_LEAVE(H2_EV_STRM_SHUT);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004464 return NULL;
Willy Tarreau62f52692017-10-08 23:01:42 +02004465}
4466
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004467/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004468static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
4469{
4470 struct h2s *h2s = cs->ctx;
4471
Willy Tarreau7838a792019-08-12 18:42:03 +02004472 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004473 if (cs->flags & CS_FL_KILL_CONN)
4474 h2s->flags |= H2_SF_KILL_CONN;
4475
Willy Tarreau7838a792019-08-12 18:42:03 +02004476 if (mode)
4477 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004478
Willy Tarreau7838a792019-08-12 18:42:03 +02004479 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004480}
4481
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004482/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004483static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
4484{
4485 struct h2s *h2s = cs->ctx;
4486
Willy Tarreau7838a792019-08-12 18:42:03 +02004487 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004488 if (cs->flags & CS_FL_KILL_CONN)
4489 h2s->flags |= H2_SF_KILL_CONN;
4490
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004491 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004492 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004493}
4494
Christopher Faulet9b79a102019-07-15 11:22:56 +02004495/* Decode the payload of a HEADERS frame and produce the HTX request or response
4496 * depending on the connection's side. Returns a positive value on success, a
4497 * negative value on failure, or 0 if it couldn't proceed. May report connection
4498 * errors in h2c->errcode if the frame is non-decodable and the connection
4499 * unrecoverable. In absence of connection error when a failure is reported, the
4500 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004501 *
4502 * The function may fold CONTINUATION frames into the initial HEADERS frame
4503 * by removing padding and next frame header, then moving the CONTINUATION
4504 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4505 * leaving a hole between the main frame and the beginning of the next one.
4506 * The possibly remaining incomplete or next frame at the end may be moved
4507 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4508 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4509 *
4510 * A buffer at the beginning of processing may look like this :
4511 *
4512 * ,---.---------.-----.--------------.--------------.------.---.
4513 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4514 * `---^---------^-----^--------------^--------------^------^---'
4515 * | | <-----> | |
4516 * area | dpl | wrap
4517 * |<--------------> |
4518 * | dfl |
4519 * |<-------------------------------------------------->|
4520 * head data
4521 *
4522 * Padding is automatically overwritten when folding, participating to the
4523 * hole size after dfl :
4524 *
4525 * ,---.------------------------.-----.--------------.------.---.
4526 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4527 * `---^------------------------^-----^--------------^------^---'
4528 * | | <-----> | |
4529 * area | hole | wrap
4530 * |<-----------------------> |
4531 * | dfl |
4532 * |<-------------------------------------------------->|
4533 * head data
4534 *
4535 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4536 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4537 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004538 *
4539 * The <flags> field must point to either the stream's flags or to a copy of it
4540 * so that the function can update the following flags :
4541 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004542 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004543 *
4544 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4545 * decoding, in order to detect if we're dealing with a headers or a trailers
4546 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004547 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004548static 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 +02004549{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004550 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004551 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004552 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004553 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004554 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004555 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004556 int flen; // header frame len
4557 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004558 int ret = 0;
4559 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004560 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004561
Willy Tarreau7838a792019-08-12 18:42:03 +02004562 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4563
Willy Tarreauea18f862018-12-22 20:19:26 +01004564next_frame:
4565 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4566 goto leave; // incomplete input frame
4567
4568 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4569 * this case, we'll try to paste it immediately after the initial
4570 * HEADERS frame payload and kill any possible padding. The initial
4571 * frame's length will be increased to represent the concatenation
4572 * of the two frames. The next frame is read from position <tlen>
4573 * and written at position <flen> (minus padding if some is present).
4574 */
4575 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4576 struct h2_fh hdr;
4577 int clen; // CONTINUATION frame's payload length
4578
Willy Tarreau7838a792019-08-12 18:42:03 +02004579 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 +01004580 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4581 /* no more data, the buffer may be full, either due to
4582 * too large a frame or because of too large a hole that
4583 * we're going to compact at the end.
4584 */
4585 goto leave;
4586 }
4587
4588 if (hdr.ft != H2_FT_CONTINUATION) {
4589 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004590 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 +01004591 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua3075282020-12-01 10:22:43 +01004592 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreauea18f862018-12-22 20:19:26 +01004593 goto fail;
4594 }
4595
4596 if (hdr.sid != h2c->dsi) {
4597 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004598 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 +01004599 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua3075282020-12-01 10:22:43 +01004600 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreauea18f862018-12-22 20:19:26 +01004601 goto fail;
4602 }
4603
4604 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4605 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004606 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 +01004607 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4608 goto fail;
4609 }
4610
4611 /* detect when we must stop aggragating frames */
4612 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4613
4614 /* Take as much as we can of the CONTINUATION frame's payload */
4615 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4616 if (clen > hdr.len)
4617 clen = hdr.len;
4618
4619 /* Move the frame's payload over the padding, hole and frame
4620 * header. At least one of hole or dpl is null (see diagrams
4621 * above). The hole moves after the new aggragated frame.
4622 */
4623 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole + 9), clen, -(h2c->dpl + hole + 9));
4624 h2c->dfl += clen - h2c->dpl;
4625 hole += h2c->dpl + 9;
4626 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004627 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 +01004628 goto next_frame;
4629 }
4630
4631 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004632
Willy Tarreau13278b42017-10-13 19:23:14 +02004633 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004634 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004635 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004636 copy = alloc_trash_chunk();
4637 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004638 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 +02004639 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4640 goto fail;
4641 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004642 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4643 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4644 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004645 }
4646
Willy Tarreau13278b42017-10-13 19:23:14 +02004647 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4648 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004649 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004650 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004651 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 +01004652 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua3075282020-12-01 10:22:43 +01004653 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004654 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004655 }
4656
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004657 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004658 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 +01004659 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4660 goto fail;
4661 }
4662
Willy Tarreau13278b42017-10-13 19:23:14 +02004663 hdrs += 5; // stream dep = 4, weight = 1
4664 flen -= 5;
4665 }
4666
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004667 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004668 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 +01004669 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004670 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004671 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004672
Willy Tarreau937f7602018-02-26 15:22:17 +01004673 /* we can't retry a failed decompression operation so we must be very
4674 * careful not to take any risks. In practice the output buffer is
4675 * always empty except maybe for trailers, in which case we simply have
4676 * to wait for the upper layer to finish consuming what is available.
4677 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004678 htx = htx_from_buf(rxbuf);
4679 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004680 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 +02004681 h2c->flags |= H2_CF_DEM_SFULL;
4682 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004683 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004684
Willy Tarreau25919232019-01-03 14:48:18 +01004685 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004686 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4687 sizeof(list)/sizeof(list[0]), tmp);
4688 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004689 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 +01004690 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4691 goto fail;
4692 }
4693
Willy Tarreau25919232019-01-03 14:48:18 +01004694 /* The PACK decompressor was updated, let's update the input buffer and
4695 * the parser's state to commit these changes and allow us to later
4696 * fail solely on the stream if needed.
4697 */
4698 b_del(&h2c->dbuf, h2c->dfl + hole);
4699 h2c->dfl = hole = 0;
4700 h2c->st0 = H2_CS_FRAME_H;
4701
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004702 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004703 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Christopher Fauletd0db4232021-01-22 11:46:30 +01004704 msgf |= (*flags & H2_SF_BODY_TUNNEL) ? H2_MSGF_BODY_TUNNEL: 0;
Amaury Denoyelle74162742020-12-11 17:53:05 +01004705 /* If an Extended CONNECT has been sent on this stream, set message flag
Ilya Shipitsinacf84592021-02-06 22:29:08 +05004706 * to convert 200 response to 101 htx response */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004707 msgf |= (*flags & H2_SF_EXT_CONNECT_SENT) ? H2_MSGF_EXT_CONNECT: 0;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004708
Willy Tarreau88d138e2019-01-02 19:38:14 +01004709 if (*flags & H2_SF_HEADERS_RCVD)
4710 goto trailers;
4711
4712 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004713 if (h2c->flags & H2_CF_IS_BACK)
Amaury Denoyelle74162742020-12-11 17:53:05 +01004714 outlen = h2_make_htx_response(list, htx, &msgf, body_len, upgrade_protocol);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004715 else
4716 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004717
4718 if (outlen < 0) {
Willy Tarreau25919232019-01-03 14:48:18 +01004719 /* too large headers? this is a stream error only */
Willy Tarreau7838a792019-08-12 18:42:03 +02004720 TRACE_STATE("request headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004721 goto fail;
4722 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004723
Willy Tarreau174b06a2018-04-25 18:13:58 +02004724 if (msgf & H2_MSGF_BODY) {
4725 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004726 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004727 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004728 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004729 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004730 }
Christopher Faulet7d247f02020-12-02 14:26:36 +01004731 if (msgf & H2_MSGF_BODYLESS_RSP)
4732 *flags |= H2_SF_BODYLESS_RESP;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004733
Christopher Fauletd0db4232021-01-22 11:46:30 +01004734 if (msgf & H2_MSGF_BODY_TUNNEL)
4735 *flags |= H2_SF_BODY_TUNNEL;
4736 else {
4737 /* Abort the tunnel attempt, if any */
4738 if (*flags & H2_SF_BODY_TUNNEL)
4739 *flags |= H2_SF_TUNNEL_ABRT;
4740 *flags &= ~H2_SF_BODY_TUNNEL;
4741 }
4742
Willy Tarreau88d138e2019-01-02 19:38:14 +01004743 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004744 /* indicate that a HEADERS frame was received for this stream, except
4745 * for 1xx responses. For 1xx responses, another HEADERS frame is
4746 * expected.
4747 */
4748 if (!(msgf & H2_MSGF_RSP_1XX))
4749 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004750
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004751 if (h2c->dff & H2_F_HEADERS_END_STREAM) {
4752 /* no more data are expected for this message */
4753 htx->flags |= HTX_FL_EOM;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004754 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004755
Amaury Denoyelleefe22762020-12-11 17:53:08 +01004756 if (msgf & H2_MSGF_EXT_CONNECT)
4757 *flags |= H2_SF_EXT_CONNECT_RCVD;
4758
Willy Tarreau86277d42019-01-02 15:36:11 +01004759 /* success */
4760 ret = 1;
4761
Willy Tarreau68dd9852017-07-03 14:44:26 +02004762 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004763 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004764 * move the remaining data over it.
4765 */
4766 if (hole) {
4767 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4768 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4769 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4770 b_sub(&h2c->dbuf, hole);
4771 }
4772
Willy Tarreau97215ca2019-04-29 10:20:21 +02004773 if (b_full(&h2c->dbuf) && h2c->dfl >= b_data(&h2c->dbuf)) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004774 /* too large frames */
4775 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004776 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004777 }
4778
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004779 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004780 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004781 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004782 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004783 return ret;
4784
Willy Tarreau68dd9852017-07-03 14:44:26 +02004785 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004786 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004787 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004788
4789 trailers:
4790 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004791 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4792 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004793 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 +01004794 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua3075282020-12-01 10:22:43 +01004795 HA_ATOMIC_ADD(&h2c->px_counters->conn_proto_err, 1);
Willy Tarreau88d138e2019-01-02 19:38:14 +01004796 goto fail;
4797 }
4798
Christopher Faulet9b79a102019-07-15 11:22:56 +02004799 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02004800 if (h2_make_htx_trailers(list, htx) <= 0) {
4801 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 +02004802 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004803 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004804 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02004805}
4806
Christopher Faulet9b79a102019-07-15 11:22:56 +02004807/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004808 * parser state is automatically updated. Returns > 0 if it could completely
4809 * send the current frame, 0 if it couldn't complete, in which case
4810 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
4811 * DATA frame can return 0 as a valid result). Stream errors are reported in
4812 * h2s->errcode and connection errors in h2c->errcode. The caller must already
4813 * have checked the frame header and ensured that the frame was complete or the
4814 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02004815 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01004816static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02004817{
4818 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004819 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004820 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004821 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004822 struct buffer *csbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004823 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02004824
Willy Tarreau7838a792019-08-12 18:42:03 +02004825 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
4826
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004827 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02004828
Olivier Houchard638b7992018-08-16 15:41:52 +02004829 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004830 if (!csbuf) {
4831 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02004832 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 +01004833 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004834 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004835 htx = htx_from_buf(csbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004836
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004837try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004838 flen = h2c->dfl - h2c->dpl;
4839 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01004840 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004841
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004842 if (flen > b_data(&h2c->dbuf)) {
4843 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004844 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01004845 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004846 }
4847
Christopher Faulet9b79a102019-07-15 11:22:56 +02004848 block = htx_free_data_space(htx);
4849 if (!block) {
4850 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004851 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 +02004852 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004853 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004854 if (flen > block)
4855 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004856
Christopher Faulet9b79a102019-07-15 11:22:56 +02004857 /* here, flen is the max we can copy into the output buffer */
4858 block = b_contig_data(&h2c->dbuf, 0);
4859 if (flen > block)
4860 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004861
Christopher Faulet9b79a102019-07-15 11:22:56 +02004862 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02004863 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 +02004864
Christopher Faulet9b79a102019-07-15 11:22:56 +02004865 b_del(&h2c->dbuf, sent);
4866 h2c->dfl -= sent;
4867 h2c->rcvd_c += sent;
4868 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02004869
Christopher Faulet9b79a102019-07-15 11:22:56 +02004870 if (h2s->flags & H2_SF_DATA_CLEN) {
4871 h2s->body_len -= sent;
4872 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004873 }
4874
Christopher Faulet9b79a102019-07-15 11:22:56 +02004875 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004876 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004877 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 +01004878 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004879 }
4880
Christopher Faulet9b79a102019-07-15 11:22:56 +02004881 goto try_again;
4882
Willy Tarreau4a28da12018-01-04 14:41:00 +01004883 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004884 /* here we're done with the frame, all the payload (except padding) was
4885 * transferred.
4886 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02004887
Christopher Faulet5be651d2021-01-22 15:28:03 +01004888 if (!(h2s->flags & H2_SF_BODY_TUNNEL) && (h2c->dff & H2_F_DATA_END_STREAM)) {
4889 /* no more data are expected for this message. This add the EOM
4890 * flag but only on the response path or if no tunnel attempt
4891 * was aborted. Otherwise (request path + tunnel abrted), the
4892 * EOM was already reported.
4893 */
Christopher Faulet33724322021-02-10 09:04:59 +01004894 if ((h2c->flags & H2_CF_IS_BACK) || !(h2s->flags & H2_SF_TUNNEL_ABRT)) {
4895 /* If we receive an empty DATA frame with ES flag while the HTX
4896 * message is empty, we must be sure to push a block to be sure
4897 * the HTX EOM flag will be handled on the other side. It is a
4898 * workaround because for now it is not possible to push empty
4899 * HTX DATA block. And without this block, there is no way to
4900 * "commit" the end of the message.
4901 */
4902 if (htx_is_empty(htx)) {
4903 if (!htx_add_endof(htx, HTX_BLK_EOT))
4904 goto fail;
4905 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004906 htx->flags |= HTX_FL_EOM;
Christopher Faulet33724322021-02-10 09:04:59 +01004907 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02004908 }
4909
Willy Tarreaud1023bb2018-03-22 16:53:12 +01004910 h2c->rcvd_c += h2c->dpl;
4911 h2c->rcvd_s += h2c->dpl;
4912 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004913 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet9b79a102019-07-15 11:22:56 +02004914 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02004915 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004916 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01004917 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004918 if (htx)
4919 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02004920 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01004921 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004922}
4923
Willy Tarreau115e83b2018-12-01 19:17:53 +01004924/* Try to send a HEADERS frame matching HTX response present in HTX message
4925 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4926 * must check the stream's status to detect any error which might have happened
4927 * subsequently to a successful send. The htx blocks are automatically removed
4928 * from the message. The htx message is assumed to be valid since produced from
4929 * the internal code, hence it contains a start line, an optional series of
4930 * header blocks and an end of header, otherwise an invalid frame could be
4931 * emitted and the resulting htx message could be left in an inconsistent state.
4932 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004933static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004934{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004935 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01004936 struct h2c *h2c = h2s->h2c;
4937 struct htx_blk *blk;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004938 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004939 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004940 struct htx_sl *sl;
4941 enum htx_blk_type type;
4942 int es_now = 0;
4943 int ret = 0;
4944 int hdr;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004945
Willy Tarreau7838a792019-08-12 18:42:03 +02004946 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
4947
Willy Tarreau115e83b2018-12-01 19:17:53 +01004948 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004949 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004950 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02004951 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004952 return 0;
4953 }
4954
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004955 /* get the start line (we do have one) and the rest of the headers,
4956 * that we dump starting at header 0 */
4957 sl = NULL;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004958 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004959 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01004960 type = htx_get_blk_type(blk);
4961
4962 if (type == HTX_BLK_UNUSED)
4963 continue;
4964
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004965 if (type == HTX_BLK_EOH)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004966 break;
4967
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004968 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01004969 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004970 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
4971 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
4972 goto fail;
4973 }
4974
4975 list[hdr].n = htx_get_blk_name(htx, blk);
4976 list[hdr].v = htx_get_blk_value(htx, blk);
4977 hdr++;
4978 }
4979 else if (type == HTX_BLK_RES_SL) {
Christopher Faulet56498132021-01-29 11:39:43 +01004980 BUG_ON(sl); /* Only one start-line expected */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004981 sl = htx_get_blk_ptr(htx, blk);
4982 h2s->status = sl->info.res.status;
Christopher Faulet7d247f02020-12-02 14:26:36 +01004983 if (h2s->status == 204 || h2s->status == 304)
4984 h2s->flags |= H2_SF_BODYLESS_RESP;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004985 if (h2s->status < 100 || h2s->status > 999) {
4986 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
4987 goto fail;
4988 }
4989 else if (h2s->status == 101) {
Amaury Denoyelleefe22762020-12-11 17:53:08 +01004990 if (unlikely(h2s->flags & H2_SF_EXT_CONNECT_RCVD)) {
4991 /* If an Extended CONNECT has been received, we need to convert 101 to 200 */
4992 h2s->status = 200;
4993 h2s->flags &= ~H2_SF_EXT_CONNECT_RCVD;
4994 }
4995 else {
4996 /* Otherwise, 101 responses are not supported in H2, so return a error (RFC7540#8.1.1) */
4997 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
4998 goto fail;
4999 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005000 }
5001 else if ((h2s->flags & H2_SF_BODY_TUNNEL) && h2s->status >= 300) {
5002 /* Abort the tunnel attempt */
5003 h2s->flags &= ~H2_SF_BODY_TUNNEL;
5004 h2s->flags |= H2_SF_TUNNEL_ABRT;
5005 }
5006 }
5007 else {
5008 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 +01005009 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005010 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005011 }
5012
Christopher Faulet56498132021-01-29 11:39:43 +01005013 /* The start-line me be defined */
5014 BUG_ON(!sl);
5015
Willy Tarreau115e83b2018-12-01 19:17:53 +01005016 /* marker for end of headers */
5017 list[hdr].n = ist("");
5018
Willy Tarreau9c218e72019-05-26 10:08:28 +02005019 mbuf = br_tail(h2c->mbuf);
5020 retry:
5021 if (!h2_get_buf(h2c, mbuf)) {
5022 h2c->flags |= H2_CF_MUX_MALLOC;
5023 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005024 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 +02005025 return 0;
5026 }
5027
Willy Tarreau115e83b2018-12-01 19:17:53 +01005028 chunk_reset(&outbuf);
5029
5030 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005031 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5032 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005033 break;
5034 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005035 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01005036 }
5037
5038 if (outbuf.size < 9)
5039 goto full;
5040
5041 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5042 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5043 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5044 outbuf.data = 9;
5045
5046 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01005047 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005048 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005049 goto realign_again;
5050 goto full;
5051 }
5052
5053 /* encode all headers, stop at empty name */
5054 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5055 /* these ones do not exist in H2 and must be dropped. */
5056 if (isteq(list[hdr].n, ist("connection")) ||
5057 isteq(list[hdr].n, ist("proxy-connection")) ||
5058 isteq(list[hdr].n, ist("keep-alive")) ||
5059 isteq(list[hdr].n, ist("upgrade")) ||
5060 isteq(list[hdr].n, ist("transfer-encoding")))
5061 continue;
5062
Christopher Faulet86d144c2019-08-14 16:32:25 +02005063 /* Skip all pseudo-headers */
5064 if (*(list[hdr].n.ptr) == ':')
5065 continue;
5066
Willy Tarreau115e83b2018-12-01 19:17:53 +01005067 if (isteq(list[hdr].n, ist("")))
5068 break; // end
5069
5070 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
5071 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005072 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005073 goto realign_again;
5074 goto full;
5075 }
5076 }
5077
Willy Tarreaucb985a42019-10-07 16:56:34 +02005078 /* update the frame's size */
5079 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5080
5081 if (outbuf.data > h2c->mfs + 9) {
5082 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5083 /* output full */
5084 if (b_space_wraps(mbuf))
5085 goto realign_again;
5086 goto full;
5087 }
5088 }
5089
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005090 /* remove all header blocks including the EOH and compute the
5091 * corresponding size.
Willy Tarreau115e83b2018-12-01 19:17:53 +01005092 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005093 ret = 0;
5094 blk = htx_get_head_blk(htx);
5095 while (blk) {
5096 type = htx_get_blk_type(blk);
5097 ret += htx_get_blksz(blk);
5098 blk = htx_remove_blk(htx, blk);
5099 /* The removed block is the EOH */
5100 if (type == HTX_BLK_EOH)
5101 break;
Christopher Faulet5be651d2021-01-22 15:28:03 +01005102 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005103
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005104 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) {
5105 /* Response already closed: add END_STREAM */
5106 es_now = 1;
5107 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005108 else if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && h2s->status >= 200) {
5109 /* EOM+empty: we may need to add END_STREAM except for 1xx
Christopher Faulet991febd2020-12-02 15:17:31 +01005110 * responses and tunneled response.
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005111 */
Christopher Faulet991febd2020-12-02 15:17:31 +01005112 if (!(h2s->flags & H2_SF_BODY_TUNNEL) || h2s->status >= 300)
5113 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005114 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005115
Willy Tarreau115e83b2018-12-01 19:17:53 +01005116 if (es_now)
5117 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5118
5119 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02005120 TRACE_USER("sent H2 response", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
Willy Tarreaubcc45952019-05-26 10:05:50 +02005121 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01005122
5123 /* indicates the HEADERS frame was sent, except for 1xx responses. For
5124 * 1xx responses, another HEADERS frame is expected.
5125 */
Christopher Faulet89899422020-12-07 18:24:43 +01005126 if (h2s->status >= 200)
Christopher Faulet0b465482019-02-19 15:14:23 +01005127 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005128
Willy Tarreau115e83b2018-12-01 19:17:53 +01005129 if (es_now) {
5130 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005131 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 +01005132 if (h2s->st == H2_SS_OPEN)
5133 h2s->st = H2_SS_HLOC;
5134 else
5135 h2s_close(h2s);
5136 }
5137
5138 /* OK we could properly deliver the response */
Willy Tarreau115e83b2018-12-01 19:17:53 +01005139 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005140 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005141 return ret;
5142 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005143 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5144 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005145 h2c->flags |= H2_CF_MUX_MFULL;
5146 h2s->flags |= H2_SF_BLK_MROOM;
5147 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005148 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 +01005149 goto end;
5150 fail:
5151 /* unparsable HTX messages, too large ones to be produced in the local
5152 * list etc go here (unrecoverable errors).
5153 */
5154 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5155 ret = 0;
5156 goto end;
5157}
5158
Willy Tarreau80739692018-10-05 11:35:57 +02005159/* Try to send a HEADERS frame matching HTX request present in HTX message
5160 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5161 * must check the stream's status to detect any error which might have happened
5162 * subsequently to a successful send. The htx blocks are automatically removed
5163 * from the message. The htx message is assumed to be valid since produced from
5164 * the internal code, hence it contains a start line, an optional series of
5165 * header blocks and an end of header, otherwise an invalid frame could be
5166 * emitted and the resulting htx message could be left in an inconsistent state.
5167 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005168static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005169{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005170 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005171 struct h2c *h2c = h2s->h2c;
5172 struct htx_blk *blk;
Willy Tarreau80739692018-10-05 11:35:57 +02005173 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005174 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005175 struct htx_sl *sl;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005176 struct ist meth, uri, auth, host = IST_NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005177 enum htx_blk_type type;
5178 int es_now = 0;
5179 int ret = 0;
5180 int hdr;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005181 int extended_connect = 0;
Willy Tarreau80739692018-10-05 11:35:57 +02005182
Willy Tarreau7838a792019-08-12 18:42:03 +02005183 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5184
Willy Tarreau80739692018-10-05 11:35:57 +02005185 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005186 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005187 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005188 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005189 return 0;
5190 }
5191
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005192 /* get the start line (we do have one) and the rest of the headers,
5193 * that we dump starting at header 0 */
5194 sl = NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005195 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005196 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005197 type = htx_get_blk_type(blk);
5198
5199 if (type == HTX_BLK_UNUSED)
5200 continue;
5201
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005202 if (type == HTX_BLK_EOH)
Willy Tarreau80739692018-10-05 11:35:57 +02005203 break;
5204
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005205 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005206 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005207 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5208 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5209 goto fail;
5210 }
Willy Tarreau80739692018-10-05 11:35:57 +02005211
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005212 list[hdr].n = htx_get_blk_name(htx, blk);
5213 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005214
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005215 /* Skip header if same name is used to add the server name */
5216 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name &&
5217 isteq(list[hdr].n, ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len)))
5218 continue;
Christopher Faulet67d58092019-10-02 10:51:38 +02005219
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005220 /* Convert connection: upgrade to Extended connect from rfc 8441 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005221 if (isteqi(list[hdr].n, ist("connection"))) {
5222 /* rfc 7230 #6.1 Connection = list of tokens */
5223 struct ist connection_ist = list[hdr].v;
5224 do {
5225 if (isteqi(iststop(connection_ist, ','),
5226 ist("upgrade"))) {
5227 h2s->flags |= (H2_SF_BODY_TUNNEL|H2_SF_EXT_CONNECT_SENT);
5228 sl->info.req.meth = HTTP_METH_CONNECT;
5229 meth = ist("CONNECT");
5230
5231 extended_connect = 1;
5232 break;
5233 }
5234
5235 connection_ist = istadv(istfind(connection_ist, ','), 1);
5236 } while (istlen(connection_ist));
5237 }
5238
5239 if (isteq(list[hdr].n, ist("upgrade"))) {
5240 /* rfc 7230 #6.7 Upgrade = list of protocols
5241 * rfc 8441 #4 Extended connect = :protocol is single-valued
5242 *
5243 * only first HTTP/1 protocol is preserved
5244 */
5245 const struct ist protocol = iststop(list[hdr].v, ',');
5246 /* upgrade_protocol field is 16 bytes long in h2s */
5247 istpad(h2s->upgrade_protocol, isttrim(protocol, 15));
5248 }
5249
5250 if (isteq(list[hdr].n, ist("host")))
5251 host = list[hdr].v;
5252
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005253 hdr++;
5254 }
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005255 else if (type == HTX_BLK_REQ_SL) {
5256 BUG_ON(sl); /* Only one start-line expected */
5257 sl = htx_get_blk_ptr(htx, blk);
5258 meth = htx_sl_req_meth(sl);
5259 uri = htx_sl_req_uri(sl);
5260 if (sl->info.req.meth == HTTP_METH_HEAD)
5261 h2s->flags |= H2_SF_BODYLESS_RESP;
5262 if (unlikely(uri.len == 0)) {
5263 TRACE_ERROR("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5264 goto fail;
5265 }
5266 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005267 else {
5268 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5269 goto fail;
5270 }
Willy Tarreau80739692018-10-05 11:35:57 +02005271 }
5272
Christopher Faulet56498132021-01-29 11:39:43 +01005273 /* The start-line me be defined */
5274 BUG_ON(!sl);
5275
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005276 /* Now add the server name to a header (if requested) */
5277 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name) {
5278 struct server *srv = objt_server(h2c->conn->target);
5279
5280 if (srv) {
5281 list[hdr].n = ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len);
5282 list[hdr].v = ist(srv->id);
5283 hdr++;
5284 }
5285 }
5286
Willy Tarreau80739692018-10-05 11:35:57 +02005287 /* marker for end of headers */
5288 list[hdr].n = ist("");
5289
Willy Tarreau9c218e72019-05-26 10:08:28 +02005290 mbuf = br_tail(h2c->mbuf);
5291 retry:
5292 if (!h2_get_buf(h2c, mbuf)) {
5293 h2c->flags |= H2_CF_MUX_MALLOC;
5294 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005295 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 +02005296 return 0;
5297 }
5298
Willy Tarreau80739692018-10-05 11:35:57 +02005299 chunk_reset(&outbuf);
5300
5301 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005302 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5303 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005304 break;
5305 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005306 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005307 }
5308
5309 if (outbuf.size < 9)
5310 goto full;
5311
5312 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5313 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5314 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5315 outbuf.data = 9;
5316
5317 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005318 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005319 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005320 goto realign_again;
5321 goto full;
5322 }
5323
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005324 auth = ist(NULL);
5325
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005326 /* RFC7540 #8.3: the CONNECT method must have :
5327 * - :authority set to the URI part (host:port)
5328 * - :method set to CONNECT
5329 * - :scheme and :path omitted
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005330 *
5331 * Note that this is not applicable in case of the Extended CONNECT
5332 * protocol from rfc 8441.
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005333 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005334 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT) && !extended_connect) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005335 auth = uri;
5336
5337 if (!hpack_encode_header(&outbuf, ist(":authority"), auth)) {
5338 /* output full */
5339 if (b_space_wraps(mbuf))
5340 goto realign_again;
5341 goto full;
5342 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005343 h2s->flags |= H2_SF_BODY_TUNNEL;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005344 } else {
5345 /* other methods need a :scheme. If an authority is known from
5346 * the request line, it must be sent, otherwise only host is
5347 * sent. Host is never sent as the authority.
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005348 *
5349 * This code is also applicable for Extended CONNECT protocol
5350 * from rfc 8441.
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005351 */
5352 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005353
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005354 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5355 /* the URI seems to start with a scheme */
5356 int len = 1;
5357
5358 while (len < uri.len && uri.ptr[len] != ':')
5359 len++;
5360
5361 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5362 /* make the uri start at the authority now */
Tim Duesterhus9f75ed12021-03-02 18:57:26 +01005363 scheme = ist2(uri.ptr, len);
Tim Duesterhus154374c2021-03-02 18:57:27 +01005364 uri = istadv(uri, len + 3);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005365
5366 /* find the auth part of the URI */
Tim Duesterhus92c696e2021-02-28 16:11:36 +01005367 auth = ist2(uri.ptr, 0);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005368 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5369 auth.len++;
5370
Tim Duesterhus154374c2021-03-02 18:57:27 +01005371 uri = istadv(uri, auth.len);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005372 }
5373 }
5374
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005375 /* For Extended CONNECT, the :authority must be present.
5376 * Use host value for it.
5377 */
5378 if (unlikely(extended_connect) && isttest(host))
5379 auth = host;
5380
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005381 if (!scheme.len) {
5382 /* no explicit scheme, we're using an origin-form URI,
5383 * probably from an H1 request transcoded to H2 via an
5384 * external layer, then received as H2 without authority.
5385 * So we have to look up the scheme from the HTX flags.
5386 * In such a case only http and https are possible, and
5387 * https is the default (sent by browsers).
5388 */
5389 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5390 scheme = ist("http");
5391 else
5392 scheme = ist("https");
5393 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005394
5395 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005396 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005397 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005398 goto realign_again;
5399 goto full;
5400 }
Willy Tarreau80739692018-10-05 11:35:57 +02005401
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005402 if (auth.len && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005403 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005404 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005405 goto realign_again;
5406 goto full;
5407 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005408
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005409 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5410 * be sent as '/' or '*'.
5411 */
5412 if (unlikely(!uri.len)) {
5413 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5414 uri = ist("*");
5415 else
5416 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005417 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005418
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005419 if (!hpack_encode_path(&outbuf, uri)) {
5420 /* output full */
5421 if (b_space_wraps(mbuf))
5422 goto realign_again;
5423 goto full;
5424 }
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005425
5426 /* encode the pseudo-header protocol from rfc8441 if using
5427 * Extended CONNECT method.
5428 */
5429 if (unlikely(extended_connect)) {
5430 const struct ist protocol = ist(h2s->upgrade_protocol);
5431 if (isttest(protocol)) {
5432 if (!hpack_encode_header(&outbuf,
5433 ist(":protocol"),
5434 protocol)) {
5435 /* output full */
5436 if (b_space_wraps(mbuf))
5437 goto realign_again;
5438 goto full;
5439 }
5440 }
5441 }
Willy Tarreau80739692018-10-05 11:35:57 +02005442 }
5443
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005444 /* encode all headers, stop at empty name. Host is only sent if we
5445 * do not provide an authority.
5446 */
Willy Tarreau80739692018-10-05 11:35:57 +02005447 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005448 struct ist n = list[hdr].n;
5449 struct ist v = list[hdr].v;
5450
Willy Tarreau80739692018-10-05 11:35:57 +02005451 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005452 if (isteq(n, ist("connection")) ||
5453 (auth.len && isteq(n, ist("host"))) ||
5454 isteq(n, ist("proxy-connection")) ||
5455 isteq(n, ist("keep-alive")) ||
5456 isteq(n, ist("upgrade")) ||
5457 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005458 continue;
5459
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005460 if (isteq(n, ist("te"))) {
5461 /* "te" may only be sent with "trailers" if this value
5462 * is present, otherwise it must be deleted.
5463 */
5464 v = istist(v, ist("trailers"));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01005465 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005466 continue;
5467 v = ist("trailers");
5468 }
5469
Christopher Faulet86d144c2019-08-14 16:32:25 +02005470 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005471 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005472 continue;
5473
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005474 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005475 break; // end
5476
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005477 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005478 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005479 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005480 goto realign_again;
5481 goto full;
5482 }
5483 }
5484
Willy Tarreaucb985a42019-10-07 16:56:34 +02005485 /* update the frame's size */
5486 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5487
5488 if (outbuf.data > h2c->mfs + 9) {
5489 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5490 /* output full */
5491 if (b_space_wraps(mbuf))
5492 goto realign_again;
5493 goto full;
5494 }
5495 }
5496
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005497 /* remove all header blocks including the EOH and compute the
5498 * corresponding size.
Willy Tarreau80739692018-10-05 11:35:57 +02005499 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005500 ret = 0;
5501 blk = htx_get_head_blk(htx);
5502 while (blk) {
5503 type = htx_get_blk_type(blk);
5504 ret += htx_get_blksz(blk);
5505 blk = htx_remove_blk(htx, blk);
5506 /* The removed block is the EOH */
5507 if (type == HTX_BLK_EOH)
5508 break;
Christopher Fauletd0db4232021-01-22 11:46:30 +01005509 }
Willy Tarreau80739692018-10-05 11:35:57 +02005510
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005511 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) {
5512 /* Request already closed: add END_STREAM */
Willy Tarreau80739692018-10-05 11:35:57 +02005513 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005514 }
5515 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5516 /* EOM+empty: we may need to add END_STREAM (except for CONNECT
5517 * request)
5518 */
5519 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5520 es_now = 1;
5521 }
Willy Tarreau80739692018-10-05 11:35:57 +02005522
Willy Tarreau80739692018-10-05 11:35:57 +02005523 if (es_now)
5524 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5525
5526 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02005527 TRACE_USER("sent H2 request", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
Willy Tarreaubcc45952019-05-26 10:05:50 +02005528 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005529 h2s->flags |= H2_SF_HEADERS_SENT;
5530 h2s->st = H2_SS_OPEN;
5531
Willy Tarreau80739692018-10-05 11:35:57 +02005532 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005533 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 +02005534 // trim any possibly pending data (eg: inconsistent content-length)
5535 h2s->flags |= H2_SF_ES_SENT;
5536 h2s->st = H2_SS_HLOC;
5537 }
5538
Willy Tarreau80739692018-10-05 11:35:57 +02005539 end:
5540 return ret;
5541 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005542 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5543 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005544 h2c->flags |= H2_CF_MUX_MFULL;
5545 h2s->flags |= H2_SF_BLK_MROOM;
5546 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005547 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 +02005548 goto end;
5549 fail:
5550 /* unparsable HTX messages, too large ones to be produced in the local
5551 * list etc go here (unrecoverable errors).
5552 */
5553 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5554 ret = 0;
5555 goto end;
5556}
5557
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005558/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005559 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5560 * caller must check the stream's status to detect any error which might have
5561 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005562 * consumed, or zero if nothing done.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005563 */
Christopher Faulet142854b2020-12-02 15:12:40 +01005564static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005565{
5566 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005567 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005568 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005569 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005570 size_t total = 0;
5571 int es_now = 0;
5572 int bsize; /* htx block size */
5573 int fsize; /* h2 frame size */
5574 struct htx_blk *blk;
5575 enum htx_blk_type type;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005576 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005577
Willy Tarreau7838a792019-08-12 18:42:03 +02005578 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5579
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005580 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005581 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005582 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005583 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005584 goto end;
5585 }
5586
Willy Tarreau98de12a2018-12-12 07:03:00 +01005587 htx = htx_from_buf(buf);
5588
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005589 /* We only come here with HTX_BLK_DATA blocks */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005590
5591 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005592 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005593 goto end;
5594
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005595 if ((h2c->flags & H2_CF_IS_BACK) &&
Christopher Fauletf95f8762021-01-22 11:59:07 +01005596 (h2s->flags & (H2_SF_HEADERS_RCVD|H2_SF_BODY_TUNNEL)) == H2_SF_BODY_TUNNEL) {
5597 /* The response HEADERS frame not received yet. Thus the tunnel
5598 * is not fully established yet. In this situation, we block
5599 * data sending.
5600 */
5601 h2s->flags |= H2_SF_BLK_MBUSY;
5602 TRACE_STATE("Request DATA frame blocked waiting for tunnel establishment", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5603 goto end;
5604 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01005605 else if ((h2c->flags & H2_CF_IS_BACK) && (h2s->flags & H2_SF_TUNNEL_ABRT)) {
5606 /* a tunnel attempt was aborted but the is pending raw data to xfer to the server.
5607 * Thus the stream is closed with the CANCEL error. The error will be reported to
5608 * the upper layer as aserver abort. But at this stage there is nothing more we can
5609 * do. We just wait for the end of the response to be sure to not truncate it.
5610 */
5611 if (!(h2s->flags & H2_SF_ES_RCVD)) {
5612 TRACE_STATE("Request DATA frame blocked waiting end of aborted tunnel", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5613 h2s->flags |= H2_SF_BLK_MBUSY;
5614 }
5615 else {
5616 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5617 h2s_error(h2s, H2_ERR_CANCEL);
5618 }
5619 goto end;
5620 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005621
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005622 blk = htx_get_head_blk(htx);
5623 type = htx_get_blk_type(blk);
5624 bsize = htx_get_blksz(blk);
5625 fsize = bsize;
5626 trunc_out = 0;
5627 if (type != HTX_BLK_DATA)
5628 goto end;
5629
Willy Tarreau9c218e72019-05-26 10:08:28 +02005630 mbuf = br_tail(h2c->mbuf);
5631 retry:
5632 if (!h2_get_buf(h2c, mbuf)) {
5633 h2c->flags |= H2_CF_MUX_MALLOC;
5634 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005635 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 +02005636 goto end;
5637 }
5638
Willy Tarreau98de12a2018-12-12 07:03:00 +01005639 /* Perform some optimizations to reduce the number of buffer copies.
5640 * First, if the mux's buffer is empty and the htx area contains
5641 * exactly one data block of the same size as the requested count, and
5642 * this count fits within the frame size, the stream's window size, and
5643 * the connection's window size, then it's possible to simply swap the
5644 * caller's buffer with the mux's output buffer and adjust offsets and
5645 * length to match the entire DATA HTX block in the middle. In this
5646 * case we perform a true zero-copy operation from end-to-end. This is
5647 * the situation that happens all the time with large files. Second, if
5648 * this is not possible, but the mux's output buffer is empty, we still
5649 * have an opportunity to avoid the copy to the intermediary buffer, by
5650 * making the intermediary buffer's area point to the output buffer's
5651 * area. In this case we want to skip the HTX header to make sure that
5652 * copies remain aligned and that this operation remains possible all
5653 * the time. This goes for headers, data blocks and any data extracted
5654 * from the HTX blocks.
5655 */
5656 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005657 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005658 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005659 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005660
Willy Tarreaubcc45952019-05-26 10:05:50 +02005661 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005662 /* Too bad there are data left there. We're willing to memcpy/memmove
5663 * up to 1/4 of the buffer, which means that it's OK to copy a large
5664 * frame into a buffer containing few data if it needs to be realigned,
5665 * and that it's also OK to copy few data without realigning. Otherwise
5666 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005667 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005668 if (fsize + 9 <= b_room(mbuf) &&
5669 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005670 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5671 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 +01005672 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005673 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005674
Willy Tarreau9c218e72019-05-26 10:08:28 +02005675 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5676 goto retry;
5677
Willy Tarreau98de12a2018-12-12 07:03:00 +01005678 h2c->flags |= H2_CF_MUX_MFULL;
5679 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005680 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 +01005681 goto end;
5682 }
5683
5684 /* map an H2 frame to the HTX block so that we can put the
5685 * frame header there.
5686 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005687 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5688 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005689
5690 /* prepend an H2 DATA frame header just before the DATA block */
5691 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5692 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5693 h2_set_frame_size(outbuf.area, fsize);
5694
5695 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005696 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005697 h2c->mws -= fsize;
5698
5699 /* and exchange with our old area */
5700 buf->area = old_area;
5701 buf->data = buf->head = 0;
5702 total += fsize;
Willy Tarreau7838a792019-08-12 18:42:03 +02005703
5704 TRACE_PROTO("sent H2 DATA frame (zero-copy)", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005705 goto end;
5706 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005707
Willy Tarreau98de12a2018-12-12 07:03:00 +01005708 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005709 /* for DATA and EOM we'll have to emit a frame, even if empty */
5710
5711 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005712 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5713 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005714 break;
5715 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005716 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005717 }
5718
5719 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005720 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5721 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005722 h2c->flags |= H2_CF_MUX_MFULL;
5723 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005724 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005725 goto end;
5726 }
5727
5728 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5729 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5730 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5731 outbuf.data = 9;
5732
5733 /* we have in <fsize> the exact number of bytes we need to copy from
5734 * the HTX buffer. We need to check this against the connection's and
5735 * the stream's send windows, and to ensure that this fits in the max
5736 * frame size and in the buffer's available space minus 9 bytes (for
5737 * the frame header). The connection's flow control is applied last so
5738 * that we can use a separate list of streams which are immediately
5739 * unblocked on window opening. Note: we don't implement padding.
5740 */
5741
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005742 if (!fsize)
5743 goto send_empty;
5744
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005745 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005746 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02005747 if (LIST_ADDED(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005748 LIST_DEL_INIT(&h2s->list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02005749 LIST_ADDQ(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005750 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 +01005751 goto end;
5752 }
5753
Willy Tarreauee573762018-12-04 15:25:57 +01005754 if (fsize > count)
5755 fsize = count;
5756
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005757 if (fsize > h2s_mws(h2s))
5758 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005759
5760 if (h2c->mfs && fsize > h2c->mfs)
5761 fsize = h2c->mfs; // >0
5762
5763 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005764 /* It doesn't fit at once. If it at least fits once split and
5765 * the amount of data to move is low, let's defragment the
5766 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005767 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005768 if (b_space_wraps(mbuf) &&
5769 (fsize + 9 <= b_room(mbuf)) &&
5770 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005771 goto realign_again;
5772 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005773 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005774
5775 if (fsize <= 0) {
5776 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005777 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5778 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005779 h2c->flags |= H2_CF_MUX_MFULL;
5780 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005781 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005782 goto end;
5783 }
5784 }
5785
5786 if (h2c->mws <= 0) {
5787 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005788 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 +01005789 goto end;
5790 }
5791
5792 if (fsize > h2c->mws)
5793 fsize = h2c->mws;
5794
5795 /* now let's copy this this into the output buffer */
5796 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005797 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005798 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005799 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005800
5801 send_empty:
5802 /* update the frame's size */
5803 h2_set_frame_size(outbuf.area, fsize);
5804
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005805 /* consume incoming HTX block */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005806 total += fsize;
5807 if (fsize == bsize) {
5808 htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005809 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5810 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5811 * message)
5812 */
5813 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5814 es_now = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02005815 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005816 }
5817 else {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005818 /* we've truncated this block */
5819 htx_cut_data_blk(htx, blk, fsize);
5820 }
5821
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005822 if (es_now)
5823 outbuf.area[4] |= H2_F_DATA_END_STREAM;
5824
5825 /* commit the H2 response */
5826 b_add(mbuf, fsize + 9);
5827
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005828 if (es_now) {
5829 if (h2s->st == H2_SS_OPEN)
5830 h2s->st = H2_SS_HLOC;
5831 else
5832 h2s_close(h2s);
5833
5834 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005835 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 +01005836 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005837 else if (fsize) {
5838 if (fsize == bsize) {
5839 TRACE_DEVEL("more data may be available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5840 goto new_frame;
5841 }
5842 else if (trunc_out) {
5843 /* we've truncated this block */
5844 goto new_frame;
5845 }
5846 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005847
5848 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005849 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005850 return total;
5851}
5852
Christopher Faulet991febd2020-12-02 15:17:31 +01005853/* Skip the message payload (DATA blocks) and emit an empty DATA frame with the
5854 * ES flag set for stream <h2s>. This function is called for response known to
5855 * have no payload. Only DATA blocks are skipped. This means the trailers are
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005856 * still emitted. The caller must check the stream's status to detect any error
Christopher Faulet991febd2020-12-02 15:17:31 +01005857 * which might have happened subsequently to a successful send. Returns the
5858 * number of data bytes consumed, or zero if nothing done.
5859 */
5860static size_t h2s_skip_data(struct h2s *h2s, struct buffer *buf, size_t count)
5861{
5862 struct h2c *h2c = h2s->h2c;
5863 struct htx *htx;
5864 int bsize; /* htx block size */
5865 int fsize; /* h2 frame size */
5866 struct htx_blk *blk;
5867 enum htx_blk_type type;
5868 size_t total = 0;
5869
5870 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5871
5872 if (h2c_mux_busy(h2c, h2s)) {
5873 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5874 h2s->flags |= H2_SF_BLK_MBUSY;
5875 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5876 goto end;
5877 }
5878
5879 htx = htx_from_buf(buf);
5880
5881 next_data:
5882 if (!count || htx_is_empty(htx))
5883 goto end;
5884 blk = htx_get_head_blk(htx);
5885 type = htx_get_blk_type(blk);
5886 bsize = htx_get_blksz(blk);
5887 fsize = bsize;
5888 if (type != HTX_BLK_DATA)
5889 goto end;
5890
5891 if (fsize > count)
5892 fsize = count;
5893
5894 if (fsize != bsize)
5895 goto skip_data;
5896
5897 if (!(htx->flags & HTX_FL_EOM) || !htx_is_unique_blk(htx, blk))
5898 goto skip_data;
5899
5900 /* Here, it is the last block and it is also the end of the message. So
5901 * we can emit an empty DATA frame with the ES flag set
5902 */
5903 if (h2_send_empty_data_es(h2s) <= 0)
5904 goto end;
5905
5906 if (h2s->st == H2_SS_OPEN)
5907 h2s->st = H2_SS_HLOC;
5908 else
5909 h2s_close(h2s);
5910
5911 skip_data:
5912 /* consume incoming HTX block */
5913 total += fsize;
5914 if (fsize == bsize) {
5915 TRACE_DEVEL("more data may be available, trying to skip another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5916 htx_remove_blk(htx, blk);
5917 goto next_data;
5918 }
5919 else {
5920 /* we've truncated this block */
5921 htx_cut_data_blk(htx, blk, fsize);
5922 }
5923
5924 end:
5925 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5926 return total;
5927}
5928
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005929/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
5930 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
5931 * processed. The caller must check the stream's status to detect any error
5932 * which might have happened subsequently to a successful send. The htx blocks
5933 * are automatically removed from the message. The htx message is assumed to be
5934 * valid since produced from the internal code. Processing stops when meeting
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005935 * the EOT, which *is* removed. All trailers are processed at once and sent as a
5936 * single frame. The ES flag is always set.
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005937 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005938static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005939{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005940 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005941 struct h2c *h2c = h2s->h2c;
5942 struct htx_blk *blk;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005943 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005944 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005945 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005946 int ret = 0;
5947 int hdr;
5948 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005949
Willy Tarreau7838a792019-08-12 18:42:03 +02005950 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5951
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005952 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005953 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005954 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005955 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005956 goto end;
5957 }
5958
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005959 /* get trailers. */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005960 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005961 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005962 type = htx_get_blk_type(blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005963
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005964 if (type == HTX_BLK_UNUSED)
5965 continue;
5966
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005967 if (type == HTX_BLK_EOT)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005968 break;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005969 if (type == HTX_BLK_TLR) {
5970 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5971 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5972 goto fail;
5973 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005974
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005975 list[hdr].n = htx_get_blk_name(htx, blk);
5976 list[hdr].v = htx_get_blk_value(htx, blk);
5977 hdr++;
5978 }
5979 else {
5980 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 +01005981 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005982 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005983 }
5984
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005985 /* marker for end of trailers */
5986 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005987
Willy Tarreau9c218e72019-05-26 10:08:28 +02005988 mbuf = br_tail(h2c->mbuf);
5989 retry:
5990 if (!h2_get_buf(h2c, mbuf)) {
5991 h2c->flags |= H2_CF_MUX_MALLOC;
5992 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005993 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 +02005994 goto end;
5995 }
5996
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005997 chunk_reset(&outbuf);
5998
5999 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006000 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6001 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006002 break;
6003 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006004 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006005 }
6006
6007 if (outbuf.size < 9)
6008 goto full;
6009
6010 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
6011 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
6012 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6013 outbuf.data = 9;
6014
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006015 /* encode all headers */
6016 for (idx = 0; idx < hdr; idx++) {
6017 /* these ones do not exist in H2 or must not appear in
6018 * trailers and must be dropped.
6019 */
6020 if (isteq(list[idx].n, ist("host")) ||
6021 isteq(list[idx].n, ist("content-length")) ||
6022 isteq(list[idx].n, ist("connection")) ||
6023 isteq(list[idx].n, ist("proxy-connection")) ||
6024 isteq(list[idx].n, ist("keep-alive")) ||
6025 isteq(list[idx].n, ist("upgrade")) ||
6026 isteq(list[idx].n, ist("te")) ||
6027 isteq(list[idx].n, ist("transfer-encoding")))
6028 continue;
6029
Christopher Faulet86d144c2019-08-14 16:32:25 +02006030 /* Skip all pseudo-headers */
6031 if (*(list[idx].n.ptr) == ':')
6032 continue;
6033
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006034 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
6035 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006036 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006037 goto realign_again;
6038 goto full;
6039 }
6040 }
6041
Willy Tarreau5121e5d2019-05-06 15:13:41 +02006042 if (outbuf.data == 9) {
6043 /* here we have a problem, we have nothing to emit (either we
6044 * received an empty trailers block followed or we removed its
6045 * contents above). Because of this we can't send a HEADERS
6046 * frame, so we have to cheat and instead send an empty DATA
6047 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01006048 */
6049 outbuf.area[3] = H2_FT_DATA;
6050 outbuf.area[4] = H2_F_DATA_END_STREAM;
6051 }
6052
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006053 /* update the frame's size */
6054 h2_set_frame_size(outbuf.area, outbuf.data - 9);
6055
Willy Tarreau572d9f52019-10-11 16:58:37 +02006056 if (outbuf.data > h2c->mfs + 9) {
6057 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
6058 /* output full */
6059 if (b_space_wraps(mbuf))
6060 goto realign_again;
6061 goto full;
6062 }
6063 }
6064
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006065 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02006066 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 +02006067 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006068 h2s->flags |= H2_SF_ES_SENT;
6069
6070 if (h2s->st == H2_SS_OPEN)
6071 h2s->st = H2_SS_HLOC;
6072 else
6073 h2s_close(h2s);
6074
6075 /* OK we could properly deliver the response */
6076 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02006077 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006078 ret = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006079 blk = htx_get_head_blk(htx);
6080 while (blk) {
6081 type = htx_get_blk_type(blk);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006082 ret += htx_get_blksz(blk);
6083 blk = htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006084 /* The removed block is the EOT */
6085 if (type == HTX_BLK_EOT)
6086 break;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006087 }
6088
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006089 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006090 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006091 return ret;
6092 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02006093 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6094 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006095 h2c->flags |= H2_CF_MUX_MFULL;
6096 h2s->flags |= H2_SF_BLK_MROOM;
6097 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006098 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 +01006099 goto end;
6100 fail:
6101 /* unparsable HTX messages, too large ones to be produced in the local
6102 * list etc go here (unrecoverable errors).
6103 */
6104 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
6105 ret = 0;
6106 goto end;
6107}
6108
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006109/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6110 * event subscriber <es> is not allowed to change from a previous call as long
6111 * as at least one event is still subscribed. The <event_type> must only be a
6112 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006113 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006114static int h2_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02006115{
Olivier Houchard6ff20392018-07-17 18:46:31 +02006116 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02006117 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006118
Willy Tarreau7838a792019-08-12 18:42:03 +02006119 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006120
6121 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006122 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006123
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006124 es->events |= event_type;
6125 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006126
6127 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006128 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006129
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006130 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006131 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02006132 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
6133 !LIST_ADDED(&h2s->list)) {
6134 if (h2s->flags & H2_SF_BLK_MFCTL)
6135 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
6136 else
6137 LIST_ADDQ(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02006138 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02006139 }
Willy Tarreau7838a792019-08-12 18:42:03 +02006140 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006141 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006142}
6143
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006144/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6145 * The <es> pointer is not allowed to differ from the one passed to the
6146 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006147 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006148static int h2_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006149{
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006150 struct h2s *h2s = cs->ctx;
6151
Willy Tarreau7838a792019-08-12 18:42:03 +02006152 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006153
6154 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006155 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006156
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006157 es->events &= ~event_type;
6158 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01006159 h2s->subs = NULL;
6160
6161 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006162 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006163
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006164 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006165 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006166 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006167 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
6168 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02006169 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01006170
Willy Tarreau7838a792019-08-12 18:42:03 +02006171 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006172 return 0;
6173}
6174
6175
Olivier Houchard511efea2018-08-16 15:30:32 +02006176/* Called from the upper layer, to receive data */
6177static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
6178{
Olivier Houchard638b7992018-08-16 15:41:52 +02006179 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01006180 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01006181 struct htx *h2s_htx = NULL;
6182 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02006183 size_t ret = 0;
6184
Willy Tarreau7838a792019-08-12 18:42:03 +02006185 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
6186
Olivier Houchard511efea2018-08-16 15:30:32 +02006187 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006188 h2s_htx = htx_from_buf(&h2s->rxbuf);
6189 if (htx_is_empty(h2s_htx)) {
6190 /* Here htx_to_buf() will set buffer data to 0 because
6191 * the HTX is empty.
6192 */
6193 htx_to_buf(h2s_htx, &h2s->rxbuf);
6194 goto end;
6195 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01006196
Christopher Faulet9b79a102019-07-15 11:22:56 +02006197 ret = h2s_htx->data;
6198 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01006199
Christopher Faulet9b79a102019-07-15 11:22:56 +02006200 /* <buf> is empty and the message is small enough, swap the
6201 * buffers. */
6202 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01006203 htx_to_buf(buf_htx, buf);
6204 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006205 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
6206 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01006207 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02006208
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006209 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_UNUSED);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006210
6211 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
6212 buf_htx->flags |= HTX_FL_PARSING_ERROR;
6213 if (htx_is_empty(buf_htx))
6214 cs->flags |= CS_FL_EOI;
Willy Tarreau86724e22018-12-01 23:19:43 +01006215 }
Christopher Faulet810df062020-07-22 16:20:34 +02006216 else if (htx_is_empty(h2s_htx))
Christopher Faulet42432f32020-11-20 17:43:16 +01006217 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006218
Christopher Faulet9b79a102019-07-15 11:22:56 +02006219 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
6220 htx_to_buf(buf_htx, buf);
6221 htx_to_buf(h2s_htx, &h2s->rxbuf);
6222 ret -= h2s_htx->data;
6223
Christopher Faulet37070b22019-02-14 15:12:14 +01006224 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02006225 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01006226 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006227 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01006228 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006229 if (h2s->flags & H2_SF_ES_RCVD) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02006230 cs->flags |= CS_FL_EOI;
Christopher Fauletd0db4232021-01-22 11:46:30 +01006231 /* Add EOS flag for tunnel */
6232 if (h2s->flags & H2_SF_BODY_TUNNEL)
6233 cs->flags |= CS_FL_EOS;
6234 }
Christopher Fauletaade4ed2020-10-08 15:38:41 +02006235 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02006236 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01006237 if (cs->flags & CS_FL_ERR_PENDING)
6238 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02006239 if (b_size(&h2s->rxbuf)) {
6240 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01006241 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02006242 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006243 }
6244
Willy Tarreau082f5592018-11-25 08:03:32 +01006245 if (ret && h2c->dsi == h2s->id) {
6246 /* demux is blocking on this stream's buffer */
6247 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006248 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006249 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006250
Willy Tarreau7838a792019-08-12 18:42:03 +02006251 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006252 return ret;
6253}
6254
Olivier Houchardd846c262018-10-19 17:24:29 +02006255
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006256/* Called from the upper layer, to send data from buffer <buf> for no more than
6257 * <count> bytes. Returns the number of bytes effectively sent. Some status
6258 * flags may be updated on the conn_stream.
6259 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02006260static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006261{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006262 struct h2s *h2s = cs->ctx;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006263 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006264 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006265 struct htx *htx;
6266 struct htx_blk *blk;
6267 enum htx_blk_type btype;
6268 uint32_t bsize;
6269 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006270
Willy Tarreau7838a792019-08-12 18:42:03 +02006271 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6272
Olivier Houchardd360ac62019-03-22 17:37:16 +01006273 /* If we were not just woken because we wanted to send but couldn't,
6274 * and there's somebody else that is waiting to send, do nothing,
6275 * we will subscribe later and be put at the end of the list
6276 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006277 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006278 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6279 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 +01006280 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006281 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006282 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006283
Willy Tarreau7838a792019-08-12 18:42:03 +02006284 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6285 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 +02006286 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006287 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006288
Willy Tarreaucab22952019-10-31 15:48:18 +01006289 if (h2s->h2c->st0 >= H2_CS_ERROR) {
6290 cs->flags |= CS_FL_ERROR;
6291 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);
6292 return 0;
6293 }
6294
Christopher Faulet9b79a102019-07-15 11:22:56 +02006295 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006296
Willy Tarreau0bad0432018-06-14 16:54:01 +02006297 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006298 h2s->flags |= H2_SF_OUTGOING_DATA;
6299
Willy Tarreau751f2d02018-10-05 09:35:00 +02006300 if (h2s->id == 0) {
6301 int32_t id = h2c_get_next_sid(h2s->h2c);
6302
6303 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02006304 cs->flags |= CS_FL_ERROR;
Willy Tarreau7838a792019-08-12 18:42:03 +02006305 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 +02006306 return 0;
6307 }
6308
6309 eb32_delete(&h2s->by_id);
6310 h2s->by_id.key = h2s->id = id;
6311 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006312 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006313 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6314 }
6315
Christopher Faulet9b79a102019-07-15 11:22:56 +02006316 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6317 count && !htx_is_empty(htx)) {
6318 idx = htx_get_head(htx);
6319 blk = htx_get_blk(htx, idx);
6320 btype = htx_get_blk_type(blk);
6321 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006322
Christopher Faulet9b79a102019-07-15 11:22:56 +02006323 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006324 case HTX_BLK_REQ_SL:
6325 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006326 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006327 if (ret > 0) {
6328 total += ret;
6329 count -= ret;
6330 if (ret < bsize)
6331 goto done;
6332 }
6333 break;
6334
Willy Tarreau115e83b2018-12-01 19:17:53 +01006335 case HTX_BLK_RES_SL:
6336 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006337 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006338 if (ret > 0) {
6339 total += ret;
6340 count -= ret;
6341 if (ret < bsize)
6342 goto done;
6343 }
6344 break;
6345
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006346 case HTX_BLK_DATA:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006347 /* all these cause the emission of a DATA frame (possibly empty) */
Christopher Faulet991febd2020-12-02 15:17:31 +01006348 if (!(h2s->h2c->flags & H2_CF_IS_BACK) &&
6349 (h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BODYLESS_RESP)) == H2_SF_BODYLESS_RESP)
6350 ret = h2s_skip_data(h2s, buf, count);
6351 else
6352 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006353 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006354 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006355 total += ret;
6356 count -= ret;
6357 if (ret < bsize)
6358 goto done;
6359 }
6360 break;
6361
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006362 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006363 case HTX_BLK_EOT:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006364 /* This is the first trailers block, all the subsequent ones */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006365 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006366 if (ret > 0) {
6367 total += ret;
6368 count -= ret;
6369 if (ret < bsize)
6370 goto done;
6371 }
6372 break;
6373
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006374 default:
6375 htx_remove_blk(htx, blk);
6376 total += bsize;
6377 count -= bsize;
6378 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006379 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006380 }
6381
Christopher Faulet9b79a102019-07-15 11:22:56 +02006382 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006383 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006384 /* trim any possibly pending data after we close (extra CR-LF,
6385 * unprocessed trailers, abnormal extra data, ...)
6386 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006387 total += count;
6388 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006389 }
6390
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006391 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006392 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006393 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 +01006394 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006395 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006396 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006397 }
6398
Christopher Faulet9b79a102019-07-15 11:22:56 +02006399 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006400
Olivier Houchard7505f942018-08-21 18:10:44 +02006401 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006402 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006403 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 +02006404 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006405 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006406
Olivier Houchard7505f942018-08-21 18:10:44 +02006407 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006408 /* If we're waiting for flow control, and we got a shutr on the
6409 * connection, we will never be unlocked, so add an error on
6410 * the conn_stream.
6411 */
6412 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
6413 !b_data(&h2s->h2c->dbuf) &&
6414 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006415 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 +01006416 if (cs->flags & CS_FL_EOS)
6417 cs->flags |= CS_FL_ERROR;
6418 else
6419 cs->flags |= CS_FL_ERR_PENDING;
6420 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006421
Willy Tarreau5723f292020-01-10 15:16:57 +01006422 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6423 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006424 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006425 LIST_DEL_INIT(&h2s->list);
6426 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006427
Willy Tarreau7838a792019-08-12 18:42:03 +02006428 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006429 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006430}
6431
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006432/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01006433static int h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006434{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01006435 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01006436 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006437 struct eb32_node *node;
6438 int fctl_cnt = 0;
6439 int send_cnt = 0;
6440 int tree_cnt = 0;
6441 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02006442 struct buffer *hmbuf, *tmbuf;
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006443 int ret = 0;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006444
6445 if (!h2c)
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006446 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006447
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006448 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006449 fctl_cnt++;
6450
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006451 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006452 send_cnt++;
6453
Willy Tarreau3af37712018-12-18 14:34:41 +01006454 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006455 node = eb32_first(&h2c->streams_by_id);
6456 while (node) {
6457 h2s = container_of(node, struct h2s, by_id);
6458 tree_cnt++;
6459 if (!h2s->cs)
6460 orph_cnt++;
6461 node = eb32_next(node);
6462 }
6463
Willy Tarreau60f62682019-05-26 11:32:27 +02006464 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006465 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006466 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau987c0632018-12-18 10:32:05 +01006467 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02006468 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
6469 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006470 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau616ac812018-07-24 14:12:42 +02006471 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006472 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006473 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
6474 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
6475 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02006476 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6477 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6478 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006479 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6480 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006481
6482 if (h2s) {
Willy Tarreaued4464e2021-01-20 15:50:03 +01006483 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 +02006484 h2s, h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
Willy Tarreau987c0632018-12-18 10:32:05 +01006485 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
6486 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
6487 h2s->cs);
6488 if (h2s->cs)
Willy Tarreau98e40b92021-01-20 16:27:01 +01006489 chunk_appendf(msg, "(.flg=0x%08x .data=%p)",
Willy Tarreau987c0632018-12-18 10:32:05 +01006490 h2s->cs->flags, h2s->cs->data);
Willy Tarreau98e40b92021-01-20 16:27:01 +01006491
6492 chunk_appendf(&trash, " .subs=%p", h2s->subs);
6493 if (h2s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01006494 chunk_appendf(&trash, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
6495 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
6496 h2s->subs->tasklet->calls,
6497 h2s->subs->tasklet->context);
6498 if (h2s->subs->tasklet->calls >= 1000000)
6499 ret = 1;
6500 resolve_sym_name(&trash, NULL, h2s->subs->tasklet->process);
6501 chunk_appendf(&trash, ")");
Willy Tarreau98e40b92021-01-20 16:27:01 +01006502 }
Willy Tarreau987c0632018-12-18 10:32:05 +01006503 }
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006504 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006505}
Willy Tarreau62f52692017-10-08 23:01:42 +02006506
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006507/* Migrate the the connection to the current thread.
6508 * Return 0 if successful, non-zero otherwise.
6509 * Expected to be called with the old thread lock held.
6510 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006511static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006512{
6513 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006514 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006515
6516 if (fd_takeover(conn->handle.fd, conn) != 0)
6517 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006518
6519 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6520 /* We failed to takeover the xprt, even if the connection may
6521 * still be valid, flag it as error'd, as we have already
6522 * taken over the fd, and wake the tasklet, so that it will
6523 * destroy it.
6524 */
6525 conn->flags |= CO_FL_ERROR;
6526 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6527 return -1;
6528 }
6529
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006530 if (h2c->wait_event.events)
6531 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6532 h2c->wait_event.events, &h2c->wait_event);
6533 /* To let the tasklet know it should free itself, and do nothing else,
6534 * set its context to NULL.
6535 */
6536 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006537 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006538
6539 task = h2c->task;
6540 if (task) {
6541 task->context = NULL;
6542 h2c->task = NULL;
6543 __ha_barrier_store();
6544 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006545
6546 h2c->task = task_new(tid_bit);
6547 if (!h2c->task) {
6548 h2_release(h2c);
6549 return -1;
6550 }
6551 h2c->task->process = h2_timeout_task;
6552 h2c->task->context = h2c;
6553 }
6554 h2c->wait_event.tasklet = tasklet_new();
6555 if (!h2c->wait_event.tasklet) {
6556 h2_release(h2c);
6557 return -1;
6558 }
6559 h2c->wait_event.tasklet->process = h2_io_cb;
6560 h2c->wait_event.tasklet->context = h2c;
6561 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6562 SUB_RETRY_RECV, &h2c->wait_event);
6563
6564 return 0;
6565}
6566
Willy Tarreau62f52692017-10-08 23:01:42 +02006567/*******************************************************/
6568/* functions below are dedicated to the config parsers */
6569/*******************************************************/
6570
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006571/* config parser for global "tune.h2.header-table-size" */
6572static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
6573 struct proxy *defpx, const char *file, int line,
6574 char **err)
6575{
6576 if (too_many_args(1, args, err, NULL))
6577 return -1;
6578
6579 h2_settings_header_table_size = atoi(args[1]);
6580 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6581 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6582 return -1;
6583 }
6584 return 0;
6585}
Willy Tarreau62f52692017-10-08 23:01:42 +02006586
Willy Tarreaue6baec02017-07-27 11:45:11 +02006587/* config parser for global "tune.h2.initial-window-size" */
6588static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
6589 struct proxy *defpx, const char *file, int line,
6590 char **err)
6591{
6592 if (too_many_args(1, args, err, NULL))
6593 return -1;
6594
6595 h2_settings_initial_window_size = atoi(args[1]);
6596 if (h2_settings_initial_window_size < 0) {
6597 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6598 return -1;
6599 }
6600 return 0;
6601}
6602
Willy Tarreau5242ef82017-07-27 11:47:28 +02006603/* config parser for global "tune.h2.max-concurrent-streams" */
6604static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
6605 struct proxy *defpx, const char *file, int line,
6606 char **err)
6607{
6608 if (too_many_args(1, args, err, NULL))
6609 return -1;
6610
6611 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006612 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006613 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6614 return -1;
6615 }
6616 return 0;
6617}
6618
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006619/* config parser for global "tune.h2.max-frame-size" */
6620static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
6621 struct proxy *defpx, const char *file, int line,
6622 char **err)
6623{
6624 if (too_many_args(1, args, err, NULL))
6625 return -1;
6626
6627 h2_settings_max_frame_size = atoi(args[1]);
6628 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6629 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6630 return -1;
6631 }
6632 return 0;
6633}
6634
Willy Tarreau62f52692017-10-08 23:01:42 +02006635
6636/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006637/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006638/***************************************/
6639
6640/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006641static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006642 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006643 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006644 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006645 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006646 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006647 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006648 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01006649 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02006650 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006651 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006652 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006653 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006654 .shutr = h2_shutr,
6655 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006656 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006657 .show_fd = h2_show_fd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006658 .takeover = h2_takeover,
Amaury Denoyelle3d3c0912020-10-14 18:17:06 +02006659 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX|MX_FL_HOL_RISK,
Willy Tarreau62f52692017-10-08 23:01:42 +02006660 .name = "H2",
6661};
6662
Christopher Faulet32f61c02018-04-10 14:33:41 +02006663static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006664 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006665
Willy Tarreau0108d902018-11-25 19:14:37 +01006666INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6667
Willy Tarreau62f52692017-10-08 23:01:42 +02006668/* config keyword parsers */
6669static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006670 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006671 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006672 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006673 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006674 { 0, NULL, NULL }
6675}};
6676
Willy Tarreau0108d902018-11-25 19:14:37 +01006677INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006678
6679/* initialize internal structs after the config is parsed.
6680 * Returns zero on success, non-zero on error.
6681 */
6682static int init_h2()
6683{
6684 pool_head_hpack_tbl = create_pool("hpack_tbl",
6685 h2_settings_header_table_size,
6686 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01006687 if (!pool_head_hpack_tbl) {
6688 ha_alert("failed to allocate hpack_tbl memory pool\n");
6689 return (ERR_ALERT | ERR_FATAL);
6690 }
6691 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006692}
6693
6694REGISTER_POST_CHECK(init_h2);