blob: d8a439b16fdf18622fd1d1492fdf900b126dadde [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
Christopher Fauleta9cc1e82021-07-26 12:06:53 +020061 // (SHORT_READ is also excluded)
62
63#define H2_CF_DEM_SHORT_READ 0x00080200 // demux blocked on incomplete frame
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020064
Willy Tarreau081d4722017-05-16 21:51:05 +020065/* other flags */
Willy Tarreauf2101912018-07-19 10:11:38 +020066#define H2_CF_GOAWAY_SENT 0x00001000 // a GOAWAY frame was successfully sent
67#define H2_CF_GOAWAY_FAILED 0x00002000 // a GOAWAY frame failed to be sent
68#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 +020069#define H2_CF_IS_BACK 0x00008000 // this is an outgoing connection
Willy Tarreau3d4631f2021-01-20 10:53:13 +010070#define H2_CF_WINDOW_OPENED 0x00010000 // demux increased window already advertised
71#define H2_CF_RCVD_SHUT 0x00020000 // a recv() attempt already failed on a shutdown
72#define H2_CF_END_REACHED 0x00040000 // pending data too short with RCVD_SHUT present
Willy Tarreau081d4722017-05-16 21:51:05 +020073
Willy Tarreau5ab6b572017-09-22 08:05:00 +020074/* H2 connection state, in h2c->st0 */
75enum h2_cs {
76 H2_CS_PREFACE, // init done, waiting for connection preface
77 H2_CS_SETTINGS1, // preface OK, waiting for first settings frame
78 H2_CS_FRAME_H, // first settings frame ok, waiting for frame header
79 H2_CS_FRAME_P, // frame header OK, waiting for frame payload
Willy Tarreaua20a5192017-12-27 11:02:06 +010080 H2_CS_FRAME_A, // frame payload OK, trying to send ACK frame
81 H2_CS_FRAME_E, // frame payload OK, trying to send RST frame
Willy Tarreau5ab6b572017-09-22 08:05:00 +020082 H2_CS_ERROR, // send GOAWAY(errcode) and close the connection ASAP
83 H2_CS_ERROR2, // GOAWAY(errcode) sent, close the connection ASAP
84 H2_CS_ENTRIES // must be last
85} __attribute__((packed));
86
Willy Tarreau51330962019-05-26 09:38:07 +020087
Willy Tarreau9c218e72019-05-26 10:08:28 +020088/* 32 buffers: one for the ring's root, rest for the mbuf itself */
89#define H2C_MBUF_CNT 32
Willy Tarreau51330962019-05-26 09:38:07 +020090
Willy Tarreau5ab6b572017-09-22 08:05:00 +020091/* H2 connection descriptor */
92struct h2c {
93 struct connection *conn;
94
95 enum h2_cs st0; /* mux state */
96 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
97
98 /* 16 bit hole here */
99 uint32_t flags; /* connection flags: H2_CF_* */
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100100 uint32_t streams_limit; /* maximum number of concurrent streams the peer supports */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200101 int32_t max_id; /* highest ID known on this connection, <0 before preface */
102 uint32_t rcvd_c; /* newly received data to ACK for the connection */
103 uint32_t rcvd_s; /* newly received data to ACK for the current stream (dsi) */
104
105 /* states for the demux direction */
106 struct hpack_dht *ddht; /* demux dynamic header table */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200107 struct buffer dbuf; /* demux buffer */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200108
109 int32_t dsi; /* demux stream ID (<0 = idle) */
110 int32_t dfl; /* demux frame length (if dsi >= 0) */
111 int8_t dft; /* demux frame type (if dsi >= 0) */
112 int8_t dff; /* demux frame flags (if dsi >= 0) */
Willy Tarreau05e5daf2017-12-11 15:17:36 +0100113 uint8_t dpl; /* demux pad length (part of dfl), init to 0 */
114 /* 8 bit hole here */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200115 int32_t last_sid; /* last processed stream ID for GOAWAY, <0 before preface */
116
117 /* states for the mux direction */
Willy Tarreau51330962019-05-26 09:38:07 +0200118 struct buffer mbuf[H2C_MBUF_CNT]; /* mux buffers (ring) */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200119 int32_t msi; /* mux stream ID (<0 = idle) */
120 int32_t mfl; /* mux frame length (if dsi >= 0) */
121 int8_t mft; /* mux frame type (if dsi >= 0) */
122 int8_t mff; /* mux frame flags (if dsi >= 0) */
123 /* 16 bit hole here */
124 int32_t miw; /* mux initial window size for all new streams */
125 int32_t mws; /* mux window size. Can be negative. */
126 int32_t mfs; /* mux's max frame size */
127
Willy Tarreauea392822017-10-31 10:02:25 +0100128 int timeout; /* idle timeout duration in ticks */
Willy Tarreau599391a2017-11-24 10:16:00 +0100129 int shut_timeout; /* idle timeout duration in ticks after GOAWAY was sent */
Willy Tarreau49745612017-12-03 18:56:02 +0100130 unsigned int nb_streams; /* number of streams in the tree */
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200131 unsigned int nb_cs; /* number of attached conn_streams */
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100132 unsigned int nb_reserved; /* number of reserved streams */
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100133 unsigned int stream_cnt; /* total number of streams seen */
Willy Tarreau0b37d652018-10-03 10:33:02 +0200134 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +0100135 struct task *task; /* timeout management task */
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100136 struct h2_counters *px_counters; /* h2 counters attached to proxy */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200137 struct eb_root streams_by_id; /* all active streams by their ID */
138 struct list send_list; /* list of blocked streams requesting to send */
139 struct list fctl_list; /* list of streams blocked by connection's fctl */
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200140 struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100141 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200142 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200143};
144
Willy Tarreau18312642017-10-11 07:57:07 +0200145/* H2 stream state, in h2s->st */
146enum h2_ss {
147 H2_SS_IDLE = 0, // idle
148 H2_SS_RLOC, // reserved(local)
149 H2_SS_RREM, // reserved(remote)
150 H2_SS_OPEN, // open
151 H2_SS_HREM, // half-closed(remote)
152 H2_SS_HLOC, // half-closed(local)
Willy Tarreau96060ba2017-10-16 18:34:34 +0200153 H2_SS_ERROR, // an error needs to be sent using RST_STREAM
Willy Tarreau18312642017-10-11 07:57:07 +0200154 H2_SS_CLOSED, // closed
155 H2_SS_ENTRIES // must be last
156} __attribute__((packed));
157
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200158#define H2_SS_MASK(state) (1UL << (state))
159#define H2_SS_IDLE_BIT (1UL << H2_SS_IDLE)
160#define H2_SS_RLOC_BIT (1UL << H2_SS_RLOC)
161#define H2_SS_RREM_BIT (1UL << H2_SS_RREM)
162#define H2_SS_OPEN_BIT (1UL << H2_SS_OPEN)
163#define H2_SS_HREM_BIT (1UL << H2_SS_HREM)
164#define H2_SS_HLOC_BIT (1UL << H2_SS_HLOC)
165#define H2_SS_ERROR_BIT (1UL << H2_SS_ERROR)
166#define H2_SS_CLOSED_BIT (1UL << H2_SS_CLOSED)
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200167
Willy Tarreau18312642017-10-11 07:57:07 +0200168/* HTTP/2 stream flags (32 bit), in h2s->flags */
169#define H2_SF_NONE 0x00000000
170#define H2_SF_ES_RCVD 0x00000001
171#define H2_SF_ES_SENT 0x00000002
172
173#define H2_SF_RST_RCVD 0x00000004 // received RST_STREAM
174#define H2_SF_RST_SENT 0x00000008 // sent RST_STREAM
175
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200176/* stream flags indicating the reason the stream is blocked */
177#define H2_SF_BLK_MBUSY 0x00000010 // blocked waiting for mux access (transient)
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200178#define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux (must be in send list)
179#define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl (must be in fctl list)
180#define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl (must be in blocked list)
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200181#define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above
182
Willy Tarreau454f9052017-10-26 19:40:35 +0200183/* stream flags indicating how data is supposed to be sent */
184#define H2_SF_DATA_CLEN 0x00000100 // data sent using content-length
Christopher Faulet7d247f02020-12-02 14:26:36 +0100185#define H2_SF_BODYLESS_RESP 0x00000200 /* Bodyless response message */
Christopher Fauletd0db4232021-01-22 11:46:30 +0100186#define H2_SF_BODY_TUNNEL 0x00000400 // Attempt to establish a Tunnelled stream (the result depends on the status code)
187
Willy Tarreau454f9052017-10-26 19:40:35 +0200188
Willy Tarreaud9464162020-01-10 18:25:07 +0100189#define H2_SF_NOTIFIED 0x00000800 // a paused stream was notified to try to send again
Willy Tarreau67434202017-11-06 20:20:51 +0100190#define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream
Willy Tarreauc4312d32017-11-07 12:01:53 +0100191#define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data
Willy Tarreau67434202017-11-06 20:20:51 +0100192
Willy Tarreau6cc85a52019-01-02 15:49:20 +0100193#define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream
194
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200195#define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy)
196#define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy)
Willy Tarreau3cf69fe2019-05-14 10:44:40 +0200197#define H2_SF_KILL_CONN 0x00020000 // kill the whole connection with this stream
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200198
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100199#define H2_SF_EXT_CONNECT_SENT 0x00040000 // rfc 8441 an Extended CONNECT has been sent
Amaury Denoyelleefe22762020-12-11 17:53:08 +0100200#define H2_SF_EXT_CONNECT_RCVD 0x00080000 // rfc 8441 an Extended CONNECT has been received and parsed
Christopher Fauletd0db4232021-01-22 11:46:30 +0100201
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100202#define H2_SF_TUNNEL_ABRT 0x00100000 // A tunnel attempt was aborted
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200203
Willy Tarreau18312642017-10-11 07:57:07 +0200204/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
Christopher Fauletfafd1b02020-11-03 18:25:52 +0100205 * it is being processed in the internal HTTP representation (HTX).
Willy Tarreau18312642017-10-11 07:57:07 +0200206 */
207struct h2s {
208 struct conn_stream *cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100209 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200210 struct h2c *h2c;
Willy Tarreau18312642017-10-11 07:57:07 +0200211 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200212 int32_t id; /* stream ID */
213 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200214 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200215 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
216 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200217 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100218 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200219 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Willy Tarreauf96508a2020-01-10 11:12:48 +0100220 struct wait_event *subs; /* recv wait_event the conn_stream associated is waiting on (via h2_subscribe) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200221 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Willy Tarreau5723f292020-01-10 15:16:57 +0100222 struct tasklet *shut_tl; /* deferred shutdown tasklet, to retry to send an RST after we failed to,
223 * in case there's no other subscription to do it */
Amaury Denoyelle74162742020-12-11 17:53:05 +0100224
225 char upgrade_protocol[16]; /* rfc 8441: requested protocol on Extended CONNECT */
Willy Tarreau18312642017-10-11 07:57:07 +0200226};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200227
Willy Tarreauc6405142017-09-21 20:23:50 +0200228/* descriptor for an h2 frame header */
229struct h2_fh {
230 uint32_t len; /* length, host order, 24 bits */
231 uint32_t sid; /* stream id, host order, 31 bits */
232 uint8_t ft; /* frame type */
233 uint8_t ff; /* frame flags */
234};
235
Willy Tarreau12ae2122019-08-08 18:23:12 +0200236/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200237static void h2_trace(enum trace_level level, uint64_t mask, \
238 const struct trace_source *src,
239 const struct ist where, const struct ist func,
240 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200241
242/* The event representation is split like this :
243 * strm - application layer
244 * h2s - internal H2 stream
245 * h2c - internal H2 connection
246 * conn - external connection
247 *
248 */
249static const struct trace_event h2_trace_events[] = {
250#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200251 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200252#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200253 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200254#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200255 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200256#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200257 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200258#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200259 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200260#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200261 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200262#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200263 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200264#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200265 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200266#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200267 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200268#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200269 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200270#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200271 { .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 +0200272#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200273 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200274#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200275 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200276#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200277 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200278#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200279 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200280#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200281 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200282#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200283 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200284#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200285 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200286#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200287 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200288#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200289 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200290#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200291 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200292#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200293 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200294#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200295 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200296#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200297 { .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 +0200298#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200299 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200300#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200301 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200302#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200303 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200304#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200305 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200306#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200307 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200308#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200309 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200310#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200311 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200312#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200313 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200314#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200315 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200316#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200317 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200318#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200319 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200320#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200321 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200322#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200323 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200324#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200325 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200326#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200327 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200328#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200329 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200330#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200331 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200332#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200333 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200334#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200335 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200336#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200337 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200338#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200339 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200340#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200341 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200342#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200343 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200344#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200345 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200346#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200347 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200348#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200349 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200350#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200351 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200352#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200353 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200354 { }
355};
356
357static const struct name_desc h2_trace_lockon_args[4] = {
358 /* arg1 */ { /* already used by the connection */ },
359 /* arg2 */ { .name="h2s", .desc="H2 stream" },
360 /* arg3 */ { },
361 /* arg4 */ { }
362};
363
364static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200365#define H2_VERB_CLEAN 1
366 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
367#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200368 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200369#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200370 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200371#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200372 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200373#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200374 { .name="complete", .desc="add full data dump when available" },
375 { /* end */ }
376};
377
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200378static struct trace_source trace_h2 __read_mostly = {
Willy Tarreau12ae2122019-08-08 18:23:12 +0200379 .name = IST("h2"),
380 .desc = "HTTP/2 multiplexer",
381 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200382 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200383 .known_events = h2_trace_events,
384 .lockon_args = h2_trace_lockon_args,
385 .decoding = h2_trace_decoding,
386 .report_events = ~0, // report everything by default
387};
388
389#define TRACE_SOURCE &trace_h2
390INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
391
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100392/* h2 stats module */
393enum {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100394 H2_ST_HEADERS_RCVD,
395 H2_ST_DATA_RCVD,
396 H2_ST_SETTINGS_RCVD,
397 H2_ST_RST_STREAM_RCVD,
398 H2_ST_GOAWAY_RCVD,
399
Amaury Denoyellea8879232020-10-27 17:16:03 +0100400 H2_ST_CONN_PROTO_ERR,
401 H2_ST_STRM_PROTO_ERR,
402 H2_ST_RST_STREAM_RESP,
403 H2_ST_GOAWAY_RESP,
404
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100405 H2_ST_OPEN_CONN,
406 H2_ST_OPEN_STREAM,
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100407 H2_ST_TOTAL_CONN,
408 H2_ST_TOTAL_STREAM,
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100409
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100410 H2_STATS_COUNT /* must be the last member of the enum */
411};
412
413static struct name_desc h2_stats[] = {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100414 [H2_ST_HEADERS_RCVD] = { .name = "h2_headers_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100415 .desc = "Total number of received HEADERS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100416 [H2_ST_DATA_RCVD] = { .name = "h2_data_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100417 .desc = "Total number of received DATA frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100418 [H2_ST_SETTINGS_RCVD] = { .name = "h2_settings_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100419 .desc = "Total number of received SETTINGS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100420 [H2_ST_RST_STREAM_RCVD] = { .name = "h2_rst_stream_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100421 .desc = "Total number of received RST_STREAM frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100422 [H2_ST_GOAWAY_RCVD] = { .name = "h2_goaway_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100423 .desc = "Total number of received GOAWAY frames" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100424
425 [H2_ST_CONN_PROTO_ERR] = { .name = "h2_detected_conn_protocol_errors",
426 .desc = "Total number of connection protocol errors" },
427 [H2_ST_STRM_PROTO_ERR] = { .name = "h2_detected_strm_protocol_errors",
428 .desc = "Total number of stream protocol errors" },
429 [H2_ST_RST_STREAM_RESP] = { .name = "h2_rst_stream_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100430 .desc = "Total number of RST_STREAM sent on detected error" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100431 [H2_ST_GOAWAY_RESP] = { .name = "h2_goaway_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100432 .desc = "Total number of GOAWAY sent on detected error" },
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100433
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100434 [H2_ST_OPEN_CONN] = { .name = "h2_open_connections",
435 .desc = "Count of currently open connections" },
436 [H2_ST_OPEN_STREAM] = { .name = "h2_backend_open_streams",
437 .desc = "Count of currently open streams" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100438 [H2_ST_TOTAL_CONN] = { .name = "h2_total_connections",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100439 .desc = "Total number of connections" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100440 [H2_ST_TOTAL_STREAM] = { .name = "h2_backend_total_streams",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100441 .desc = "Total number of streams" },
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100442};
443
444static struct h2_counters {
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100445 long long headers_rcvd; /* total number of HEADERS frame received */
446 long long data_rcvd; /* total number of DATA frame received */
447 long long settings_rcvd; /* total number of SETTINGS frame received */
448 long long rst_stream_rcvd; /* total number of RST_STREAM frame received */
449 long long goaway_rcvd; /* total number of GOAWAY frame received */
Amaury Denoyellea8879232020-10-27 17:16:03 +0100450
451 long long conn_proto_err; /* total number of protocol errors detected */
452 long long strm_proto_err; /* total number of protocol errors detected */
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100453 long long rst_stream_resp; /* total number of RST_STREAM frame sent on error */
454 long long goaway_resp; /* total number of GOAWAY frame sent on error */
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100455
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100456 long long open_conns; /* count of currently open connections */
457 long long open_streams; /* count of currently open streams */
458 long long total_conns; /* total number of connections */
459 long long total_streams; /* total number of streams */
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100460} h2_counters;
461
462static void h2_fill_stats(void *data, struct field *stats)
463{
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100464 struct h2_counters *counters = data;
465
466 stats[H2_ST_HEADERS_RCVD] = mkf_u64(FN_COUNTER, counters->headers_rcvd);
467 stats[H2_ST_DATA_RCVD] = mkf_u64(FN_COUNTER, counters->data_rcvd);
468 stats[H2_ST_SETTINGS_RCVD] = mkf_u64(FN_COUNTER, counters->settings_rcvd);
469 stats[H2_ST_RST_STREAM_RCVD] = mkf_u64(FN_COUNTER, counters->rst_stream_rcvd);
470 stats[H2_ST_GOAWAY_RCVD] = mkf_u64(FN_COUNTER, counters->goaway_rcvd);
Amaury Denoyellea8879232020-10-27 17:16:03 +0100471
472 stats[H2_ST_CONN_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->conn_proto_err);
473 stats[H2_ST_STRM_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->strm_proto_err);
474 stats[H2_ST_RST_STREAM_RESP] = mkf_u64(FN_COUNTER, counters->rst_stream_resp);
475 stats[H2_ST_GOAWAY_RESP] = mkf_u64(FN_COUNTER, counters->goaway_resp);
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100476
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100477 stats[H2_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
478 stats[H2_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
479 stats[H2_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
480 stats[H2_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100481}
482
483static struct stats_module h2_stats_module = {
484 .name = "h2",
485 .fill_stats = h2_fill_stats,
486 .stats = h2_stats,
487 .stats_count = H2_STATS_COUNT,
488 .counters = &h2_counters,
489 .counters_size = sizeof(h2_counters),
490 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
491 .clearable = 1,
492};
493
494INITCALL1(STG_REGISTER, stats_register_module, &h2_stats_module);
495
Willy Tarreau8ceae722018-11-26 11:58:30 +0100496/* the h2c connection pool */
497DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
498
499/* the h2s stream pool */
500DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
501
Willy Tarreaudc572362018-12-12 08:08:05 +0100502/* The default connection window size is 65535, it may only be enlarged using
503 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
504 * we'll pretend we already received the difference between the two to send
505 * an equivalent window update to enlarge it to 2G-1.
506 */
507#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
508
Willy Tarreau455d5682019-05-24 19:42:18 +0200509/* maximum amount of data we're OK with re-aligning for buffer optimizations */
510#define MAX_DATA_REALIGN 1024
511
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200512/* a few settings from the global section */
513static int h2_settings_header_table_size = 4096; /* initial value */
Willy Tarreaue6baec02017-07-27 11:45:11 +0200514static int h2_settings_initial_window_size = 65535; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100515static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100516static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200517
Willy Tarreau2a856182017-05-16 15:20:39 +0200518/* a dmumy closed stream */
519static const struct h2s *h2_closed_stream = &(const struct h2s){
520 .cs = NULL,
521 .h2c = NULL,
522 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100523 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100524 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200525 .id = 0,
526};
527
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100528/* a dmumy closed stream returning a PROTOCOL_ERROR error */
529static const struct h2s *h2_error_stream = &(const struct h2s){
530 .cs = NULL,
531 .h2c = NULL,
532 .st = H2_SS_CLOSED,
533 .errcode = H2_ERR_PROTOCOL_ERROR,
534 .flags = 0,
535 .id = 0,
536};
537
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100538/* a dmumy closed stream returning a REFUSED_STREAM error */
539static const struct h2s *h2_refused_stream = &(const struct h2s){
540 .cs = NULL,
541 .h2c = NULL,
542 .st = H2_SS_CLOSED,
543 .errcode = H2_ERR_REFUSED_STREAM,
544 .flags = 0,
545 .id = 0,
546};
547
Willy Tarreau2a856182017-05-16 15:20:39 +0200548/* and a dummy idle stream for use with any unannounced stream */
549static const struct h2s *h2_idle_stream = &(const struct h2s){
550 .cs = NULL,
551 .h2c = NULL,
552 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100553 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200554 .id = 0,
555};
556
Willy Tarreau144f84a2021-03-02 16:09:26 +0100557struct task *h2_timeout_task(struct task *t, void *context, unsigned int state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200558static int h2_send(struct h2c *h2c);
559static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200560static int h2_process(struct h2c *h2c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100561/* h2_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100562struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100563static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Amaury Denoyelle74162742020-12-11 17:53:05 +0100564static 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 +0100565static int h2_frt_transfer_data(struct h2s *h2s);
Willy Tarreau144f84a2021-03-02 16:09:26 +0100566struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state);
Olivier Houchardf502aca2018-12-14 19:42:40 +0100567static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100568static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200569
Willy Tarreauab2ec452019-08-30 07:07:08 +0200570/* returns a h2c state as an abbreviated 3-letter string, or "???" if unknown */
571static inline const char *h2c_st_to_str(enum h2_cs st)
572{
573 switch (st) {
574 case H2_CS_PREFACE: return "PRF";
575 case H2_CS_SETTINGS1: return "STG";
576 case H2_CS_FRAME_H: return "FRH";
577 case H2_CS_FRAME_P: return "FRP";
578 case H2_CS_FRAME_A: return "FRA";
579 case H2_CS_FRAME_E: return "FRE";
580 case H2_CS_ERROR: return "ERR";
581 case H2_CS_ERROR2: return "ER2";
582 default: return "???";
583 }
584}
585
586/* returns a h2s state as an abbreviated 3-letter string, or "???" if unknown */
587static inline const char *h2s_st_to_str(enum h2_ss st)
588{
589 switch (st) {
590 case H2_SS_IDLE: return "IDL"; // idle
591 case H2_SS_RLOC: return "RSL"; // reserved local
592 case H2_SS_RREM: return "RSR"; // reserved remote
593 case H2_SS_OPEN: return "OPN"; // open
594 case H2_SS_HREM: return "HCR"; // half-closed remote
595 case H2_SS_HLOC: return "HCL"; // half-closed local
596 case H2_SS_ERROR : return "ERR"; // error
597 case H2_SS_CLOSED: return "CLO"; // closed
598 default: return "???";
599 }
600}
601
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200602/* the H2 traces always expect that arg1, if non-null, is of type connection
603 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
604 * that arg3, if non-null, is either of type htx for tx headers, or of type
605 * buffer for everything else.
606 */
607static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
608 const struct ist where, const struct ist func,
609 const void *a1, const void *a2, const void *a3, const void *a4)
610{
611 const struct connection *conn = a1;
612 const struct h2c *h2c = conn ? conn->ctx : NULL;
613 const struct h2s *h2s = a2;
614 const struct buffer *buf = a3;
615 const struct htx *htx;
616 int pos;
617
618 if (!h2c) // nothing to add
619 return;
620
Willy Tarreau17104d42019-08-30 07:12:55 +0200621 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200622 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
623
Willy Tarreaue2f68e92021-06-16 17:47:24 +0200624 if (mask & H2_EV_H2C_NEW) // inside h2_init, otherwise it's hard to match conn & h2c
625 conn_append_debug_info(&trace_buf, conn, " : ");
626
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100627 if (h2c->errcode)
628 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
629
Willy Tarreau73db4342019-09-25 07:28:44 +0200630 if (h2c->dsi >= 0 &&
631 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
Willy Tarreau8520d872020-09-18 07:39:29 +0200632 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 +0200633 }
634
635 if (h2s) {
636 if (h2s->id <= 0)
637 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
638 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100639 if (h2s->id && h2s->errcode)
640 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200641 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200642 }
643
644 /* Let's dump decoded requests and responses right after parsing. They
645 * are traced at level USER with a few recognizable flags.
646 */
647 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
648 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
649 htx = htxbuf(buf); // recv req/res
650 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
651 htx = a3; // send req/res
652 else
653 htx = NULL;
654
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200655 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200656 const struct htx_blk *blk = htx_get_blk(htx, pos);
657 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
658 enum htx_blk_type type = htx_get_blk_type(blk);
659
660 if (type == HTX_BLK_REQ_SL)
661 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*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 else if (type == HTX_BLK_RES_SL)
667 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200668 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200669 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
670 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
671 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
672 }
673}
674
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200675
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100676/* Detect a pending read0 for a H2 connection. It happens if a read0 was
677 * already reported on a previous xprt->rcvbuf() AND a frame parser failed
678 * to parse pending data, confirming no more progress is possible because
679 * we're facing a truncated frame. The function returns 1 to report a read0
680 * or 0 otherwise.
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200681 */
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100682static inline int h2c_read0_pending(struct h2c *h2c)
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200683{
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100684 return !!(h2c->flags & H2_CF_END_REACHED);
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200685}
686
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200687/* returns true if the connection is allowed to expire, false otherwise. A
688 * connection may expire when:
689 * - it has no stream
690 * - it has data in the mux buffer
691 * - it has streams in the blocked list
692 * - it has streams in the fctl list
693 * - it has streams in the send list
694 * Otherwise it means some streams are waiting in the data layer and it should
695 * not expire.
696 */
697static inline int h2c_may_expire(const struct h2c *h2c)
698{
699 return eb_is_empty(&h2c->streams_by_id) ||
700 br_data(h2c->mbuf) ||
701 !LIST_ISEMPTY(&h2c->blocked_list) ||
702 !LIST_ISEMPTY(&h2c->fctl_list) ||
Willy Tarreaud9464162020-01-10 18:25:07 +0100703 !LIST_ISEMPTY(&h2c->send_list);
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200704}
705
Olivier Houchard7a977432019-03-21 15:47:13 +0100706static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200707h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100708{
709 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
710 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
711 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
712 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200713 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100714 (conn_xprt_read0_pending(h2c->conn) ||
715 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
716 return 1;
717
718 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100719}
720
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200721/*****************************************************/
722/* functions below are for dynamic buffer management */
723/*****************************************************/
724
Willy Tarreau315d8072017-12-10 22:17:57 +0100725/* indicates whether or not the we may call the h2_recv() function to attempt
726 * to receive data into the buffer and/or demux pending data. The condition is
727 * a bit complex due to some API limits for now. The rules are the following :
728 * - if an error or a shutdown was detected on the connection and the buffer
729 * is empty, we must not attempt to receive
730 * - if the demux buf failed to be allocated, we must not try to receive and
731 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100732 * - if no flag indicates a blocking condition, we may attempt to receive,
733 * regardless of whether the demux buffer is full or not, so that only
734 * de demux part decides whether or not to block. This is needed because
735 * the connection API indeed prevents us from re-enabling receipt that is
736 * already enabled in a polled state, so we must always immediately stop
737 * as soon as the demux can't proceed so as never to hit an end of read
738 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100739 * - otherwise must may not attempt
740 */
741static inline int h2_recv_allowed(const struct h2c *h2c)
742{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200743 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100744 (h2c->st0 >= H2_CS_ERROR ||
745 h2c->conn->flags & CO_FL_ERROR ||
746 conn_xprt_read0_pending(h2c->conn)))
747 return 0;
748
749 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100750 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100751 return 1;
752
753 return 0;
754}
755
Willy Tarreau47b515a2018-12-21 16:09:41 +0100756/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200757static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100758{
759 if (!h2_recv_allowed(h2c))
760 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200761 if ((!consider_buffer || !b_data(&h2c->dbuf))
762 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100763 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200764 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100765}
766
767
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100768/* returns true if the front connection has too many conn_streams attached */
769static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200770{
Willy Tarreaua8754662018-12-23 20:43:58 +0100771 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200772}
773
Willy Tarreau44e973f2018-03-01 17:49:30 +0100774/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
775 * flags are used to figure what buffer was requested. It returns 1 if the
776 * allocation succeeds, in which case the connection is woken up, or 0 if it's
777 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200778 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100779static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200780{
781 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100782 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200783
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100784 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc(&h2c->dbuf)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200785 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200786 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200787 return 1;
788 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200789
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100790 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc(br_tail(h2c->mbuf))) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100791 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200792
793 if (h2c->flags & H2_CF_DEM_MROOM) {
794 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200795 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200796 }
Willy Tarreau14398122017-09-22 14:26:04 +0200797 return 1;
798 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100799
800 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
801 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100802 b_alloc(&h2s->rxbuf)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100803 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200804 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100805 return 1;
806 }
807
Willy Tarreau14398122017-09-22 14:26:04 +0200808 return 0;
809}
810
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200811static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200812{
813 struct buffer *buf = NULL;
814
Willy Tarreau2b718102021-04-21 07:32:39 +0200815 if (likely(!LIST_INLIST(&h2c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100816 unlikely((buf = b_alloc(bptr)) == NULL)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100817 h2c->buf_wait.target = h2c;
818 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreau2b718102021-04-21 07:32:39 +0200819 LIST_APPEND(&ti->buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200820 }
821 return buf;
822}
823
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200824static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200825{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200826 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100827 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100828 offer_buffers(NULL, 1);
Willy Tarreau14398122017-09-22 14:26:04 +0200829 }
830}
831
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200832static inline void h2_release_mbuf(struct h2c *h2c)
833{
834 struct buffer *buf;
835 unsigned int count = 0;
836
837 while (b_size(buf = br_head_pick(h2c->mbuf))) {
838 b_free(buf);
839 count++;
840 }
841 if (count)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100842 offer_buffers(NULL, count);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200843}
844
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100845/* returns the number of allocatable outgoing streams for the connection taking
846 * the last_sid and the reserved ones into account.
847 */
848static inline int h2_streams_left(const struct h2c *h2c)
849{
850 int ret;
851
852 /* consider the number of outgoing streams we're allowed to create before
853 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
854 * nb_reserved is the number of streams which don't yet have an ID.
855 */
856 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
857 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
858 if (ret < 0)
859 ret = 0;
860 return ret;
861}
862
Willy Tarreau00f18a32019-01-26 12:19:01 +0100863/* returns the number of streams in use on a connection to figure if it's
864 * idle or not. We check nb_cs and not nb_streams as the caller will want
865 * to know if it was the last one after a detach().
866 */
867static int h2_used_streams(struct connection *conn)
868{
869 struct h2c *h2c = conn->ctx;
870
871 return h2c->nb_cs;
872}
873
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100874/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100875static int h2_avail_streams(struct connection *conn)
876{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100877 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100878 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100879 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100880
Willy Tarreau6afec462019-01-28 06:40:19 +0100881 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
882 * streams on the connection.
883 */
884 if (h2c->last_sid >= 0)
885 return 0;
886
Willy Tarreauc61966f2019-10-31 15:10:03 +0100887 if (h2c->st0 >= H2_CS_ERROR)
888 return 0;
889
Willy Tarreau86949782019-01-31 10:42:05 +0100890 /* note: may be negative if a SETTINGS frame changes the limit */
891 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100892
893 /* we must also consider the limit imposed by stream IDs */
894 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100895 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100896 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100897 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
898 ret1 = MIN(ret1, ret2);
899 }
900 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100901}
902
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200903
Willy Tarreau62f52692017-10-08 23:01:42 +0200904/*****************************************************************/
905/* functions below are dedicated to the mux setup and management */
906/*****************************************************************/
907
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200908/* Initialize the mux once it's attached. For outgoing connections, the context
909 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200910 * connections from the fact that the context is still NULL (even during mux
911 * upgrades). <input> is always used as Input buffer and may contain data. It is
912 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200913 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200914static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
915 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200916{
917 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100918 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200919 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200920
Christopher Fauletf81ef032019-10-04 15:19:43 +0200921 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200922
Willy Tarreaubafbe012017-11-24 17:34:44 +0100923 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200924 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200925 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200926
Christopher Faulete9b70722019-04-08 10:46:02 +0200927 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200928 h2c->flags = H2_CF_IS_BACK;
929 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
930 if (tick_isset(prx->timeout.serverfin))
931 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100932
933 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
934 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200935 } else {
936 h2c->flags = H2_CF_NONE;
937 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
938 if (tick_isset(prx->timeout.clientfin))
939 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100940
941 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
942 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200943 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100944
Willy Tarreau0b37d652018-10-03 10:33:02 +0200945 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100946 h2c->task = NULL;
Willy Tarreau3f133572017-10-31 19:21:06 +0100947 if (tick_isset(h2c->timeout)) {
948 t = task_new(tid_bit);
949 if (!t)
950 goto fail;
951
952 h2c->task = t;
953 t->process = h2_timeout_task;
954 t->context = h2c;
955 t->expire = tick_add(now_ms, h2c->timeout);
956 }
Willy Tarreauea392822017-10-31 10:02:25 +0100957
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200958 h2c->wait_event.tasklet = tasklet_new();
959 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200960 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200961 h2c->wait_event.tasklet->process = h2_io_cb;
962 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100963 h2c->wait_event.events = 0;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200964 if (!conn_is_back(conn)) {
965 /* Connection might already be in the stopping_list if subject
966 * to h1->h2 upgrade.
967 */
968 if (!LIST_INLIST(&conn->stopping_list)) {
969 LIST_APPEND(&mux_stopping_data[tid].list,
970 &conn->stopping_list);
971 }
972 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200973
Willy Tarreau2bdcc702020-05-19 11:31:11 +0200974 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +0200975 if (!h2c->ddht)
976 goto fail;
977
978 /* Initialise the context. */
979 h2c->st0 = H2_CS_PREFACE;
980 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100981 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200982 h2c->max_id = -1;
983 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100984 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200985 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +0100986 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200987 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100988 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100989 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200990
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200991 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200992 h2c->dsi = -1;
993 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100994
Willy Tarreau32218eb2017-09-22 08:07:25 +0200995 h2c->last_sid = -1;
996
Willy Tarreau51330962019-05-26 09:38:07 +0200997 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +0200998 h2c->miw = 65535; /* mux initial window size */
999 h2c->mws = 65535; /* mux window size */
1000 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +02001001 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001002 LIST_INIT(&h2c->send_list);
1003 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02001004 LIST_INIT(&h2c->blocked_list);
Willy Tarreau90f366b2021-02-20 11:49:49 +01001005 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001006
Christopher Fauletf81ef032019-10-04 15:19:43 +02001007 conn->ctx = h2c;
1008
Willy Tarreaue2f68e92021-06-16 17:47:24 +02001009 TRACE_USER("new H2 connection", H2_EV_H2C_NEW, conn);
1010
Willy Tarreau3f133572017-10-31 19:21:06 +01001011 if (t)
1012 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +01001013
Willy Tarreau01b44822018-10-03 14:26:37 +02001014 if (h2c->flags & H2_CF_IS_BACK) {
1015 /* FIXME: this is temporary, for outgoing connections we need
1016 * to immediately allocate a stream until the code is modified
1017 * so that the caller calls ->attach(). For now the outgoing cs
Christopher Fauletf81ef032019-10-04 15:19:43 +02001018 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +02001019 */
1020 struct h2s *h2s;
1021
Christopher Fauletf81ef032019-10-04 15:19:43 +02001022 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +02001023 if (!h2s)
1024 goto fail_stream;
1025 }
1026
Willy Tarreau4781b152021-04-06 13:53:36 +02001027 HA_ATOMIC_INC(&h2c->px_counters->open_conns);
1028 HA_ATOMIC_INC(&h2c->px_counters->total_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001029
Willy Tarreau0f383582018-10-03 14:22:21 +02001030 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02001031 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001032 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001033 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +02001034 fail_stream:
1035 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +02001036 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001037 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001038 if (h2c->wait_event.tasklet)
1039 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001040 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +02001041 fail_no_h2c:
Christopher Fauletf81ef032019-10-04 15:19:43 +02001042 conn->ctx = conn_ctx; /* restore saved ctx */
1043 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001044 return -1;
1045}
1046
Willy Tarreau751f2d02018-10-05 09:35:00 +02001047/* returns the next allocatable outgoing stream ID for the H2 connection, or
1048 * -1 if no more is allocatable.
1049 */
1050static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1051{
1052 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001053
1054 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001055 id = -1;
1056 return id;
1057}
1058
Willy Tarreau2373acc2017-10-12 17:35:14 +02001059/* returns the stream associated with id <id> or NULL if not found */
1060static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1061{
1062 struct eb32_node *node;
1063
Willy Tarreau751f2d02018-10-05 09:35:00 +02001064 if (id == 0)
1065 return (struct h2s *)h2_closed_stream;
1066
Willy Tarreau2a856182017-05-16 15:20:39 +02001067 if (id > h2c->max_id)
1068 return (struct h2s *)h2_idle_stream;
1069
Willy Tarreau2373acc2017-10-12 17:35:14 +02001070 node = eb32_lookup(&h2c->streams_by_id, id);
1071 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001072 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001073
1074 return container_of(node, struct h2s, by_id);
1075}
1076
Christopher Faulet73c12072019-04-08 11:23:22 +02001077/* release function. This one should be called to free all resources allocated
1078 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001079 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001080static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001081{
William Dauchy477757c2020-08-07 22:19:23 +02001082 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001083
Willy Tarreau7838a792019-08-12 18:42:03 +02001084 TRACE_ENTER(H2_EV_H2C_END);
1085
Willy Tarreau32218eb2017-09-22 08:07:25 +02001086 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +02001087 /* The connection must be aattached to this mux to be released */
1088 if (h2c->conn && h2c->conn->ctx == h2c)
1089 conn = h2c->conn;
1090
Willy Tarreau7838a792019-08-12 18:42:03 +02001091 TRACE_DEVEL("freeing h2c", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001092 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +02001093
Willy Tarreau2b718102021-04-21 07:32:39 +02001094 if (LIST_INLIST(&h2c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +01001095 LIST_DEL_INIT(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001096
Willy Tarreau44e973f2018-03-01 17:49:30 +01001097 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +02001098 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +01001099
Willy Tarreauea392822017-10-31 10:02:25 +01001100 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +02001101 h2c->task->context = NULL;
1102 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +01001103 h2c->task = NULL;
1104 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001105 if (h2c->wait_event.tasklet)
1106 tasklet_free(h2c->wait_event.tasklet);
Christopher Faulet21d849f2019-09-18 11:07:20 +02001107 if (conn && h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001108 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Christopher Faulet21d849f2019-09-18 11:07:20 +02001109 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001110
Willy Tarreau4781b152021-04-06 13:53:36 +02001111 HA_ATOMIC_DEC(&h2c->px_counters->open_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001112
Willy Tarreaubafbe012017-11-24 17:34:44 +01001113 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001114 }
1115
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001116 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001117 if (!conn_is_back(conn))
1118 LIST_DEL_INIT(&conn->stopping_list);
1119
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001120 conn->mux = NULL;
1121 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001122 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001123
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001124 conn_stop_tracking(conn);
Willy Tarreaudaa0e5f2021-10-21 22:24:31 +02001125
1126 /* there might be a GOAWAY frame still pending in the TCP
1127 * stack, and if the peer continues to send (i.e. window
1128 * updates etc), this can result in losing the GOAWAY. For
1129 * this reason we try to drain anything received in between.
1130 */
1131 conn->flags |= CO_FL_WANT_DRAIN;
1132
1133 conn_xprt_shutw(conn);
1134 conn_xprt_close(conn);
1135 conn_sock_shutw(conn, !conn_is_back(conn));
1136 conn_ctrl_close(conn);
1137
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001138 if (conn->destroy_cb)
1139 conn->destroy_cb(conn);
1140 conn_free(conn);
1141 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001142
1143 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001144}
1145
1146
Willy Tarreau71681172017-10-23 14:39:06 +02001147/******************************************************/
1148/* functions below are for the H2 protocol processing */
1149/******************************************************/
1150
1151/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001152static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001153{
1154 return h2s ? h2s->id : 0;
1155}
1156
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001157/* returns the sum of the stream's own window size and the mux's initial
1158 * window, which together form the stream's effective window size.
1159 */
1160static inline int h2s_mws(const struct h2s *h2s)
1161{
1162 return h2s->sws + h2s->h2c->miw;
1163}
1164
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001165/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001166static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001167{
1168 if (h2c->msi < 0)
1169 return 0;
1170
1171 if (h2c->msi == h2s_id(h2s))
1172 return 0;
1173
1174 return 1;
1175}
1176
Willy Tarreau741d6df2017-10-17 08:00:59 +02001177/* marks an error on the connection */
Willy Tarreau1f094672017-11-20 21:27:45 +01001178static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001179{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001180 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001181 h2c->errcode = err;
1182 h2c->st0 = H2_CS_ERROR;
1183}
1184
Willy Tarreau175cebb2019-01-24 10:02:24 +01001185/* marks an error on the stream. It may also update an already closed stream
1186 * (e.g. to report an error after an RST was received).
1187 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001188static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001189{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001190 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001191 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001192 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001193 if (h2s->st < H2_SS_ERROR)
1194 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +01001195 if (h2s->cs)
1196 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001197 }
1198}
1199
Willy Tarreau7e094452018-12-19 18:08:52 +01001200/* attempt to notify the data layer of recv availability */
1201static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1202{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001203 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001204 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001205 tasklet_wakeup(h2s->subs->tasklet);
1206 h2s->subs->events &= ~SUB_RETRY_RECV;
1207 if (!h2s->subs->events)
1208 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001209 }
1210}
1211
1212/* attempt to notify the data layer of send availability */
1213static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1214{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001215 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001216 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001217 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001218 tasklet_wakeup(h2s->subs->tasklet);
1219 h2s->subs->events &= ~SUB_RETRY_SEND;
1220 if (!h2s->subs->events)
1221 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001222 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001223 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1224 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1225 tasklet_wakeup(h2s->shut_tl);
1226 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001227}
1228
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001229/* alerts the data layer, trying to wake it up by all means, following
1230 * this sequence :
1231 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1232 * - if its subscribed to send, then it's woken up for send
1233 * - if it was subscribed to neither, its ->wake() callback is called
1234 * It is safe to call this function with a closed stream which doesn't have a
1235 * conn_stream anymore.
1236 */
1237static void __maybe_unused h2s_alert(struct h2s *h2s)
1238{
Willy Tarreau7838a792019-08-12 18:42:03 +02001239 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1240
Willy Tarreauf96508a2020-01-10 11:12:48 +01001241 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001242 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001243 h2s_notify_recv(h2s);
1244 h2s_notify_send(h2s);
1245 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001246 else if (h2s->cs && h2s->cs->data_cb->wake != NULL) {
1247 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001248 h2s->cs->data_cb->wake(h2s->cs);
Willy Tarreau7838a792019-08-12 18:42:03 +02001249 }
1250
1251 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001252}
1253
Willy Tarreaue4820742017-07-27 13:37:23 +02001254/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001255static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001256{
1257 uint8_t *out = frame;
1258
1259 *out = len >> 16;
1260 write_n16(out + 1, len);
1261}
1262
Willy Tarreau54c15062017-10-10 17:10:03 +02001263/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1264 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1265 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001266 * available in the buffer's input prior to calling this function. The buffer
1267 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001268 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001269static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001270 const struct buffer *b, int o)
1271{
Willy Tarreau591d4452018-06-15 17:21:00 +02001272 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 +02001273}
1274
Willy Tarreau1f094672017-11-20 21:27:45 +01001275static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001276{
Willy Tarreau591d4452018-06-15 17:21:00 +02001277 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001278}
1279
Willy Tarreau1f094672017-11-20 21:27:45 +01001280static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001281{
Willy Tarreau591d4452018-06-15 17:21:00 +02001282 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001283}
1284
Willy Tarreau1f094672017-11-20 21:27:45 +01001285static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001286{
Willy Tarreau591d4452018-06-15 17:21:00 +02001287 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001288}
1289
1290
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001291/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1292 * The algorithm is not obvious. It turns out that H2 headers are neither
1293 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1294 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001295 *
1296 * b0 b1 b2 b3 b4 b5..b8
1297 * +----------+---------+--------+----+----+----------------------+
1298 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1299 * +----------+---------+--------+----+----+----------------------+
1300 *
1301 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1302 * we get the sid properly aligned and ordered, and 16 bits of len properly
1303 * ordered as well. The type and flags can be extracted using bit shifts from
1304 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001305 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1306 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001307 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001308static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001309{
1310 uint64_t w;
1311
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001312 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001313 return 0;
1314
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001315 w = h2_get_n64(b, o + 1);
1316 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001317 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1318 h->ff = w >> 32;
1319 h->ft = w >> 40;
1320 h->len += w >> 48;
1321 return 1;
1322}
1323
1324/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1325 * h2_peek_frame_hdr() above.
1326 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001327static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001328{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001329 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001330}
1331
1332/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001333static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001334{
1335 int ret;
1336
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001337 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001338 if (ret > 0)
1339 h2_skip_frame_hdr(b);
1340 return ret;
1341}
1342
Willy Tarreaucb985a42019-10-07 16:56:34 +02001343
1344/* try to fragment the headers frame present at the beginning of buffer <b>,
1345 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1346 * success. Typical causes of failure include a buffer not large enough to
1347 * add extra frame headers. The existing frame size is read in the current
1348 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1349 * and its length will be adjusted. The stream ID for continuation frames will
1350 * be copied from the initial frame's.
1351 */
1352static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1353{
1354 size_t remain = b->data - 9;
1355 int extra_frames = (remain - 1) / mfs;
1356 size_t fsize;
1357 char *fptr;
1358 int frame;
1359
1360 if (b->data <= mfs + 9)
1361 return 1;
1362
1363 /* Too large a frame, we need to fragment it using CONTINUATION
1364 * frames. We start from the end and move tails as needed.
1365 */
1366 if (b->data + extra_frames * 9 > b->size)
1367 return 0;
1368
1369 for (frame = extra_frames; frame; frame--) {
1370 fsize = ((remain - 1) % mfs) + 1;
1371 remain -= fsize;
1372
1373 /* move data */
1374 fptr = b->area + 9 + remain + (frame - 1) * 9;
1375 memmove(fptr + 9, b->area + 9 + remain, fsize);
1376 b->data += 9;
1377
1378 /* write new frame header */
1379 h2_set_frame_size(fptr, fsize);
1380 fptr[3] = H2_FT_CONTINUATION;
1381 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1382 write_n32(fptr + 5, read_n32(b->area + 5));
1383 }
1384
1385 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1386 h2_set_frame_size(b->area, remain);
1387 return 1;
1388}
1389
1390
Willy Tarreau00dd0782018-03-01 16:31:34 +01001391/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1392 * its connection if the stream was not yet closed. Please use this exclusively
1393 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001394 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001395static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001396{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001397 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001398 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001399 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001400 if (!h2s->id)
1401 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +01001402 if (h2s->cs) {
Willy Tarreaua27db382019-03-25 18:13:16 +01001403 if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf))
1404 h2s_notify_recv(h2s);
1405 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001406 HA_ATOMIC_DEC(&h2s->h2c->px_counters->open_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001407
Willy Tarreau7838a792019-08-12 18:42:03 +02001408 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001409 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001410 h2s->st = H2_SS_CLOSED;
1411}
1412
Willy Tarreau71049cc2018-03-28 13:56:39 +02001413/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001414/* h2s_destroy should only ever be called by the thread that owns the stream,
1415 * that means that a tasklet should be used if we want to destroy the h2s
1416 * from another thread
1417 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001418static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001419{
Willy Tarreau7838a792019-08-12 18:42:03 +02001420 struct connection *conn = h2s->h2c->conn;
1421
1422 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1423
Willy Tarreau0a10de62018-03-01 16:27:53 +01001424 h2s_close(h2s);
1425 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001426 if (b_size(&h2s->rxbuf)) {
1427 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01001428 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02001429 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001430
1431 if (h2s->subs)
1432 h2s->subs->events = 0;
1433
Joseph Herlantd77575d2018-11-25 10:54:45 -08001434 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001435 * reference left would be in the h2c send_list/fctl_list, and if
1436 * we're in it, we're getting out anyway
1437 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001438 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001439
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001440 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001441 tasklet_free(h2s->shut_tl);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001442 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001443
1444 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001445}
1446
Willy Tarreaua8e49542018-10-03 18:53:55 +02001447/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1448 * stream tree. In case of error, nothing is added and NULL is returned. The
1449 * causes of errors can be any failed memory allocation. The caller is
1450 * responsible for checking if the connection may support an extra stream
1451 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001452 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001453static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001454{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001455 struct h2s *h2s;
1456
Willy Tarreau7838a792019-08-12 18:42:03 +02001457 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1458
Willy Tarreaubafbe012017-11-24 17:34:44 +01001459 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001460 if (!h2s)
1461 goto out;
1462
Willy Tarreau5723f292020-01-10 15:16:57 +01001463 h2s->shut_tl = tasklet_new();
1464 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001465 pool_free(pool_head_h2s, h2s);
1466 goto out;
1467 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001468 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001469 h2s->shut_tl->process = h2_deferred_shut;
1470 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001471 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001472 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001473 h2s->cs = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001474 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001475 h2s->flags = H2_SF_NONE;
1476 h2s->errcode = H2_ERR_NO_ERROR;
1477 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001478 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001479 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001480 h2s->rxbuf = BUF_NULL;
Amaury Denoyelle74162742020-12-11 17:53:05 +01001481 memset(h2s->upgrade_protocol, 0, sizeof(h2s->upgrade_protocol));
Willy Tarreau751f2d02018-10-05 09:35:00 +02001482
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001483 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001484 if (id > 0)
1485 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001486 else
1487 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001488
1489 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001490 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001491 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001492
Willy Tarreau4781b152021-04-06 13:53:36 +02001493 HA_ATOMIC_INC(&h2c->px_counters->open_streams);
1494 HA_ATOMIC_INC(&h2c->px_counters->total_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001495
Willy Tarreau7838a792019-08-12 18:42:03 +02001496 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001497 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001498 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001499 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001500 return NULL;
1501}
1502
1503/* creates a new stream <id> on the h2c connection and returns it, or NULL in
Christopher Faulet7d013e72020-12-15 16:56:50 +01001504 * case of memory allocation error. <input> is used as input buffer for the new
1505 * stream. On success, it is transferred to the stream and the mux is no longer
1506 * responsible of it. On error, <input> is unchanged, thus the mux must still
1507 * take care of it.
Willy Tarreaua8e49542018-10-03 18:53:55 +02001508 */
Christopher Faulet7d013e72020-12-15 16:56:50 +01001509static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id, struct buffer *input)
Willy Tarreaua8e49542018-10-03 18:53:55 +02001510{
1511 struct session *sess = h2c->conn->owner;
1512 struct conn_stream *cs;
1513 struct h2s *h2s;
1514
Willy Tarreau7838a792019-08-12 18:42:03 +02001515 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1516
Willy Tarreaua8e49542018-10-03 18:53:55 +02001517 if (h2c->nb_streams >= h2_settings_max_concurrent_streams)
1518 goto out;
1519
1520 h2s = h2s_new(h2c, id);
1521 if (!h2s)
1522 goto out;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001523
Christopher Faulet236c93b2020-07-02 09:19:54 +02001524 cs = cs_new(h2c->conn, h2c->conn->target);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001525 if (!cs)
1526 goto out_close;
1527
Olivier Houchard746fb772018-12-15 19:42:00 +01001528 cs->flags |= CS_FL_NOT_FIRST;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001529 h2s->cs = cs;
1530 cs->ctx = h2s;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001531 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001532
Christopher Faulet7d013e72020-12-15 16:56:50 +01001533 if (stream_create_from_cs(cs, input) < 0)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001534 goto out_free_cs;
1535
Willy Tarreau590a0512018-09-05 11:56:48 +02001536 /* We want the accept date presented to the next stream to be the one
1537 * we have now, the handshake time to be null (since the next stream
1538 * is not delayed by a handshake), and the idle time to count since
1539 * right now.
1540 */
1541 sess->accept_date = date;
1542 sess->tv_accept = now;
1543 sess->t_handshake = 0;
1544
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001545 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001546 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001547 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001548 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001549 return h2s;
1550
1551 out_free_cs:
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001552 h2c->nb_cs--;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001553 cs_free(cs);
Olivier Houchard58d87f32019-05-29 16:44:17 +02001554 h2s->cs = NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001555 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001556 h2s_destroy(h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001557 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001558 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001559 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001560 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001561}
1562
Willy Tarreau751f2d02018-10-05 09:35:00 +02001563/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1564 * and returns it, or NULL in case of memory allocation error or if the highest
1565 * possible stream ID was reached.
1566 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001567static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001568{
1569 struct h2s *h2s = NULL;
1570
Willy Tarreau7838a792019-08-12 18:42:03 +02001571 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1572
Willy Tarreau86949782019-01-31 10:42:05 +01001573 if (h2c->nb_streams >= h2c->streams_limit)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001574 goto out;
1575
Willy Tarreaua80dca82019-01-24 17:08:28 +01001576 if (h2_streams_left(h2c) < 1)
1577 goto out;
1578
Willy Tarreau751f2d02018-10-05 09:35:00 +02001579 /* Defer choosing the ID until we send the first message to create the stream */
1580 h2s = h2s_new(h2c, 0);
1581 if (!h2s)
1582 goto out;
1583
1584 h2s->cs = cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001585 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001586 cs->ctx = h2s;
1587 h2c->nb_cs++;
1588
Willy Tarreau751f2d02018-10-05 09:35:00 +02001589 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001590 if (likely(h2s))
1591 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1592 else
1593 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001594 return h2s;
1595}
1596
Willy Tarreaube5b7152017-09-25 16:25:39 +02001597/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1598 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1599 * the various settings codes.
1600 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001601static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001602{
1603 struct buffer *res;
1604 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001605 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001606 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001607 int ret = 0;
1608
1609 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001610
1611 if (h2c_mux_busy(h2c, NULL)) {
1612 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001613 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001614 }
1615
Willy Tarreaube5b7152017-09-25 16:25:39 +02001616 chunk_init(&buf, buf_data, sizeof(buf_data));
1617 chunk_memcpy(&buf,
1618 "\x00\x00\x00" /* length : 0 for now */
1619 "\x04\x00" /* type : 4 (settings), flags : 0 */
1620 "\x00\x00\x00\x00", /* stream ID : 0 */
1621 9);
1622
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001623 if (h2c->flags & H2_CF_IS_BACK) {
1624 /* send settings_enable_push=0 */
1625 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1626 }
1627
Amaury Denoyelle0ea2c4f2021-07-09 17:14:30 +02001628 /* rfc 8441 #3 SETTINGS_ENABLE_CONNECT_PROTOCOL=1,
1629 * sent automatically unless disabled in the global config */
1630 if (!(global.tune.options & GTUNE_DISABLE_H2_WEBSOCKET))
1631 chunk_memcat(&buf, "\x00\x08\x00\x00\x00\x01", 6);
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01001632
Willy Tarreaube5b7152017-09-25 16:25:39 +02001633 if (h2_settings_header_table_size != 4096) {
1634 char str[6] = "\x00\x01"; /* header_table_size */
1635
1636 write_n32(str + 2, h2_settings_header_table_size);
1637 chunk_memcat(&buf, str, 6);
1638 }
1639
1640 if (h2_settings_initial_window_size != 65535) {
1641 char str[6] = "\x00\x04"; /* initial_window_size */
1642
1643 write_n32(str + 2, h2_settings_initial_window_size);
1644 chunk_memcat(&buf, str, 6);
1645 }
1646
1647 if (h2_settings_max_concurrent_streams != 0) {
1648 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1649
1650 /* Note: 0 means "unlimited" for haproxy's config but not for
1651 * the protocol, so never send this value!
1652 */
1653 write_n32(str + 2, h2_settings_max_concurrent_streams);
1654 chunk_memcat(&buf, str, 6);
1655 }
1656
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001657 mfs = h2_settings_max_frame_size;
1658 if (mfs > global.tune.bufsize)
1659 mfs = global.tune.bufsize;
1660
1661 if (!mfs)
1662 mfs = global.tune.bufsize;
1663
1664 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001665 char str[6] = "\x00\x05"; /* max_frame_size */
1666
1667 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1668 * match bufsize - rewrite size, but at the moment it seems
1669 * that clients don't take care of it.
1670 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001671 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001672 chunk_memcat(&buf, str, 6);
1673 }
1674
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001675 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001676
1677 res = br_tail(h2c->mbuf);
1678 retry:
1679 if (!h2_get_buf(h2c, res)) {
1680 h2c->flags |= H2_CF_MUX_MALLOC;
1681 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001682 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001683 }
1684
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001685 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001686 if (unlikely(ret <= 0)) {
1687 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001688 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1689 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001690 h2c->flags |= H2_CF_MUX_MFULL;
1691 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001692 }
1693 else {
1694 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001695 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001696 }
1697 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001698 out:
1699 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001700 return ret;
1701}
1702
Willy Tarreau52eed752017-09-22 15:05:09 +02001703/* Try to receive a connection preface, then upon success try to send our
1704 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1705 * missing data. It may return an error in h2c.
1706 */
1707static int h2c_frt_recv_preface(struct h2c *h2c)
1708{
1709 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001710 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001711
Willy Tarreau7838a792019-08-12 18:42:03 +02001712 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1713
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001714 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001715
1716 if (unlikely(ret1 <= 0)) {
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02001717 if (!ret1)
1718 h2c->flags |= H2_CF_DEM_SHORT_READ;
Amaury Denoyellea8879232020-10-27 17:16:03 +01001719 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001720 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 +02001721 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc23d6d12021-06-17 08:08:48 +02001722 if (b_data(&h2c->dbuf) ||
1723 !(((const struct session *)h2c->conn->owner)->fe->options & PR_O_IGNORE_PRB))
1724 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001725 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001726 ret2 = 0;
1727 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001728 }
1729
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001730 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001731 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001732 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001733 out:
1734 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001735 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001736}
1737
Willy Tarreau01b44822018-10-03 14:26:37 +02001738/* Try to send a connection preface, then upon success try to send our
1739 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1740 * missing data. It may return an error in h2c.
1741 */
1742static int h2c_bck_send_preface(struct h2c *h2c)
1743{
1744 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001745 int ret = 0;
1746
1747 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001748
1749 if (h2c_mux_busy(h2c, NULL)) {
1750 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001751 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001752 }
1753
Willy Tarreaubcc45952019-05-26 10:05:50 +02001754 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001755 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001756 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001757 h2c->flags |= H2_CF_MUX_MALLOC;
1758 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001759 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001760 }
1761
1762 if (!b_data(res)) {
1763 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001764 ret = b_istput(res, ist(H2_CONN_PREFACE));
1765 if (unlikely(ret <= 0)) {
1766 if (!ret) {
1767 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1768 goto retry;
1769 h2c->flags |= H2_CF_MUX_MFULL;
1770 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001771 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001772 }
1773 else {
1774 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001775 ret = 0;
1776 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001777 }
1778 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001779 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001780 ret = h2c_send_settings(h2c);
1781 out:
1782 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1783 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001784}
1785
Willy Tarreau081d4722017-05-16 21:51:05 +02001786/* try to send a GOAWAY frame on the connection to report an error or a graceful
1787 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1788 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1789 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1790 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1791 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1792 * on unrecoverable failure. It will not attempt to send one again in this last
1793 * case so that it is safe to use h2c_error() to report such errors.
1794 */
1795static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1796{
1797 struct buffer *res;
1798 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001799 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001800
Willy Tarreau7838a792019-08-12 18:42:03 +02001801 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1802
1803 if (h2c->flags & H2_CF_GOAWAY_FAILED) {
1804 ret = 1; // claim that it worked
1805 goto out;
1806 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001807
1808 if (h2c_mux_busy(h2c, h2s)) {
1809 if (h2s)
1810 h2s->flags |= H2_SF_BLK_MBUSY;
1811 else
1812 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001813 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001814 }
1815
Willy Tarreau9c218e72019-05-26 10:08:28 +02001816 /* len: 8, type: 7, flags: none, sid: 0 */
1817 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1818
1819 if (h2c->last_sid < 0)
1820 h2c->last_sid = h2c->max_id;
1821
1822 write_n32(str + 9, h2c->last_sid);
1823 write_n32(str + 13, h2c->errcode);
1824
Willy Tarreaubcc45952019-05-26 10:05:50 +02001825 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001826 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001827 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001828 h2c->flags |= H2_CF_MUX_MALLOC;
1829 if (h2s)
1830 h2s->flags |= H2_SF_BLK_MROOM;
1831 else
1832 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001833 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001834 }
1835
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001836 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001837 if (unlikely(ret <= 0)) {
1838 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001839 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1840 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001841 h2c->flags |= H2_CF_MUX_MFULL;
1842 if (h2s)
1843 h2s->flags |= H2_SF_BLK_MROOM;
1844 else
1845 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001846 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001847 }
1848 else {
1849 /* we cannot report this error using GOAWAY, so we mark
1850 * it and claim a success.
1851 */
1852 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1853 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001854 ret = 1;
1855 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001856 }
1857 }
1858 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001859
1860 /* some codes are not for real errors, just attempts to close cleanly */
1861 switch (h2c->errcode) {
1862 case H2_ERR_NO_ERROR:
1863 case H2_ERR_ENHANCE_YOUR_CALM:
1864 case H2_ERR_REFUSED_STREAM:
1865 case H2_ERR_CANCEL:
1866 break;
1867 default:
Willy Tarreau4781b152021-04-06 13:53:36 +02001868 HA_ATOMIC_INC(&h2c->px_counters->goaway_resp);
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001869 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001870 out:
1871 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001872 return ret;
1873}
1874
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001875/* Try to send an RST_STREAM frame on the connection for the indicated stream
1876 * during mux operations. This stream must be valid and cannot be closed
1877 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1878 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1879 * not yet.
1880 *
1881 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1882 * to write the message, it subscribes the stream to future notifications.
1883 */
1884static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1885{
1886 struct buffer *res;
1887 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001888 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001889
Willy Tarreau7838a792019-08-12 18:42:03 +02001890 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1891
1892 if (!h2s || h2s->st == H2_SS_CLOSED) {
1893 ret = 1;
1894 goto out;
1895 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001896
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001897 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1898 * RST_STREAM in response to a RST_STREAM frame.
1899 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001900 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001901 ret = 1;
1902 goto ignore;
1903 }
1904
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001905 if (h2c_mux_busy(h2c, h2s)) {
1906 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001907 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001908 }
1909
Willy Tarreau9c218e72019-05-26 10:08:28 +02001910 /* len: 4, type: 3, flags: none */
1911 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1912 write_n32(str + 5, h2s->id);
1913 write_n32(str + 9, h2s->errcode);
1914
Willy Tarreaubcc45952019-05-26 10:05:50 +02001915 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001916 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001917 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001918 h2c->flags |= H2_CF_MUX_MALLOC;
1919 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001920 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001921 }
1922
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001923 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001924 if (unlikely(ret <= 0)) {
1925 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001926 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1927 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001928 h2c->flags |= H2_CF_MUX_MFULL;
1929 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001930 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001931 }
1932 else {
1933 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001934 ret = 0;
1935 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001936 }
1937 }
1938
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001939 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001940 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001941 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001942 out:
1943 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001944 return ret;
1945}
1946
1947/* Try to send an RST_STREAM frame on the connection for the stream being
1948 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001949 * error code, even if the stream is one of the dummy ones, and will update
1950 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001951 *
1952 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1953 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001954 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001955 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001956 */
1957static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1958{
1959 struct buffer *res;
1960 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001961 int ret = 0;
1962
1963 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001964
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001965 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1966 * RST_STREAM in response to a RST_STREAM frame.
1967 */
1968 if (h2c->dft == H2_FT_RST_STREAM) {
1969 ret = 1;
1970 goto ignore;
1971 }
1972
Willy Tarreau27a84c92017-10-17 08:10:17 +02001973 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001974 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001975 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001976 }
1977
Willy Tarreau9c218e72019-05-26 10:08:28 +02001978 /* len: 4, type: 3, flags: none */
1979 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1980
1981 write_n32(str + 5, h2c->dsi);
1982 write_n32(str + 9, h2s->errcode);
1983
Willy Tarreaubcc45952019-05-26 10:05:50 +02001984 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001985 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001986 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001987 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001988 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001989 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001990 }
1991
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001992 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02001993 if (unlikely(ret <= 0)) {
1994 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001995 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1996 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001997 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001998 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001999 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002000 }
2001 else {
2002 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002003 ret = 0;
2004 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002005 }
2006 }
2007
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002008 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02002009 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002010 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002011 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002012 }
2013
Willy Tarreau7838a792019-08-12 18:42:03 +02002014 out:
Willy Tarreau4781b152021-04-06 13:53:36 +02002015 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_resp);
Willy Tarreau7838a792019-08-12 18:42:03 +02002016 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002017 return ret;
2018}
2019
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002020/* try to send an empty DATA frame with the ES flag set to notify about the
2021 * end of stream and match a shutdown(write). If an ES was already sent as
2022 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
2023 * on success or zero if nothing was done. In case of lack of room to write the
2024 * message, it subscribes the requesting stream to future notifications.
2025 */
2026static int h2_send_empty_data_es(struct h2s *h2s)
2027{
2028 struct h2c *h2c = h2s->h2c;
2029 struct buffer *res;
2030 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002031 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002032
Willy Tarreau7838a792019-08-12 18:42:03 +02002033 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
2034
2035 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
2036 ret = 1;
2037 goto out;
2038 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002039
2040 if (h2c_mux_busy(h2c, h2s)) {
2041 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002042 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002043 }
2044
Willy Tarreau9c218e72019-05-26 10:08:28 +02002045 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
2046 memcpy(str, "\x00\x00\x00\x00\x01", 5);
2047 write_n32(str + 5, h2s->id);
2048
Willy Tarreaubcc45952019-05-26 10:05:50 +02002049 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002050 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002051 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002052 h2c->flags |= H2_CF_MUX_MALLOC;
2053 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002054 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002055 }
2056
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002057 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002058 if (likely(ret > 0)) {
2059 h2s->flags |= H2_SF_ES_SENT;
2060 }
2061 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002062 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2063 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002064 h2c->flags |= H2_CF_MUX_MFULL;
2065 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002066 }
2067 else {
2068 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002069 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002070 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002071 out:
2072 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002073 return ret;
2074}
2075
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002076/* wake a specific stream and assign its conn_stream some CS_FL_* flags among
Willy Tarreau99ad1b32019-05-14 11:46:28 +02002077 * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002078 * is automatically updated accordingly. If the stream is orphaned, it is
2079 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002080 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002081static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002082{
Willy Tarreau7838a792019-08-12 18:42:03 +02002083 struct h2c *h2c = h2s->h2c;
2084
2085 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2086
Christopher Fauletf02ca002019-03-07 16:21:34 +01002087 if (!h2s->cs) {
2088 /* this stream was already orphaned */
2089 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002090 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002091 return;
2092 }
2093
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002094 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002095 if (h2s->st == H2_SS_OPEN)
2096 h2s->st = H2_SS_HREM;
2097 else if (h2s->st == H2_SS_HLOC)
2098 h2s_close(h2s);
2099 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002100
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002101 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
2102 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
2103 h2s->cs->flags |= CS_FL_ERR_PENDING;
2104 if (h2s->cs->flags & CS_FL_EOS)
2105 h2s->cs->flags |= CS_FL_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02002106
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002107 if (h2s->st < H2_SS_ERROR)
2108 h2s->st = H2_SS_ERROR;
2109 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002110
2111 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002112 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002113}
2114
2115/* wake the streams attached to the connection, whose id is greater than <last>
2116 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002117 */
Willy Tarreau23482912019-05-07 15:23:14 +02002118static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002119{
2120 struct eb32_node *node;
2121 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002122
Willy Tarreau7838a792019-08-12 18:42:03 +02002123 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2124
Christopher Fauletf02ca002019-03-07 16:21:34 +01002125 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002126 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2127 while (node) {
2128 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002129 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002130 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002131 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002132
Christopher Fauletf02ca002019-03-07 16:21:34 +01002133 /* Wake all streams with unassigned ID (ID == 0) */
2134 node = eb32_lookup(&h2c->streams_by_id, 0);
2135 while (node) {
2136 h2s = container_of(node, struct h2s, by_id);
2137 if (h2s->id > 0)
2138 break;
2139 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002140 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002141 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002142
2143 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002144}
2145
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002146/* Wake up all blocked streams whose window size has become positive after the
2147 * mux's initial window was adjusted. This should be done after having processed
2148 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002149 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002150static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002151{
2152 struct h2s *h2s;
2153 struct eb32_node *node;
2154
Willy Tarreau7838a792019-08-12 18:42:03 +02002155 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2156
Willy Tarreau3421aba2017-07-27 15:41:03 +02002157 node = eb32_first(&h2c->streams_by_id);
2158 while (node) {
2159 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002160 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002161 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002162 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002163 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2164 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002165 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002166 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002167 node = eb32_next(node);
2168 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002169
2170 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002171}
2172
2173/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2174 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002175 * return an error in h2c. The caller must have already verified frame length
2176 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002177 */
2178static int h2c_handle_settings(struct h2c *h2c)
2179{
2180 unsigned int offset;
2181 int error;
2182
Willy Tarreau7838a792019-08-12 18:42:03 +02002183 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2184
Willy Tarreau3421aba2017-07-27 15:41:03 +02002185 if (h2c->dff & H2_F_SETTINGS_ACK) {
2186 if (h2c->dfl) {
2187 error = H2_ERR_FRAME_SIZE_ERROR;
2188 goto fail;
2189 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002190 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002191 }
2192
Willy Tarreau3421aba2017-07-27 15:41:03 +02002193 /* process full frame only */
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002194 if (b_data(&h2c->dbuf) < h2c->dfl) {
2195 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002196 goto out0;
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002197 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002198
2199 /* parse the frame */
2200 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002201 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2202 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002203
2204 switch (type) {
2205 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2206 /* we need to update all existing streams with the
2207 * difference from the previous iws.
2208 */
2209 if (arg < 0) { // RFC7540#6.5.2
2210 error = H2_ERR_FLOW_CONTROL_ERROR;
2211 goto fail;
2212 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002213 h2c->miw = arg;
2214 break;
2215 case H2_SETTINGS_MAX_FRAME_SIZE:
2216 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002217 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 +02002218 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002219 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002220 goto fail;
2221 }
2222 h2c->mfs = arg;
2223 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002224 case H2_SETTINGS_ENABLE_PUSH:
2225 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002226 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002227 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002228 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002229 goto fail;
2230 }
2231 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002232 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2233 if (h2c->flags & H2_CF_IS_BACK) {
2234 /* the limit is only for the backend; for the frontend it is our limit */
2235 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2236 arg = h2_settings_max_concurrent_streams;
2237 h2c->streams_limit = arg;
2238 }
2239 break;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002240 case H2_SETTINGS_ENABLE_CONNECT_PROTOCOL:
2241 /* nothing to do here as this settings is automatically
2242 * transmits to the client */
2243 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002244 }
2245 }
2246
2247 /* need to ACK this frame now */
2248 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002249 done:
2250 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002251 return 1;
2252 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002253 if (!(h2c->flags & H2_CF_IS_BACK))
2254 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002255 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002256 out0:
2257 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 +02002258 return 0;
2259}
2260
2261/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2262 * success or one of the h2_status values.
2263 */
2264static int h2c_ack_settings(struct h2c *h2c)
2265{
2266 struct buffer *res;
2267 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002268 int ret = 0;
2269
2270 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002271
2272 if (h2c_mux_busy(h2c, NULL)) {
2273 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002274 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002275 }
2276
Willy Tarreau9c218e72019-05-26 10:08:28 +02002277 memcpy(str,
2278 "\x00\x00\x00" /* length : 0 (no data) */
2279 "\x04" "\x01" /* type : 4, flags : ACK */
2280 "\x00\x00\x00\x00" /* stream ID */, 9);
2281
Willy Tarreaubcc45952019-05-26 10:05:50 +02002282 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002283 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002284 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002285 h2c->flags |= H2_CF_MUX_MALLOC;
2286 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002287 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002288 }
2289
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002290 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002291 if (unlikely(ret <= 0)) {
2292 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002293 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2294 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002295 h2c->flags |= H2_CF_MUX_MFULL;
2296 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002297 }
2298 else {
2299 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002300 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002301 }
2302 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002303 out:
2304 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002305 return ret;
2306}
2307
Willy Tarreaucf68c782017-10-10 17:11:41 +02002308/* processes a PING frame and schedules an ACK if needed. The caller must pass
2309 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002310 * missing data. The caller must have already verified frame length
2311 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002312 */
2313static int h2c_handle_ping(struct h2c *h2c)
2314{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002315 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002316 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002317 h2c->st0 = H2_CS_FRAME_A;
2318 return 1;
2319}
2320
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002321/* Try to send a window update for stream id <sid> and value <increment>.
2322 * Returns > 0 on success or zero on missing room or failure. It may return an
2323 * error in h2c.
2324 */
2325static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2326{
2327 struct buffer *res;
2328 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002329 int ret = 0;
2330
2331 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002332
2333 if (h2c_mux_busy(h2c, NULL)) {
2334 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002335 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002336 }
2337
Willy Tarreau9c218e72019-05-26 10:08:28 +02002338 /* length: 4, type: 8, flags: none */
2339 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2340 write_n32(str + 5, sid);
2341 write_n32(str + 9, increment);
2342
Willy Tarreaubcc45952019-05-26 10:05:50 +02002343 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002344 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002345 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002346 h2c->flags |= H2_CF_MUX_MALLOC;
2347 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002348 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002349 }
2350
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002351 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002352 if (unlikely(ret <= 0)) {
2353 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002354 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2355 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002356 h2c->flags |= H2_CF_MUX_MFULL;
2357 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002358 }
2359 else {
2360 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002361 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002362 }
2363 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002364 out:
2365 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002366 return ret;
2367}
2368
2369/* try to send pending window update for the connection. It's safe to call it
2370 * with no pending updates. Returns > 0 on success or zero on missing room or
2371 * failure. It may return an error in h2c.
2372 */
2373static int h2c_send_conn_wu(struct h2c *h2c)
2374{
2375 int ret = 1;
2376
Willy Tarreau7838a792019-08-12 18:42:03 +02002377 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2378
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002379 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002380 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002381
Willy Tarreau97aaa672018-12-23 09:49:04 +01002382 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2383 /* increase the advertised connection window to 2G on
2384 * first update.
2385 */
2386 h2c->flags |= H2_CF_WINDOW_OPENED;
2387 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2388 }
2389
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002390 /* send WU for the connection */
2391 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2392 if (ret > 0)
2393 h2c->rcvd_c = 0;
2394
Willy Tarreau7838a792019-08-12 18:42:03 +02002395 out:
2396 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002397 return ret;
2398}
2399
2400/* try to send pending window update for the current dmux stream. It's safe to
2401 * call it with no pending updates. Returns > 0 on success or zero on missing
2402 * room or failure. It may return an error in h2c.
2403 */
2404static int h2c_send_strm_wu(struct h2c *h2c)
2405{
2406 int ret = 1;
2407
Willy Tarreau7838a792019-08-12 18:42:03 +02002408 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2409
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002410 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002411 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002412
2413 /* send WU for the stream */
2414 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2415 if (ret > 0)
2416 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002417 out:
2418 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002419 return ret;
2420}
2421
Willy Tarreaucf68c782017-10-10 17:11:41 +02002422/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2423 * success, 0 on missing data or one of the h2_status values.
2424 */
2425static int h2c_ack_ping(struct h2c *h2c)
2426{
2427 struct buffer *res;
2428 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002429 int ret = 0;
2430
2431 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002432
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002433 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002434 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002435
2436 if (h2c_mux_busy(h2c, NULL)) {
2437 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002438 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002439 }
2440
Willy Tarreaucf68c782017-10-10 17:11:41 +02002441 memcpy(str,
2442 "\x00\x00\x08" /* length : 8 (same payload) */
2443 "\x06" "\x01" /* type : 6, flags : ACK */
2444 "\x00\x00\x00\x00" /* stream ID */, 9);
2445
2446 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002447 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002448
Willy Tarreau9c218e72019-05-26 10:08:28 +02002449 res = br_tail(h2c->mbuf);
2450 retry:
2451 if (!h2_get_buf(h2c, res)) {
2452 h2c->flags |= H2_CF_MUX_MALLOC;
2453 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002454 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002455 }
2456
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002457 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002458 if (unlikely(ret <= 0)) {
2459 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002460 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2461 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002462 h2c->flags |= H2_CF_MUX_MFULL;
2463 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002464 }
2465 else {
2466 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002467 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002468 }
2469 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002470 out:
2471 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002472 return ret;
2473}
2474
Willy Tarreau26f95952017-07-27 17:18:30 +02002475/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2476 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002477 * h2c or h2s. The caller must have already verified frame length and stream ID
2478 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002479 */
2480static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2481{
2482 int32_t inc;
2483 int error;
2484
Willy Tarreau7838a792019-08-12 18:42:03 +02002485 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2486
Willy Tarreau26f95952017-07-27 17:18:30 +02002487 /* process full frame only */
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002488 if (b_data(&h2c->dbuf) < h2c->dfl) {
2489 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002490 goto out0;
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002491 }
Willy Tarreau26f95952017-07-27 17:18:30 +02002492
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002493 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002494
2495 if (h2c->dsi != 0) {
2496 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002497
2498 /* it's not an error to receive WU on a closed stream */
2499 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002500 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002501
2502 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002503 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 +02002504 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002505 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002506 goto strm_err;
2507 }
2508
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002509 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002510 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 +02002511 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002512 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002513 goto strm_err;
2514 }
2515
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002516 h2s->sws += inc;
2517 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002518 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002519 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002520 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2521 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002522 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002523 }
2524 }
2525 else {
2526 /* connection window update */
2527 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002528 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002529 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002530 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002531 goto conn_err;
2532 }
2533
2534 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2535 error = H2_ERR_FLOW_CONTROL_ERROR;
2536 goto conn_err;
2537 }
2538
2539 h2c->mws += inc;
2540 }
2541
Willy Tarreau7838a792019-08-12 18:42:03 +02002542 done:
2543 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002544 return 1;
2545
2546 conn_err:
2547 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002548 out0:
2549 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 +02002550 return 0;
2551
2552 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002553 h2s_error(h2s, error);
2554 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002555 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002556 return 0;
2557}
2558
Willy Tarreaue96b0922017-10-30 00:28:29 +01002559/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002560 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2561 * have already verified frame length and stream ID validity. Described in
2562 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002563 */
2564static int h2c_handle_goaway(struct h2c *h2c)
2565{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002566 int last;
2567
Willy Tarreau7838a792019-08-12 18:42:03 +02002568 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002569 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002570 if (b_data(&h2c->dbuf) < h2c->dfl) {
2571 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002572 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002573 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002574 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002575
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002576 last = h2_get_n32(&h2c->dbuf, 0);
2577 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002578 if (h2c->last_sid < 0)
2579 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002580 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002581 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002582 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002583}
2584
Willy Tarreau92153fc2017-12-03 19:46:19 +01002585/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002586 * invalid. Returns > 0 on success or zero on missing data. It may return an
2587 * error in h2c. The caller must have already verified frame length and stream
2588 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002589 */
2590static int h2c_handle_priority(struct h2c *h2c)
2591{
Willy Tarreau7838a792019-08-12 18:42:03 +02002592 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2593
Willy Tarreau92153fc2017-12-03 19:46:19 +01002594 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002595 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002596 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002597 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002598 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002599 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002600
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002601 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002602 /* 7540#5.3 : can't depend on itself */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002603 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002604 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02002605 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002606 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002607 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002608 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002609 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002610 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002611}
2612
Willy Tarreaucd234e92017-08-18 10:59:39 +02002613/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002614 * Returns > 0 on success or zero on missing data. The caller must have already
2615 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002616 */
2617static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2618{
Willy Tarreau7838a792019-08-12 18:42:03 +02002619 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2620
Willy Tarreaucd234e92017-08-18 10:59:39 +02002621 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002622 if (b_data(&h2c->dbuf) < h2c->dfl) {
2623 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002624 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002625 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002626 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002627
2628 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002629 if (h2s->st == H2_SS_CLOSED) {
2630 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 +02002631 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002632 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002633
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002634 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002635 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002636
2637 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01002638 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01002639 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002640 }
2641
2642 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002643 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002644 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002645}
2646
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002647/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2648 * It may return an error in h2c or h2s. The caller must consider that the
2649 * return value is the new h2s in case one was allocated (most common case).
2650 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002651 * errors here are reported as connection errors since it's impossible to
2652 * recover from such errors after the compression context has been altered.
2653 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002654static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002655{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002656 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002657 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002658 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002659 int error;
2660
Willy Tarreau7838a792019-08-12 18:42:03 +02002661 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2662
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002663 if (!b_size(&h2c->dbuf)) {
2664 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002665 goto out; // empty buffer
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002666 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002667
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002668 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2669 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002670 goto out; // incomplete frame
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002671 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002672
2673 /* now either the frame is complete or the buffer is complete */
2674 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002675 /* The stream exists/existed, this must be a trailers frame */
2676 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002677 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len, NULL);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002678 /* unrecoverable error ? */
2679 if (h2c->st0 >= H2_CS_ERROR)
2680 goto out;
2681
Christopher Faulet0de3f552021-10-08 08:56:00 +02002682 if (error == 0) {
2683 /* Demux not blocked because of the stream, it is an incomplete frame */
2684 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2685 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002686 goto out; // missing data
Christopher Faulet0de3f552021-10-08 08:56:00 +02002687 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002688
2689 if (error < 0) {
2690 /* Failed to decode this frame (e.g. too large request)
2691 * but the HPACK decompressor is still synchronized.
2692 */
2693 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2694 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002695 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002696 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002697 goto done;
2698 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002699 /* the connection was already killed by an RST, let's consume
2700 * the data and send another RST.
2701 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002702 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau1f035502019-01-30 11:44:07 +01002703 h2s = (struct h2s*)h2_error_stream;
2704 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002705 }
2706 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2707 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2708 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002709 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau4781b152021-04-06 13:53:36 +02002710 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002711 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002712 goto conn_err;
2713 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002714 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2715 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002716
Amaury Denoyelle74162742020-12-11 17:53:05 +01002717 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002718
Willy Tarreau25919232019-01-03 14:48:18 +01002719 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002720 if (h2c->st0 >= H2_CS_ERROR)
2721 goto out;
2722
Willy Tarreau25919232019-01-03 14:48:18 +01002723 if (error <= 0) {
Christopher Faulet0de3f552021-10-08 08:56:00 +02002724 if (error == 0) {
2725 /* Demux not blocked because of the stream, it is an incomplete frame */
2726 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2727 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau25919232019-01-03 14:48:18 +01002728 goto out; // missing data
Christopher Faulet0de3f552021-10-08 08:56:00 +02002729 }
Willy Tarreau25919232019-01-03 14:48:18 +01002730
2731 /* Failed to decode this stream (e.g. too large request)
2732 * but the HPACK decompressor is still synchronized.
2733 */
2734 h2s = (struct h2s*)h2_error_stream;
2735 goto send_rst;
2736 }
2737
Willy Tarreau3c10d512021-06-17 08:29:14 +02002738 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn, 0, &rxbuf);
2739
Willy Tarreau22de8d32018-09-05 19:55:58 +02002740 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002741 * positively from h2c_frt_stream_new(), the stream will report the error,
2742 * and if we return in error, h2c_frt_stream_new() will emit the error.
Christopher Faulet7d013e72020-12-15 16:56:50 +01002743 *
2744 * Xfer the rxbuf to the stream. On success, the new stream owns the
2745 * rxbuf. On error, it is released here.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002746 */
Christopher Faulet7d013e72020-12-15 16:56:50 +01002747 h2s = h2c_frt_stream_new(h2c, h2c->dsi, &rxbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02002748 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002749 h2s = (struct h2s*)h2_refused_stream;
2750 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002751 }
2752
2753 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002754 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002755 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002756
Willy Tarreau88d138e2019-01-02 19:38:14 +01002757 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002758 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002759 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002760
2761 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002762 if (h2s->st == H2_SS_OPEN)
2763 h2s->st = H2_SS_HREM;
2764 else
2765 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002766 }
2767
Willy Tarreau3a429f02019-01-03 11:41:50 +01002768 /* update the max stream ID if the request is being processed */
2769 if (h2s->id > h2c->max_id)
2770 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002771
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002772 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002773
2774 conn_err:
2775 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002776 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002777
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002778 out:
2779 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002780 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 +01002781 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002782
2783 send_rst:
2784 /* make the demux send an RST for the current stream. We may only
2785 * do this if we're certain that the HEADERS frame was properly
2786 * decompressed so that the HPACK decoder is still kept up to date.
2787 */
2788 h2_release_buf(h2c, &rxbuf);
2789 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002790
Willy Tarreau022e5e52020-09-10 09:33:15 +02002791 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 +02002792 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002793 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002794}
2795
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002796/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2797 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2798 * errors here are reported as connection errors since it's impossible to
2799 * recover from such errors after the compression context has been altered.
2800 */
2801static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2802{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002803 struct buffer rxbuf = BUF_NULL;
2804 unsigned long long body_len = 0;
2805 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002806 int error;
2807
Willy Tarreau7838a792019-08-12 18:42:03 +02002808 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2809
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002810 if (!b_size(&h2c->dbuf)) {
2811 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002812 goto fail; // empty buffer
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002813 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002814
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002815 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2816 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002817 goto fail; // incomplete frame
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002818 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002819
Christopher Faulet6884aa32019-09-23 15:28:20 +02002820 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002821 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len, h2s->upgrade_protocol);
Christopher Faulet6884aa32019-09-23 15:28:20 +02002822 }
2823 else {
2824 /* the connection was already killed by an RST, let's consume
2825 * the data and send another RST.
2826 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002827 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002828 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002829 h2c->st0 = H2_CS_FRAME_E;
2830 goto send_rst;
2831 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002832
Willy Tarreau25919232019-01-03 14:48:18 +01002833 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002834 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002835 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002836
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002837 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2838 /* RFC7540#5.1 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002839 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 +01002840 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2841 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002842 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002843 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002844 }
2845
Willy Tarreau25919232019-01-03 14:48:18 +01002846 if (error <= 0) {
Christopher Faulet0de3f552021-10-08 08:56:00 +02002847 if (error == 0) {
2848 /* Demux not blocked because of the stream, it is an incomplete frame */
2849 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2850 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002851 goto fail; // missing data
Christopher Faulet0de3f552021-10-08 08:56:00 +02002852 }
Willy Tarreau25919232019-01-03 14:48:18 +01002853
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002854 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002855 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 +01002856 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002857 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002858 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002859 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002860 }
2861
Christopher Fauletfa922f02019-05-07 10:55:17 +02002862 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002863 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002864
Willy Tarreau927b88b2019-03-04 08:03:25 +01002865 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002866 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002867 else if (h2s->flags & H2_SF_ES_RCVD) {
2868 if (h2s->st == H2_SS_OPEN)
2869 h2s->st = H2_SS_HREM;
2870 else if (h2s->st == H2_SS_HLOC)
2871 h2s_close(h2s);
2872 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002873
Christopher Fauletf95f8762021-01-22 11:59:07 +01002874 /* Unblock busy server h2s waiting for the response headers to validate
2875 * the tunnel establishment or the end of the response of an oborted
2876 * tunnel
2877 */
2878 if ((h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY)) == (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY) ||
2879 (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)) {
2880 TRACE_STATE("Unblock h2s blocked on tunnel establishment/abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2881 h2s->flags &= ~H2_SF_BLK_MBUSY;
2882 }
2883
Willy Tarreaucbd37e02021-06-16 18:32:42 +02002884 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 +02002885 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002886 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002887 fail:
2888 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2889 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002890
2891 send_rst:
2892 /* make the demux send an RST for the current stream. We may only
2893 * do this if we're certain that the HEADERS frame was properly
2894 * decompressed so that the HPACK decoder is still kept up to date.
2895 */
2896 h2_release_buf(h2c, &rxbuf);
2897 h2c->st0 = H2_CS_FRAME_E;
2898
Willy Tarreau022e5e52020-09-10 09:33:15 +02002899 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 +02002900 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2901 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002902}
2903
Willy Tarreau454f9052017-10-26 19:40:35 +02002904/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2905 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2906 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01002907static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02002908{
2909 int error;
2910
Willy Tarreau7838a792019-08-12 18:42:03 +02002911 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2912
Willy Tarreau454f9052017-10-26 19:40:35 +02002913 /* note that empty DATA frames are perfectly valid and sometimes used
2914 * to signal an end of stream (with the ES flag).
2915 */
2916
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002917 if (!b_size(&h2c->dbuf) && h2c->dfl) {
2918 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002919 goto fail; // empty buffer
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002920 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002921
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002922 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2923 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002924 goto fail; // incomplete frame
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002925 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002926
2927 /* now either the frame is complete or the buffer is complete */
2928
Willy Tarreau454f9052017-10-26 19:40:35 +02002929 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2930 /* RFC7540#6.1 */
2931 error = H2_ERR_STREAM_CLOSED;
2932 goto strm_err;
2933 }
2934
Christopher Faulet4f09ec82019-06-19 09:25:58 +02002935 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002936 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002937 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 +01002938 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002939 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002940 goto strm_err;
2941 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002942 if (!(h2c->flags & H2_CF_IS_BACK) &&
2943 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT) &&
2944 ((h2c->dfl - h2c->dpl) || !(h2c->dff & H2_F_DATA_END_STREAM))) {
2945 /* a tunnel attempt was aborted but the client still try to send some raw data.
2946 * Thus the stream is closed with the CANCEL error. Here we take care it is not
2947 * an empty DATA Frame with the ES flag. The error is only handled if ES was
2948 * already sent to the client because depending on the scheduling, these data may
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002949 * have been sent before the server response but not handle here.
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002950 */
2951 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2952 error = H2_ERR_CANCEL;
2953 goto strm_err;
2954 }
Willy Tarreau1915ca22019-01-24 11:49:37 +01002955
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002956 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02002957 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002958
Willy Tarreau454f9052017-10-26 19:40:35 +02002959 /* call the upper layers to process the frame, then let the upper layer
2960 * notify the stream about any change.
2961 */
2962 if (!h2s->cs) {
Willy Tarreau082c4572019-08-06 10:11:02 +02002963 /* The upper layer has already closed, this may happen on
2964 * 4xx/redirects during POST, or when receiving a response
2965 * from an H2 server after the client has aborted.
2966 */
2967 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002968 goto strm_err;
2969 }
2970
Willy Tarreau8f650c32017-11-21 19:36:21 +01002971 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002972 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01002973
Willy Tarreau721c9742017-11-07 11:05:42 +01002974 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002975 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002976 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002977 }
2978
2979 /* check for completion : the callee will change this to FRAME_A or
2980 * FRAME_H once done.
2981 */
2982 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02002983 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02002984
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002985 /* last frame */
2986 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002987 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002988 if (h2s->st == H2_SS_OPEN)
2989 h2s->st = H2_SS_HREM;
2990 else
2991 h2s_close(h2s);
2992
Willy Tarreau1915ca22019-01-24 11:49:37 +01002993 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
2994 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002995 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 +01002996 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002997 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002998 goto strm_err;
2999 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003000 }
3001
Christopher Fauletf95f8762021-01-22 11:59:07 +01003002 /* Unblock busy server h2s waiting for the end of the response for an
3003 * aborted tunnel
3004 */
3005 if ((h2c->flags & H2_CF_IS_BACK) &&
3006 (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)) {
3007 TRACE_STATE("Unblock h2s blocked on tunnel abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3008 h2s->flags &= ~H2_SF_BLK_MBUSY;
3009 }
3010
Willy Tarreau7838a792019-08-12 18:42:03 +02003011 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003012 return 1;
3013
Willy Tarreau454f9052017-10-26 19:40:35 +02003014 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01003015 h2s_error(h2s, error);
3016 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003017 fail:
3018 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 +02003019 return 0;
3020}
3021
Willy Tarreau63864812019-08-07 14:25:20 +02003022/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
3023 * valid for the current stream state. This is needed only after parsing the
3024 * frame header but in practice it can be performed at any time during
3025 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
3026 * or 0 in case of error, in which case either h2s or h2c will carry an error.
3027 */
3028static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
3029{
Willy Tarreau7838a792019-08-12 18:42:03 +02003030 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
3031
Willy Tarreau63864812019-08-07 14:25:20 +02003032 if (h2s->st == H2_SS_IDLE &&
3033 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
3034 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
3035 * this state MUST be treated as a connection error
3036 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003037 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 +02003038 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003039 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02003040 /* only log if no other stream can report the error */
3041 sess_log(h2c->conn->owner);
3042 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003043 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02003044 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 +02003045 return 0;
3046 }
3047
Willy Tarreau57a18162019-11-24 14:57:53 +01003048 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
3049 /* only PUSH_PROMISE would be permitted here */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003050 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 +01003051 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003052 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau57a18162019-11-24 14:57:53 +01003053 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
3054 return 0;
3055 }
3056
Willy Tarreau63864812019-08-07 14:25:20 +02003057 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
3058 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
3059 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
3060 * this state MUST be treated as a stream error.
3061 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
3062 * PUSH_PROMISE/CONTINUATION cause connection errors.
3063 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01003064 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003065 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 +02003066 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003067 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003068 }
3069 else {
Willy Tarreau63864812019-08-07 14:25:20 +02003070 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003071 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003072 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 +02003073 return 0;
3074 }
3075
3076 /* Below the management of frames received in closed state is a
3077 * bit hackish because the spec makes strong differences between
3078 * streams closed by receiving RST, sending RST, and seeing ES
3079 * in both directions. In addition to this, the creation of a
3080 * new stream reusing the identifier of a closed one will be
3081 * detected here. Given that we cannot keep track of all closed
3082 * streams forever, we consider that unknown closed streams were
3083 * closed on RST received, which allows us to respond with an
3084 * RST without breaking the connection (eg: to abort a transfer).
3085 * Some frames have to be silently ignored as well.
3086 */
3087 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
3088 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
3089 /* #5.1.1: The identifier of a newly
3090 * established stream MUST be numerically
3091 * greater than all streams that the initiating
3092 * endpoint has opened or reserved. This
3093 * governs streams that are opened using a
3094 * HEADERS frame and streams that are reserved
3095 * using PUSH_PROMISE. An endpoint that
3096 * receives an unexpected stream identifier
3097 * MUST respond with a connection error.
3098 */
3099 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003100 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 +02003101 return 0;
3102 }
3103
Willy Tarreau4c08f122019-09-26 08:47:15 +02003104 if (h2s->flags & H2_SF_RST_RCVD &&
3105 !(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 +02003106 /* RFC7540#5.1:closed: an endpoint that
3107 * receives any frame other than PRIORITY after
3108 * receiving a RST_STREAM MUST treat that as a
3109 * stream error of type STREAM_CLOSED.
3110 *
3111 * Note that old streams fall into this category
3112 * and will lead to an RST being sent.
3113 *
3114 * However, we cannot generalize this to all frame types. Those
3115 * carrying compression state must still be processed before
3116 * being dropped or we'll desynchronize the decoder. This can
3117 * happen with request trailers received after sending an
3118 * RST_STREAM, or with header/trailers responses received after
3119 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02003120 *
3121 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003122 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003123 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003124 */
3125 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3126 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003127 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 +02003128 return 0;
3129 }
3130
3131 /* RFC7540#5.1:closed: if this state is reached as a
3132 * result of sending a RST_STREAM frame, the peer that
3133 * receives the RST_STREAM might have already sent
3134 * frames on the stream that cannot be withdrawn. An
3135 * endpoint MUST ignore frames that it receives on
3136 * closed streams after it has sent a RST_STREAM
3137 * frame. An endpoint MAY choose to limit the period
3138 * over which it ignores frames and treat frames that
3139 * arrive after this time as being in error.
3140 */
3141 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3142 /* RFC7540#5.1:closed: any frame other than
3143 * PRIO/WU/RST in this state MUST be treated as
3144 * a connection error
3145 */
3146 if (h2c->dft != H2_FT_RST_STREAM &&
3147 h2c->dft != H2_FT_PRIORITY &&
3148 h2c->dft != H2_FT_WINDOW_UPDATE) {
3149 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003150 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 +02003151 return 0;
3152 }
3153 }
3154 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003155 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003156 return 1;
3157}
3158
Willy Tarreaubc933932017-10-09 16:21:43 +02003159/* process Rx frames to be demultiplexed */
3160static void h2_process_demux(struct h2c *h2c)
3161{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003162 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003163 struct h2_fh hdr;
3164 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003165 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003166
Willy Tarreau7838a792019-08-12 18:42:03 +02003167 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3168
Willy Tarreau081d4722017-05-16 21:51:05 +02003169 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003170 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003171
3172 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3173 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003174 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003175 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003176 goto out;
3177
Willy Tarreau52eed752017-09-22 15:05:09 +02003178 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3179 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003180 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003181 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003182 h2c->st0 = H2_CS_ERROR2;
Willy Tarreauc23d6d12021-06-17 08:08:48 +02003183 if (b_data(&h2c->dbuf) ||
Christopher Faulet79b347d2021-07-26 10:18:35 +02003184 !(((const struct session *)h2c->conn->owner)->fe->options & (PR_O_NULLNOLOG|PR_O_IGNORE_PRB)))
Willy Tarreauc23d6d12021-06-17 08:08:48 +02003185 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003186 }
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003187 goto done;
Willy Tarreau52eed752017-09-22 15:05:09 +02003188 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003189 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003190
3191 h2c->max_id = 0;
3192 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003193 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003194 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003195
3196 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003197 /* ensure that what is pending is a valid SETTINGS frame
3198 * without an ACK.
3199 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003200 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 +02003201 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003202 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003203 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003204 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003205 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 +02003206 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003207 if (!(h2c->flags & H2_CF_IS_BACK))
3208 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003209 }
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003210 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003211 }
3212
3213 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3214 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003215 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 +02003216 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3217 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003218 if (!(h2c->flags & H2_CF_IS_BACK))
3219 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003220 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003221 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003222 }
3223
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003224 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003225 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003226 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 +02003227 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3228 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003229 if (!(h2c->flags & H2_CF_IS_BACK))
3230 sess_log(h2c->conn->owner);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003231 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003232 }
3233
Willy Tarreau3bf69182018-12-21 15:34:50 +01003234 /* that's OK, switch to FRAME_P to process it. This is
3235 * a SETTINGS frame whose header has already been
3236 * deleted above.
3237 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003238 padlen = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +02003239 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003240 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003241 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003242 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003243
3244 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003245 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003246 int ret = 0;
3247
Willy Tarreau7838a792019-08-12 18:42:03 +02003248 if (!b_data(&h2c->dbuf)) {
3249 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003250 h2c->flags |= H2_CF_DEM_SHORT_READ;
3251 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003252 }
3253
3254 if (h2c->st0 >= H2_CS_ERROR) {
3255 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003256 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003257 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003258
3259 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau30d05f32019-08-06 15:49:51 +02003260 h2c->rcvd_s = 0;
3261
Willy Tarreau7838a792019-08-12 18:42:03 +02003262 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003263 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr)) {
3264 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003265 break;
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003266 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003267
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003268 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003269 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 +02003270 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003271 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003272 /* only log if no other stream can report the error */
3273 sess_log(h2c->conn->owner);
3274 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003275 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003276 break;
3277 }
3278
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003279 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003280 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3281 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3282 * we read the pad length and drop it from the remaining
3283 * payload (one byte + the 9 remaining ones = 10 total
3284 * removed), so we have a frame payload starting after the
3285 * pad len. Flow controlled frames (DATA) also count the
3286 * padlen in the flow control, so it must be adjusted.
3287 */
3288 if (hdr.len < 1) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003289 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 +01003290 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003291 if (!(h2c->flags & H2_CF_IS_BACK))
3292 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003293 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003294 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003295 }
3296 hdr.len--;
3297
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003298 if (b_data(&h2c->dbuf) < 10) {
3299 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003300 break; // missing padlen
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003301 }
Willy Tarreau3bf69182018-12-21 15:34:50 +01003302
3303 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3304
3305 if (padlen > hdr.len) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003306 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 +01003307 /* RFC7540#6.1 : pad length = length of
3308 * frame payload or greater => error.
3309 */
3310 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003311 if (!(h2c->flags & H2_CF_IS_BACK))
3312 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003313 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003314 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003315 }
3316
3317 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3318 h2c->rcvd_c++;
3319 h2c->rcvd_s++;
3320 }
3321 b_del(&h2c->dbuf, 1);
3322 }
3323 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003324
3325 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003326 h2c->dfl = hdr.len;
3327 h2c->dsi = hdr.sid;
3328 h2c->dft = hdr.ft;
3329 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003330 h2c->dpl = padlen;
Willy Tarreau73db4342019-09-25 07:28:44 +02003331 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 +02003332 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003333
3334 /* check for minimum basic frame format validity */
3335 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3336 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003337 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 +01003338 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003339 if (!(h2c->flags & H2_CF_IS_BACK))
3340 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003341 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003342 goto done;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003343 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003344 }
3345
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003346 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3347 * H2_CS_FRAME_P indicates an incomplete previous operation
3348 * (most often the first attempt) and requires some validity
3349 * checks for the frame and the current state. The two other
3350 * ones are set after completion (or abortion) and must skip
3351 * validity checks.
3352 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003353 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3354
Willy Tarreau567beb82018-12-18 16:52:44 +01003355 if (tmp_h2s != h2s && h2s && h2s->cs &&
3356 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003357 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003358 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003359 (h2s->flags & H2_SF_ES_RCVD) ||
3360 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003361 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003362 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 +01003363 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003364 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003365 }
3366 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003367
Willy Tarreau63864812019-08-07 14:25:20 +02003368 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003369 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3370 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003371 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003372 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003373
Willy Tarreau7e98c052017-10-10 15:56:59 +02003374 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003375 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003376 if (h2c->st0 == H2_CS_FRAME_P) {
3377 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003378 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003379 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003380 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003381
Willy Tarreau7838a792019-08-12 18:42:03 +02003382 if (h2c->st0 == H2_CS_FRAME_A) {
3383 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 +02003384 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003385 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003386 break;
3387
Willy Tarreaucf68c782017-10-10 17:11:41 +02003388 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003389 if (h2c->st0 == H2_CS_FRAME_P) {
3390 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003391 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003392 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003393
Willy Tarreau7838a792019-08-12 18:42:03 +02003394 if (h2c->st0 == H2_CS_FRAME_A) {
3395 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 +02003396 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003397 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003398 break;
3399
Willy Tarreau26f95952017-07-27 17:18:30 +02003400 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003401 if (h2c->st0 == H2_CS_FRAME_P) {
3402 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 +02003403 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003404 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003405 break;
3406
Willy Tarreau61290ec2017-10-17 08:19:21 +02003407 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003408 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003409 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3410 * frames' parsers consume all following CONTINUATION
3411 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003412 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003413 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 +01003414 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003415 if (!(h2c->flags & H2_CF_IS_BACK))
3416 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003417 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003418 goto done;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003419
Willy Tarreau13278b42017-10-13 19:23:14 +02003420 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003421 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003422 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003423 if (h2c->flags & H2_CF_IS_BACK)
3424 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3425 else
3426 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003427 if (tmp_h2s) {
3428 h2s = tmp_h2s;
3429 ret = 1;
3430 }
3431 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003432 HA_ATOMIC_INC(&h2c->px_counters->headers_rcvd);
Willy Tarreau13278b42017-10-13 19:23:14 +02003433 break;
3434
Willy Tarreau454f9052017-10-26 19:40:35 +02003435 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003436 if (h2c->st0 == H2_CS_FRAME_P) {
3437 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003438 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003439 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003440 HA_ATOMIC_INC(&h2c->px_counters->data_rcvd);
Willy Tarreau454f9052017-10-26 19:40:35 +02003441
Willy Tarreau7838a792019-08-12 18:42:03 +02003442 if (h2c->st0 == H2_CS_FRAME_A) {
3443 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 +02003444 ret = h2c_send_strm_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003445 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003446 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003447
Willy Tarreau92153fc2017-12-03 19:46:19 +01003448 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003449 if (h2c->st0 == H2_CS_FRAME_P) {
3450 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003451 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003452 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003453 break;
3454
Willy Tarreaucd234e92017-08-18 10:59:39 +02003455 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003456 if (h2c->st0 == H2_CS_FRAME_P) {
3457 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 +02003458 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003459 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003460 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_rcvd);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003461 break;
3462
Willy Tarreaue96b0922017-10-30 00:28:29 +01003463 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003464 if (h2c->st0 == H2_CS_FRAME_P) {
3465 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003466 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003467 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003468 HA_ATOMIC_INC(&h2c->px_counters->goaway_rcvd);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003469 break;
3470
Willy Tarreau1c661982017-10-30 13:52:01 +01003471 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003472 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003473 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003474 /* drop frames that we ignore. They may be larger than
3475 * the buffer so we drain all of their contents until
3476 * we reach the end.
3477 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003478 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3479 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003480 h2c->dfl -= ret;
3481 ret = h2c->dfl == 0;
3482 }
3483
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003484 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003485 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003486 if (h2s->st == H2_SS_ERROR) {
3487 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 +01003488 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003489 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003490
Willy Tarreau7838a792019-08-12 18:42:03 +02003491 if (h2c->st0 == H2_CS_FRAME_E) {
3492 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 +01003493 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003494 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003495
Willy Tarreau7e98c052017-10-10 15:56:59 +02003496 /* error or missing data condition met above ? */
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003497 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02003498 break;
3499
3500 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003501 if (h2c->dfl)
3502 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003503 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3504 b_del(&h2c->dbuf, ret);
3505 h2c->dfl -= ret;
3506 if (!h2c->dfl) {
3507 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3508 h2c->st0 = H2_CS_FRAME_H;
3509 h2c->dsi = -1;
3510 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003511 }
3512 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003513
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003514 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003515 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3516 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003517 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003518 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003519
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003520 done:
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003521 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_DEM_SHORT_READ)) {
3522 if (h2c->flags & H2_CF_RCVD_SHUT)
3523 h2c->flags |= H2_CF_END_REACHED;
3524 }
3525
Willy Tarreau567beb82018-12-18 16:52:44 +01003526 if (h2s && h2s->cs &&
3527 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003528 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003529 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003530 (h2s->flags & H2_SF_ES_RCVD) ||
3531 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003532 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003533 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 +01003534 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003535 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003536 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003537
Willy Tarreau7838a792019-08-12 18:42:03 +02003538 if (old_iw != h2c->miw) {
3539 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003540 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003541 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003542
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003543 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003544 out:
3545 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003546 return;
Willy Tarreaubc933932017-10-09 16:21:43 +02003547}
3548
Willy Tarreau989539b2020-01-10 17:01:29 +01003549/* resume each h2s eligible for sending in list head <head> */
3550static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3551{
3552 struct h2s *h2s, *h2s_back;
3553
3554 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3555
3556 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3557 if (h2c->mws <= 0 ||
3558 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3559 h2c->st0 >= H2_CS_ERROR)
3560 break;
3561
3562 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003563
Willy Tarreaud9464162020-01-10 18:25:07 +01003564 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003565 continue;
3566
Willy Tarreau5723f292020-01-10 15:16:57 +01003567 /* If the sender changed his mind and unsubscribed, let's just
3568 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003569 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003570 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3571 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003572 LIST_DEL_INIT(&h2s->list);
3573 continue;
3574 }
3575
Willy Tarreauf96508a2020-01-10 11:12:48 +01003576 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003577 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003578 tasklet_wakeup(h2s->subs->tasklet);
3579 h2s->subs->events &= ~SUB_RETRY_SEND;
3580 if (!h2s->subs->events)
3581 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003582 }
3583 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3584 tasklet_wakeup(h2s->shut_tl);
3585 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003586 }
3587
3588 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3589}
3590
Willy Tarreaubc933932017-10-09 16:21:43 +02003591/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3592 * the end.
3593 */
3594static int h2_process_mux(struct h2c *h2c)
3595{
Willy Tarreau7838a792019-08-12 18:42:03 +02003596 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3597
Willy Tarreau01b44822018-10-03 14:26:37 +02003598 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3599 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3600 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3601 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003602 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003603 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003604 goto fail;
3605 }
3606 h2c->st0 = H2_CS_SETTINGS1;
3607 }
3608 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003609 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003610 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003611 }
3612
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003613 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003614 if (h2c->rcvd_s > 0 &&
3615 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3616 h2c_send_strm_wu(h2c) < 0)
3617 goto fail;
3618
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003619 if (h2c->rcvd_c > 0 &&
3620 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3621 h2c_send_conn_wu(h2c) < 0)
3622 goto fail;
3623
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003624 /* First we always process the flow control list because the streams
3625 * waiting there were already elected for immediate emission but were
3626 * blocked just on this.
3627 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003628 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3629 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003630
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003631 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003632 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003633 if (h2c->st0 == H2_CS_ERROR) {
3634 if (h2c->max_id >= 0) {
3635 h2c_send_goaway_error(h2c, NULL);
3636 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003637 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003638 }
3639
3640 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3641 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003642 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003643 done:
3644 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3645 return 1;
3646 out0:
3647 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3648 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003649}
3650
Willy Tarreau62f52692017-10-08 23:01:42 +02003651
Willy Tarreau479998a2018-11-18 06:30:59 +01003652/* Attempt to read data, and subscribe if none available.
3653 * The function returns 1 if data has been received, otherwise zero.
3654 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003655static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003656{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003657 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003658 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003659 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003660 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003661
Willy Tarreau7838a792019-08-12 18:42:03 +02003662 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3663
3664 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3665 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003666 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003667 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003668
Willy Tarreau7838a792019-08-12 18:42:03 +02003669 if (!h2_recv_allowed(h2c)) {
3670 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003671 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003672 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003673
Willy Tarreau44e973f2018-03-01 17:49:30 +01003674 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003675 if (!buf) {
3676 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003677 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003678 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003679 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003680
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003681 if (h2c->flags & H2_CF_RCVD_SHUT) {
3682 TRACE_DEVEL("leaving on rcvd_shut", H2_EV_H2C_RECV, h2c->conn);
3683 return 0;
3684 }
3685
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003686 if (!b_data(buf)) {
3687 /* try to pre-align the buffer like the
3688 * rxbufs will be to optimize memory copies. We'll make
3689 * sure that the frame header lands at the end of the
3690 * HTX block to alias it upon recv. We cannot use the
3691 * head because rcv_buf() will realign the buffer if
3692 * it's empty. Thus we cheat and pretend we already
3693 * have a few bytes there.
3694 */
3695 max = buf_room_for_htx_data(buf) + 9;
3696 buf->head = sizeof(struct htx) - 9;
3697 }
3698 else
3699 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003700
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003701 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003702
Christopher Fauletde9d6052021-04-23 12:25:18 +02003703 if (max && !ret && h2_recv_allowed(h2c)) {
3704 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
3705 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003706 } else if (ret) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02003707 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003708 h2c->flags &= ~H2_CF_DEM_SHORT_READ;
3709 }
Olivier Houchard81a15af2018-10-19 17:26:49 +02003710
Christopher Fauletde9d6052021-04-23 12:25:18 +02003711 if (conn_xprt_read0_pending(h2c->conn)) {
3712 TRACE_DATA("received read0", H2_EV_H2C_RECV, h2c->conn);
3713 h2c->flags |= H2_CF_RCVD_SHUT;
3714 }
3715
Olivier Houcharda1411e62018-08-17 18:42:48 +02003716 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003717 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003718 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003719 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003720 }
3721
Willy Tarreau7838a792019-08-12 18:42:03 +02003722 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003723 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003724 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003725 }
3726
3727 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003728 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003729}
3730
Willy Tarreau479998a2018-11-18 06:30:59 +01003731/* Try to send data if possible.
3732 * The function returns 1 if data have been sent, otherwise zero.
3733 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003734static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003735{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003736 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003737 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003738 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003739
Willy Tarreau7838a792019-08-12 18:42:03 +02003740 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003741
Willy Tarreau7838a792019-08-12 18:42:03 +02003742 if (conn->flags & CO_FL_ERROR) {
3743 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3744 return 1;
3745 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003746
Willy Tarreau911db9b2020-01-23 16:27:54 +01003747 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003748 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003749 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003750 }
3751
Willy Tarreaubc933932017-10-09 16:21:43 +02003752 /* This loop is quite simple : it tries to fill as much as it can from
3753 * pending streams into the existing buffer until it's reportedly full
3754 * or the end of send requests is reached. Then it tries to send this
3755 * buffer's contents out, marks it not full if at least one byte could
3756 * be sent, and tries again.
3757 *
3758 * The snd_buf() function normally takes a "flags" argument which may
3759 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3760 * data immediately comes and CO_SFL_STREAMER to indicate that the
3761 * connection is streaming lots of data (used to increase TLS record
3762 * size at the expense of latency). The former can be sent any time
3763 * there's a buffer full flag, as it indicates at least one stream
3764 * attempted to send and failed so there are pending data. An
3765 * alternative would be to set it as long as there's an active stream
3766 * but that would be problematic for ACKs until we have an absolute
3767 * guarantee that all waiters have at least one byte to send. The
3768 * latter should possibly not be set for now.
3769 */
3770
3771 done = 0;
3772 while (!done) {
3773 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003774 unsigned int released = 0;
3775 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003776
3777 /* fill as much as we can into the current buffer */
3778 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3779 done = h2_process_mux(h2c);
3780
Olivier Houchard2b094432019-01-29 18:28:36 +01003781 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003782 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003783
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003784 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
Willy Tarreaue90653b2021-10-21 17:30:06 +02003785 (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003786 break;
3787
3788 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3789 flags |= CO_SFL_MSG_MORE;
3790
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003791 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3792 if (b_data(buf)) {
3793 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003794 if (!ret) {
3795 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003796 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003797 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003798 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003799 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003800 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003801 if (b_data(buf)) {
3802 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003803 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003804 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003805 }
3806 b_free(buf);
3807 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003808 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003809
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003810 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01003811 offer_buffers(NULL, released);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003812
Willy Tarreaubc933932017-10-09 16:21:43 +02003813 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003814 if (sent)
3815 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003816 }
3817
Willy Tarreaua2af5122017-10-09 11:56:46 +02003818 if (conn->flags & CO_FL_SOCK_WR_SH) {
3819 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003820 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003821 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003822 /* We're not full anymore, so we can wake any task that are waiting
3823 * for us.
3824 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003825 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3826 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003827
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003828 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003829 if (!br_data(h2c->mbuf)) {
3830 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003831 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003832 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003833schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003834 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3835 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003836 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003837 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003838
Willy Tarreau7838a792019-08-12 18:42:03 +02003839 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003840 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003841}
3842
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003843/* this is the tasklet referenced in h2c->wait_event.tasklet */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003844struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state)
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003845{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003846 struct connection *conn;
3847 struct tasklet *tl = (struct tasklet *)t;
3848 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003849 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003850 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003851
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003852 if (state & TASK_F_USR1) {
3853 /* the tasklet was idling on an idle connection, it might have
3854 * been stolen, let's be careful!
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003855 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003856 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3857 if (t->context == NULL) {
3858 /* The connection has been taken over by another thread,
3859 * we're no longer responsible for it, so just free the
3860 * tasklet, and do nothing.
3861 */
3862 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3863 tasklet_free(tl);
Willy Tarreau74163142021-03-13 11:30:19 +01003864 t = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003865 goto leave;
3866 }
3867 conn = h2c->conn;
3868 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003869
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003870 conn_in_list = conn->flags & CO_FL_LIST_MASK;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003871
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003872 /* Remove the connection from the list, to be sure nobody attempts
3873 * to use it while we handle the I/O events
3874 */
3875 if (conn_in_list)
3876 conn_delete_from_tree(&conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003877
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003878 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3879 } else {
3880 /* we're certain the connection was not in an idle list */
3881 conn = h2c->conn;
3882 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3883 conn_in_list = 0;
3884 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003885
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003886 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003887 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003888 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003889 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003890 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003891 ret = h2_process(h2c);
3892
3893 /* If we were in an idle list, we want to add it back into it,
3894 * unless h2_process() returned -1, which mean it has destroyed
3895 * the connection (testing !ret is enough, if h2_process() wasn't
3896 * called then ret will be 0 anyway.
3897 */
Willy Tarreau74163142021-03-13 11:30:19 +01003898 if (ret < 0)
3899 t = NULL;
3900
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003901 if (!ret && conn_in_list) {
3902 struct server *srv = objt_server(conn->target);
3903
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003904 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003905 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003906 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003907 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003908 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003909 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003910 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003911
Willy Tarreau38468772020-06-28 00:31:13 +02003912leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02003913 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreau74163142021-03-13 11:30:19 +01003914 return t;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003915}
Willy Tarreaua2af5122017-10-09 11:56:46 +02003916
Willy Tarreau62f52692017-10-08 23:01:42 +02003917/* callback called on any event by the connection handler.
3918 * It applies changes and returns zero, or < 0 if it wants immediate
3919 * destruction of the connection (which normally doesn not happen in h2).
3920 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003921static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003922{
Olivier Houchard7505f942018-08-21 18:10:44 +02003923 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003924
Willy Tarreau7838a792019-08-12 18:42:03 +02003925 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3926
Willy Tarreauf0961222021-02-05 11:41:46 +01003927 if (!(h2c->flags & H2_CF_DEM_BLOCK_ANY) &&
3928 (b_data(&h2c->dbuf) || (h2c->flags & H2_CF_RCVD_SHUT))) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003929 h2_process_demux(h2c);
3930
3931 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003932 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003933
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003934 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003935 h2c->flags &= ~H2_CF_DEM_DFULL;
3936 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003937 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003938
Willy Tarreaub1e600c2020-10-13 18:09:15 +02003939 if (unlikely(h2c->proxy->disabled) && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01003940 /* frontend is stopping, reload likely in progress, let's try
3941 * to announce a graceful shutdown if not yet done. We don't
3942 * care if it fails, it will be tried again later.
3943 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003944 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
Willy Tarreau8ec14062017-12-30 18:08:13 +01003945 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3946 if (h2c->last_sid < 0)
3947 h2c->last_sid = (1U << 31) - 1;
3948 h2c_send_goaway_error(h2c, NULL);
3949 }
3950 }
3951
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003952 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003953 * If we received early data, and the handshake is done, wake
3954 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003955 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003956 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01003957 (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 +01003958 struct eb32_node *node;
3959 struct h2s *h2s;
3960
3961 h2c->flags |= H2_CF_WAIT_FOR_HS;
3962 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
3963
3964 while (node) {
3965 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01003966 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01003967 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003968 node = eb32_next(node);
3969 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003970 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003971
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003972 if (conn->flags & CO_FL_ERROR || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01003973 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
3974 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
3975 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02003976 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003977
3978 if (eb_is_empty(&h2c->streams_by_id)) {
3979 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003980 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003981 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003982 return -1;
3983 }
Willy Tarreau4481e262019-10-31 15:36:30 +01003984
3985 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01003986 if (conn->flags & CO_FL_LIST_MASK) {
3987 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003988 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01003989 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3990 }
Willy Tarreau4481e262019-10-31 15:36:30 +01003991 }
3992 else if (h2c->st0 == H2_CS_ERROR) {
3993 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01003994 if (conn->flags & CO_FL_LIST_MASK) {
3995 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003996 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01003997 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3998 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003999 }
4000
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004001 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01004002 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004003
Olivier Houchard53216e72018-10-10 15:46:36 +02004004 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
4005 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
4006 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02004007 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02004008 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
4009 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02004010 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02004011
Willy Tarreau3f133572017-10-31 19:21:06 +01004012 if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004013 if (h2c_may_expire(h2c))
4014 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
4015 else
4016 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02004017 task_queue(h2c->task);
Willy Tarreauea392822017-10-31 10:02:25 +01004018 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02004019
Olivier Houchard7505f942018-08-21 18:10:44 +02004020 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004021 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004022 return 0;
4023}
4024
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004025/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004026static int h2_wake(struct connection *conn)
4027{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004028 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02004029 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004030
Willy Tarreau7838a792019-08-12 18:42:03 +02004031 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4032 ret = h2_process(h2c);
Willy Tarreau508f9892020-02-11 04:38:56 +01004033 if (ret >= 0)
4034 h2_wake_some_streams(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02004035 TRACE_LEAVE(H2_EV_H2C_WAKE);
4036 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004037}
4038
Willy Tarreauea392822017-10-31 10:02:25 +01004039/* Connection timeout management. The principle is that if there's no receipt
4040 * nor sending for a certain amount of time, the connection is closed. If the
4041 * MUX buffer still has lying data or is not allocatable, the connection is
4042 * immediately killed. If it's allocatable and empty, we attempt to send a
4043 * GOAWAY frame.
4044 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004045struct task *h2_timeout_task(struct task *t, void *context, unsigned int state)
Willy Tarreauea392822017-10-31 10:02:25 +01004046{
Olivier Houchard9f6af332018-05-25 14:04:04 +02004047 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01004048 int expired = tick_is_expired(t->expire, now_ms);
4049
Willy Tarreau7838a792019-08-12 18:42:03 +02004050 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
4051
Willy Tarreaubd42e922020-06-30 11:19:23 +02004052 if (h2c) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004053 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004054 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004055
4056 /* Somebody already stole the connection from us, so we should not
4057 * free it, we just have to free the task.
4058 */
4059 if (!t->context) {
4060 h2c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004061 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004062 goto do_leave;
4063 }
4064
4065
Willy Tarreaubd42e922020-06-30 11:19:23 +02004066 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004067 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004068 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
4069 return t;
4070 }
Willy Tarreauea392822017-10-31 10:02:25 +01004071
Willy Tarreaubd42e922020-06-30 11:19:23 +02004072 if (!h2c_may_expire(h2c)) {
4073 /* we do still have streams but all of them are idle, waiting
4074 * for the data layer, so we must not enforce the timeout here.
4075 */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004076 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004077 t->expire = TICK_ETERNITY;
4078 return t;
4079 }
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004080
Willy Tarreaubd42e922020-06-30 11:19:23 +02004081 /* We're about to destroy the connection, so make sure nobody attempts
4082 * to steal it from us.
4083 */
Willy Tarreaubd42e922020-06-30 11:19:23 +02004084 if (h2c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004085 conn_delete_from_tree(&h2c->conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004086
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004087 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004088 }
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004089
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004090do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02004091 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02004092
4093 if (!h2c) {
4094 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02004095 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02004096 return NULL;
4097 }
4098
4099 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01004100 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02004101 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01004102
Willy Tarreau662fafc2019-05-26 09:43:07 +02004103 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01004104 /* don't even try to send a GOAWAY, the buffer is stuck */
4105 h2c->flags |= H2_CF_GOAWAY_FAILED;
4106 }
4107
4108 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01004109 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01004110 if (h2c_send_goaway_error(h2c, NULL) <= 0)
4111 h2c->flags |= H2_CF_GOAWAY_FAILED;
4112
Willy Tarreau662fafc2019-05-26 09:43:07 +02004113 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004114 unsigned int released = 0;
4115 struct buffer *buf;
4116
4117 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
4118 if (b_data(buf)) {
4119 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
4120 if (!ret)
4121 break;
4122 b_del(buf, ret);
4123 if (b_data(buf))
4124 break;
4125 b_free(buf);
4126 released++;
4127 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02004128 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004129
4130 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01004131 offer_buffers(NULL, released);
Willy Tarreau787db9a2018-06-14 18:31:46 +02004132 }
Willy Tarreauea392822017-10-31 10:02:25 +01004133
Willy Tarreau4481e262019-10-31 15:36:30 +01004134 /* in any case this connection must not be considered idle anymore */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004135 if (h2c->conn->flags & CO_FL_LIST_MASK) {
4136 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004137 conn_delete_from_tree(&h2c->conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004138 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4139 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004140
Willy Tarreau0975f112018-03-29 15:22:59 +02004141 /* either we can release everything now or it will be done later once
4142 * the last stream closes.
4143 */
4144 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02004145 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01004146
Willy Tarreau7838a792019-08-12 18:42:03 +02004147 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01004148 return NULL;
4149}
4150
4151
Willy Tarreau62f52692017-10-08 23:01:42 +02004152/*******************************************/
4153/* functions below are used by the streams */
4154/*******************************************/
4155
4156/*
4157 * Attach a new stream to a connection
4158 * (Used for outgoing connections)
4159 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01004160static struct conn_stream *h2_attach(struct connection *conn, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02004161{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004162 struct conn_stream *cs;
4163 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004164 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004165
Willy Tarreau7838a792019-08-12 18:42:03 +02004166 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Christopher Faulet236c93b2020-07-02 09:19:54 +02004167 cs = cs_new(conn, conn->target);
Willy Tarreau7838a792019-08-12 18:42:03 +02004168 if (!cs) {
4169 TRACE_DEVEL("leaving on CS allocation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004170 return NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004171 }
Olivier Houchardf502aca2018-12-14 19:42:40 +01004172 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004173 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004174 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004175 cs_free(cs);
4176 return NULL;
4177 }
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004178
4179 /* the connection is not idle anymore, let's mark this */
4180 HA_ATOMIC_AND(&h2c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004181 xprt_set_used(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004182
Willy Tarreau7838a792019-08-12 18:42:03 +02004183 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004184 return cs;
Willy Tarreau62f52692017-10-08 23:01:42 +02004185}
4186
Willy Tarreaufafd3982018-11-18 21:29:20 +01004187/* Retrieves the first valid conn_stream from this connection, or returns NULL.
4188 * We have to scan because we may have some orphan streams. It might be
4189 * beneficial to scan backwards from the end to reduce the likeliness to find
4190 * orphans.
4191 */
4192static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
4193{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004194 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004195 struct h2s *h2s;
4196 struct eb32_node *node;
4197
4198 node = eb32_first(&h2c->streams_by_id);
4199 while (node) {
4200 h2s = container_of(node, struct h2s, by_id);
4201 if (h2s->cs)
4202 return h2s->cs;
4203 node = eb32_next(node);
4204 }
4205 return NULL;
4206}
4207
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004208static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4209{
4210 int ret = 0;
4211 struct h2c *h2c = conn->ctx;
4212
4213 switch (mux_ctl) {
4214 case MUX_STATUS:
4215 /* Only consider the mux to be ready if we're done with
4216 * the preface and settings, and we had no error.
4217 */
4218 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4219 ret |= MUX_STATUS_READY;
4220 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02004221 case MUX_EXIT_STATUS:
4222 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004223 default:
4224 return -1;
4225 }
4226}
4227
Willy Tarreau62f52692017-10-08 23:01:42 +02004228/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004229 * Destroy the mux and the associated connection, if it is no longer used
4230 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004231static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004232{
Christopher Faulet73c12072019-04-08 11:23:22 +02004233 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004234
Willy Tarreau7838a792019-08-12 18:42:03 +02004235 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02004236 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02004237 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004238 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004239}
4240
4241/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004242 * Detach the stream from the connection and possibly release the connection.
4243 */
4244static void h2_detach(struct conn_stream *cs)
4245{
Willy Tarreau60935142017-10-16 18:11:19 +02004246 struct h2s *h2s = cs->ctx;
4247 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004248 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004249
Willy Tarreau7838a792019-08-12 18:42:03 +02004250 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4251
Willy Tarreau60935142017-10-16 18:11:19 +02004252 cs->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004253 if (!h2s) {
4254 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004255 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004256 }
Willy Tarreau60935142017-10-16 18:11:19 +02004257
Willy Tarreaud9464162020-01-10 18:25:07 +01004258 /* there's no txbuf so we're certain not to be able to send anything */
4259 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004260
Olivier Houchardf502aca2018-12-14 19:42:40 +01004261 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004262 h2c = h2s->h2c;
4263 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02004264 h2c->nb_cs--;
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004265 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
4266 !h2_frt_has_too_many_cs(h2c)) {
4267 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004268 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004269 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004270 }
Willy Tarreau60935142017-10-16 18:11:19 +02004271
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004272 /* this stream may be blocked waiting for some data to leave (possibly
4273 * an ES or RST frame), so orphan it in this case.
4274 */
Willy Tarreau3041fcc2018-03-29 15:41:32 +02004275 if (!(cs->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004276 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004277 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004278 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004279 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004280 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004281 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004282
Willy Tarreau45f752e2017-10-30 15:44:59 +01004283 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
4284 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
4285 /* unblock the connection if it was blocked on this
4286 * stream.
4287 */
4288 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4289 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004290 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004291 }
4292
Willy Tarreau71049cc2018-03-28 13:56:39 +02004293 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004294
Christopher Faulet9b79a102019-07-15 11:22:56 +02004295 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01004296 if (!(h2c->conn->flags &
4297 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004298 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004299 /* Add the connection in the session server list, if not already done */
4300 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4301 h2c->conn->owner = NULL;
4302 if (eb_is_empty(&h2c->streams_by_id)) {
4303 h2c->conn->mux->destroy(h2c);
4304 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4305 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004306 }
4307 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004308 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004309 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4310 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4311 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004312 return;
4313 }
4314 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004315 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004316 else {
4317 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004318 /* If the connection is owned by the session, first remove it
4319 * from its list
4320 */
4321 if (h2c->conn->owner) {
4322 session_unown_conn(h2c->conn->owner, h2c->conn);
4323 h2c->conn->owner = NULL;
4324 }
4325
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004326 /* mark that the tasklet may lose its context to another thread and
4327 * that the handler needs to check it under the idle conns lock.
4328 */
4329 HA_ATOMIC_OR(&h2c->wait_event.tasklet->state, TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004330 xprt_set_idle(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
4331
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004332 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004333 /* The server doesn't want it, let's kill the connection right away */
4334 h2c->conn->mux->destroy(h2c);
4335 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4336 return;
4337 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004338 /* At this point, the connection has been added to the
4339 * server idle list, so another thread may already have
4340 * hijacked it, so we can't do anything with it.
4341 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004342 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4343 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004344
Olivier Houchard8a786902018-12-15 16:05:40 +01004345 }
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004346 else if (!h2c->conn->hash_node->node.node.leaf_p &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004347 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02004348 !LIST_INLIST(&h2c->conn->session_list)) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004349 ebmb_insert(&__objt_server(h2c->conn->target)->per_thr[tid].avail_conns,
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004350 &h2c->conn->hash_node->node,
4351 sizeof(h2c->conn->hash_node->hash));
Christopher Fauletc5579d12020-07-01 15:45:41 +02004352 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004353 }
4354 }
4355 }
4356
Willy Tarreaue323f342018-03-28 13:51:45 +02004357 /* We don't want to close right now unless we're removing the
4358 * last stream, and either the connection is in error, or it
4359 * reached the ID already specified in a GOAWAY frame received
4360 * or sent (as seen by last_sid >= 0).
4361 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004362 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004363 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004364 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004365 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004366 }
4367 else if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004368 if (h2c_may_expire(h2c))
4369 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
4370 else
4371 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02004372 task_queue(h2c->task);
Willy Tarreau7838a792019-08-12 18:42:03 +02004373 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004374 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004375 else
4376 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004377}
4378
Willy Tarreau88bdba32019-05-13 18:17:53 +02004379/* Performs a synchronous or asynchronous shutr(). */
4380static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004381{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004382 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004383
Willy Tarreauf983d002019-05-14 10:40:21 +02004384 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004385 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004386
Willy Tarreau7838a792019-08-12 18:42:03 +02004387 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4388
Willy Tarreau18059042019-01-31 19:12:48 +01004389 /* a connstream may require us to immediately kill the whole connection
4390 * for example because of a "tcp-request content reject" rule that is
4391 * normally used to limit abuse. In this case we schedule a goaway to
4392 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004393 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004394 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004395 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004396 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004397 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4398 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4399 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004400 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4401 /* Nothing was never sent for this stream, so reset with
4402 * REFUSED_STREAM error to let the client retry the
4403 * request.
4404 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004405 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004406 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4407 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004408 else {
4409 /* a final response was already provided, we don't want this
4410 * stream anymore. This may happen when the server responds
4411 * before the end of an upload and closes quickly (redirect,
4412 * deny, ...)
4413 */
4414 h2s_error(h2s, H2_ERR_CANCEL);
4415 }
Willy Tarreau18059042019-01-31 19:12:48 +01004416
Willy Tarreau90c32322017-11-24 08:00:30 +01004417 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004418 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004419 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004420
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004421 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004422 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004423 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004424 done:
4425 h2s->flags &= ~H2_SF_WANT_SHUTR;
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 +02004428add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004429 /* Let the handler know we want to shutr, and add ourselves to the
4430 * most relevant list if not yet done. h2_deferred_shut() will be
4431 * automatically called via the shut_tl tasklet when there's room
4432 * again.
4433 */
4434 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau2b718102021-04-21 07:32:39 +02004435 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004436 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004437 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004438 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004439 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004440 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004441 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004442 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004443}
4444
Willy Tarreau88bdba32019-05-13 18:17:53 +02004445/* Performs a synchronous or asynchronous shutw(). */
4446static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004447{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004448 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004449
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004450 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004451 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004452
Willy Tarreau7838a792019-08-12 18:42:03 +02004453 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4454
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004455 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01004456 /* we can cleanly close using an empty data frame only after headers */
4457
4458 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4459 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004460 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004461
4462 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004463 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004464 else
4465 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004466 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004467 /* a connstream may require us to immediately kill the whole connection
4468 * for example because of a "tcp-request content reject" rule that is
4469 * normally used to limit abuse. In this case we schedule a goaway to
4470 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004471 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004472 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004473 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004474 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004475 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4476 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4477 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004478 else {
4479 /* Nothing was never sent for this stream, so reset with
4480 * REFUSED_STREAM error to let the client retry the
4481 * request.
4482 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004483 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004484 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4485 }
Willy Tarreau18059042019-01-31 19:12:48 +01004486
Willy Tarreau90c32322017-11-24 08:00:30 +01004487 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004488 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004489 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004490
Willy Tarreau00dd0782018-03-01 16:31:34 +01004491 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004492 }
4493
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004494 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004495 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004496
4497 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4498
Willy Tarreau88bdba32019-05-13 18:17:53 +02004499 done:
4500 h2s->flags &= ~H2_SF_WANT_SHUTW;
4501 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004502
4503 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004504 /* Let the handler know we want to shutw, and add ourselves to the
4505 * most relevant list if not yet done. h2_deferred_shut() will be
4506 * automatically called via the shut_tl tasklet when there's room
4507 * again.
4508 */
4509 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau2b718102021-04-21 07:32:39 +02004510 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004511 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004512 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004513 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004514 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004515 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004516 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004517 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004518}
4519
Willy Tarreau5723f292020-01-10 15:16:57 +01004520/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004521 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4522 * and prevented the last frame from being emitted.
4523 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004524struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004525{
4526 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004527 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004528
Willy Tarreau7838a792019-08-12 18:42:03 +02004529 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4530
Willy Tarreau5723f292020-01-10 15:16:57 +01004531 if (h2s->flags & H2_SF_NOTIFIED) {
4532 /* some data processing remains to be done first */
4533 goto end;
4534 }
4535
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004536 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004537 h2_do_shutw(h2s);
4538
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004539 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004540 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004541
Willy Tarreau88bdba32019-05-13 18:17:53 +02004542 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004543 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004544 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004545
Willy Tarreau88bdba32019-05-13 18:17:53 +02004546 if (!h2s->cs) {
4547 h2s_destroy(h2s);
Willy Tarreau74163142021-03-13 11:30:19 +01004548 if (h2c_is_dead(h2c)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004549 h2_release(h2c);
Willy Tarreau74163142021-03-13 11:30:19 +01004550 t = NULL;
4551 }
Willy Tarreau88bdba32019-05-13 18:17:53 +02004552 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004553 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004554 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004555 TRACE_LEAVE(H2_EV_STRM_SHUT);
Willy Tarreau74163142021-03-13 11:30:19 +01004556 return t;
Willy Tarreau62f52692017-10-08 23:01:42 +02004557}
4558
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004559/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004560static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
4561{
4562 struct h2s *h2s = cs->ctx;
4563
Willy Tarreau7838a792019-08-12 18:42:03 +02004564 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004565 if (cs->flags & CS_FL_KILL_CONN)
4566 h2s->flags |= H2_SF_KILL_CONN;
4567
Willy Tarreau7838a792019-08-12 18:42:03 +02004568 if (mode)
4569 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004570
Willy Tarreau7838a792019-08-12 18:42:03 +02004571 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004572}
4573
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004574/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004575static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
4576{
4577 struct h2s *h2s = cs->ctx;
4578
Willy Tarreau7838a792019-08-12 18:42:03 +02004579 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004580 if (cs->flags & CS_FL_KILL_CONN)
4581 h2s->flags |= H2_SF_KILL_CONN;
4582
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004583 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004584 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004585}
4586
Christopher Faulet9b79a102019-07-15 11:22:56 +02004587/* Decode the payload of a HEADERS frame and produce the HTX request or response
4588 * depending on the connection's side. Returns a positive value on success, a
4589 * negative value on failure, or 0 if it couldn't proceed. May report connection
4590 * errors in h2c->errcode if the frame is non-decodable and the connection
4591 * unrecoverable. In absence of connection error when a failure is reported, the
4592 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004593 *
4594 * The function may fold CONTINUATION frames into the initial HEADERS frame
4595 * by removing padding and next frame header, then moving the CONTINUATION
4596 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4597 * leaving a hole between the main frame and the beginning of the next one.
4598 * The possibly remaining incomplete or next frame at the end may be moved
4599 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4600 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4601 *
4602 * A buffer at the beginning of processing may look like this :
4603 *
4604 * ,---.---------.-----.--------------.--------------.------.---.
4605 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4606 * `---^---------^-----^--------------^--------------^------^---'
4607 * | | <-----> | |
4608 * area | dpl | wrap
4609 * |<--------------> |
4610 * | dfl |
4611 * |<-------------------------------------------------->|
4612 * head data
4613 *
4614 * Padding is automatically overwritten when folding, participating to the
4615 * hole size after dfl :
4616 *
4617 * ,---.------------------------.-----.--------------.------.---.
4618 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4619 * `---^------------------------^-----^--------------^------^---'
4620 * | | <-----> | |
4621 * area | hole | wrap
4622 * |<-----------------------> |
4623 * | dfl |
4624 * |<-------------------------------------------------->|
4625 * head data
4626 *
4627 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4628 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4629 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004630 *
4631 * The <flags> field must point to either the stream's flags or to a copy of it
4632 * so that the function can update the following flags :
4633 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004634 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004635 *
4636 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4637 * decoding, in order to detect if we're dealing with a headers or a trailers
4638 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004639 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004640static 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 +02004641{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004642 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004643 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004644 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004645 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004646 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004647 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004648 int flen; // header frame len
4649 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004650 int ret = 0;
4651 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004652 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004653
Willy Tarreau7838a792019-08-12 18:42:03 +02004654 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4655
Willy Tarreauea18f862018-12-22 20:19:26 +01004656next_frame:
4657 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4658 goto leave; // incomplete input frame
4659
4660 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4661 * this case, we'll try to paste it immediately after the initial
4662 * HEADERS frame payload and kill any possible padding. The initial
4663 * frame's length will be increased to represent the concatenation
4664 * of the two frames. The next frame is read from position <tlen>
4665 * and written at position <flen> (minus padding if some is present).
4666 */
4667 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4668 struct h2_fh hdr;
4669 int clen; // CONTINUATION frame's payload length
4670
Willy Tarreau7838a792019-08-12 18:42:03 +02004671 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 +01004672 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4673 /* no more data, the buffer may be full, either due to
4674 * too large a frame or because of too large a hole that
4675 * we're going to compact at the end.
4676 */
4677 goto leave;
4678 }
4679
4680 if (hdr.ft != H2_FT_CONTINUATION) {
4681 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004682 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 +01004683 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004684 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004685 goto fail;
4686 }
4687
4688 if (hdr.sid != h2c->dsi) {
4689 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004690 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 +01004691 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004692 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004693 goto fail;
4694 }
4695
4696 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4697 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004698 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 +01004699 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4700 goto fail;
4701 }
4702
4703 /* detect when we must stop aggragating frames */
4704 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4705
4706 /* Take as much as we can of the CONTINUATION frame's payload */
4707 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4708 if (clen > hdr.len)
4709 clen = hdr.len;
4710
4711 /* Move the frame's payload over the padding, hole and frame
4712 * header. At least one of hole or dpl is null (see diagrams
4713 * above). The hole moves after the new aggragated frame.
4714 */
4715 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole + 9), clen, -(h2c->dpl + hole + 9));
Christopher Fauletcb1847c2021-04-21 11:11:21 +02004716 h2c->dfl += hdr.len - h2c->dpl;
Willy Tarreauea18f862018-12-22 20:19:26 +01004717 hole += h2c->dpl + 9;
4718 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004719 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 +01004720 goto next_frame;
4721 }
4722
4723 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004724
Willy Tarreau13278b42017-10-13 19:23:14 +02004725 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004726 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004727 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004728 copy = alloc_trash_chunk();
4729 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004730 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 +02004731 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4732 goto fail;
4733 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004734 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4735 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4736 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004737 }
4738
Willy Tarreau13278b42017-10-13 19:23:14 +02004739 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4740 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004741 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004742 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004743 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 +01004744 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004745 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004746 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004747 }
4748
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004749 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004750 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 +01004751 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4752 goto fail;
4753 }
4754
Willy Tarreau13278b42017-10-13 19:23:14 +02004755 hdrs += 5; // stream dep = 4, weight = 1
4756 flen -= 5;
4757 }
4758
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004759 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004760 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 +01004761 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004762 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004763 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004764
Willy Tarreau937f7602018-02-26 15:22:17 +01004765 /* we can't retry a failed decompression operation so we must be very
4766 * careful not to take any risks. In practice the output buffer is
4767 * always empty except maybe for trailers, in which case we simply have
4768 * to wait for the upper layer to finish consuming what is available.
4769 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004770 htx = htx_from_buf(rxbuf);
4771 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004772 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 +02004773 h2c->flags |= H2_CF_DEM_SFULL;
4774 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004775 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004776
Willy Tarreau25919232019-01-03 14:48:18 +01004777 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004778 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4779 sizeof(list)/sizeof(list[0]), tmp);
4780 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004781 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 +01004782 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4783 goto fail;
4784 }
4785
Willy Tarreau25919232019-01-03 14:48:18 +01004786 /* The PACK decompressor was updated, let's update the input buffer and
4787 * the parser's state to commit these changes and allow us to later
4788 * fail solely on the stream if needed.
4789 */
4790 b_del(&h2c->dbuf, h2c->dfl + hole);
4791 h2c->dfl = hole = 0;
4792 h2c->st0 = H2_CS_FRAME_H;
4793
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004794 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004795 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Christopher Fauletd0db4232021-01-22 11:46:30 +01004796 msgf |= (*flags & H2_SF_BODY_TUNNEL) ? H2_MSGF_BODY_TUNNEL: 0;
Amaury Denoyelle74162742020-12-11 17:53:05 +01004797 /* If an Extended CONNECT has been sent on this stream, set message flag
Ilya Shipitsinacf84592021-02-06 22:29:08 +05004798 * to convert 200 response to 101 htx response */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004799 msgf |= (*flags & H2_SF_EXT_CONNECT_SENT) ? H2_MSGF_EXT_CONNECT: 0;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004800
Willy Tarreau88d138e2019-01-02 19:38:14 +01004801 if (*flags & H2_SF_HEADERS_RCVD)
4802 goto trailers;
4803
4804 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004805 if (h2c->flags & H2_CF_IS_BACK)
Amaury Denoyelle74162742020-12-11 17:53:05 +01004806 outlen = h2_make_htx_response(list, htx, &msgf, body_len, upgrade_protocol);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004807 else
4808 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004809
Christopher Faulet3d875582021-04-26 17:46:13 +02004810 if (outlen < 0 || htx_free_space(htx) < global.tune.maxrewrite) {
Willy Tarreau25919232019-01-03 14:48:18 +01004811 /* too large headers? this is a stream error only */
Christopher Faulet3d875582021-04-26 17:46:13 +02004812 TRACE_STATE("message headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
4813 htx->flags |= HTX_FL_PARSING_ERROR;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004814 goto fail;
4815 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004816
Willy Tarreau174b06a2018-04-25 18:13:58 +02004817 if (msgf & H2_MSGF_BODY) {
4818 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004819 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004820 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004821 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004822 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004823 }
Christopher Faulet7d247f02020-12-02 14:26:36 +01004824 if (msgf & H2_MSGF_BODYLESS_RSP)
4825 *flags |= H2_SF_BODYLESS_RESP;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004826
Christopher Fauletd0db4232021-01-22 11:46:30 +01004827 if (msgf & H2_MSGF_BODY_TUNNEL)
4828 *flags |= H2_SF_BODY_TUNNEL;
4829 else {
4830 /* Abort the tunnel attempt, if any */
4831 if (*flags & H2_SF_BODY_TUNNEL)
4832 *flags |= H2_SF_TUNNEL_ABRT;
4833 *flags &= ~H2_SF_BODY_TUNNEL;
4834 }
4835
Willy Tarreau88d138e2019-01-02 19:38:14 +01004836 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004837 /* indicate that a HEADERS frame was received for this stream, except
4838 * for 1xx responses. For 1xx responses, another HEADERS frame is
4839 * expected.
4840 */
4841 if (!(msgf & H2_MSGF_RSP_1XX))
4842 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004843
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004844 if (h2c->dff & H2_F_HEADERS_END_STREAM) {
4845 /* no more data are expected for this message */
4846 htx->flags |= HTX_FL_EOM;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004847 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004848
Amaury Denoyelleefe22762020-12-11 17:53:08 +01004849 if (msgf & H2_MSGF_EXT_CONNECT)
4850 *flags |= H2_SF_EXT_CONNECT_RCVD;
4851
Willy Tarreau86277d42019-01-02 15:36:11 +01004852 /* success */
4853 ret = 1;
4854
Willy Tarreau68dd9852017-07-03 14:44:26 +02004855 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004856 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004857 * move the remaining data over it.
4858 */
4859 if (hole) {
4860 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4861 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4862 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4863 b_sub(&h2c->dbuf, hole);
4864 }
4865
Christopher Faulet07f88d72021-04-21 10:39:53 +02004866 if (b_full(&h2c->dbuf) && h2c->dfl) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004867 /* too large frames */
4868 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004869 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004870 }
4871
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004872 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004873 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004874 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004875 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004876 return ret;
4877
Willy Tarreau68dd9852017-07-03 14:44:26 +02004878 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004879 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004880 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004881
4882 trailers:
4883 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004884 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4885 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004886 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 +01004887 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004888 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau88d138e2019-01-02 19:38:14 +01004889 goto fail;
4890 }
4891
Christopher Faulet9b79a102019-07-15 11:22:56 +02004892 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02004893 if (h2_make_htx_trailers(list, htx) <= 0) {
4894 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 +02004895 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004896 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004897 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02004898}
4899
Christopher Faulet9b79a102019-07-15 11:22:56 +02004900/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004901 * parser state is automatically updated. Returns > 0 if it could completely
4902 * send the current frame, 0 if it couldn't complete, in which case
4903 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
4904 * DATA frame can return 0 as a valid result). Stream errors are reported in
4905 * h2s->errcode and connection errors in h2c->errcode. The caller must already
4906 * have checked the frame header and ensured that the frame was complete or the
4907 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02004908 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01004909static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02004910{
4911 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004912 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004913 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004914 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004915 struct buffer *csbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004916 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02004917
Willy Tarreau7838a792019-08-12 18:42:03 +02004918 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
4919
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004920 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02004921
Olivier Houchard638b7992018-08-16 15:41:52 +02004922 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004923 if (!csbuf) {
4924 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02004925 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 +01004926 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004927 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004928 htx = htx_from_buf(csbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004929
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004930try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004931 flen = h2c->dfl - h2c->dpl;
4932 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01004933 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004934
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004935 if (flen > b_data(&h2c->dbuf)) {
4936 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004937 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01004938 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004939 }
4940
Christopher Faulet9b79a102019-07-15 11:22:56 +02004941 block = htx_free_data_space(htx);
4942 if (!block) {
4943 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004944 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 +02004945 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004946 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004947 if (flen > block)
4948 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004949
Christopher Faulet9b79a102019-07-15 11:22:56 +02004950 /* here, flen is the max we can copy into the output buffer */
4951 block = b_contig_data(&h2c->dbuf, 0);
4952 if (flen > block)
4953 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004954
Christopher Faulet9b79a102019-07-15 11:22:56 +02004955 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02004956 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 +02004957
Christopher Faulet9b79a102019-07-15 11:22:56 +02004958 b_del(&h2c->dbuf, sent);
4959 h2c->dfl -= sent;
4960 h2c->rcvd_c += sent;
4961 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02004962
Christopher Faulet9b79a102019-07-15 11:22:56 +02004963 if (h2s->flags & H2_SF_DATA_CLEN) {
4964 h2s->body_len -= sent;
4965 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004966 }
4967
Christopher Faulet9b79a102019-07-15 11:22:56 +02004968 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004969 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004970 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 +01004971 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004972 }
4973
Christopher Faulet9b79a102019-07-15 11:22:56 +02004974 goto try_again;
4975
Willy Tarreau4a28da12018-01-04 14:41:00 +01004976 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004977 /* here we're done with the frame, all the payload (except padding) was
4978 * transferred.
4979 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02004980
Christopher Faulet5be651d2021-01-22 15:28:03 +01004981 if (!(h2s->flags & H2_SF_BODY_TUNNEL) && (h2c->dff & H2_F_DATA_END_STREAM)) {
4982 /* no more data are expected for this message. This add the EOM
4983 * flag but only on the response path or if no tunnel attempt
4984 * was aborted. Otherwise (request path + tunnel abrted), the
4985 * EOM was already reported.
4986 */
Christopher Faulet33724322021-02-10 09:04:59 +01004987 if ((h2c->flags & H2_CF_IS_BACK) || !(h2s->flags & H2_SF_TUNNEL_ABRT)) {
4988 /* If we receive an empty DATA frame with ES flag while the HTX
4989 * message is empty, we must be sure to push a block to be sure
4990 * the HTX EOM flag will be handled on the other side. It is a
4991 * workaround because for now it is not possible to push empty
4992 * HTX DATA block. And without this block, there is no way to
4993 * "commit" the end of the message.
4994 */
4995 if (htx_is_empty(htx)) {
4996 if (!htx_add_endof(htx, HTX_BLK_EOT))
4997 goto fail;
4998 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004999 htx->flags |= HTX_FL_EOM;
Christopher Faulet33724322021-02-10 09:04:59 +01005000 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02005001 }
5002
Willy Tarreaud1023bb2018-03-22 16:53:12 +01005003 h2c->rcvd_c += h2c->dpl;
5004 h2c->rcvd_s += h2c->dpl;
5005 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005006 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet9b79a102019-07-15 11:22:56 +02005007 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005008 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005009 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01005010 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005011 if (htx)
5012 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005013 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01005014 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005015}
5016
Willy Tarreau115e83b2018-12-01 19:17:53 +01005017/* Try to send a HEADERS frame matching HTX response present in HTX message
5018 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5019 * must check the stream's status to detect any error which might have happened
5020 * subsequently to a successful send. The htx blocks are automatically removed
5021 * from the message. The htx message is assumed to be valid since produced from
5022 * the internal code, hence it contains a start line, an optional series of
5023 * header blocks and an end of header, otherwise an invalid frame could be
5024 * emitted and the resulting htx message could be left in an inconsistent state.
5025 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005026static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005027{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005028 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01005029 struct h2c *h2c = h2s->h2c;
5030 struct htx_blk *blk;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005031 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005032 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005033 struct htx_sl *sl;
5034 enum htx_blk_type type;
5035 int es_now = 0;
5036 int ret = 0;
5037 int hdr;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005038
Willy Tarreau7838a792019-08-12 18:42:03 +02005039 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5040
Willy Tarreau115e83b2018-12-01 19:17:53 +01005041 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005042 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005043 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005044 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005045 return 0;
5046 }
5047
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005048 /* get the start line (we do have one) and the rest of the headers,
5049 * that we dump starting at header 0 */
5050 sl = NULL;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005051 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005052 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005053 type = htx_get_blk_type(blk);
5054
5055 if (type == HTX_BLK_UNUSED)
5056 continue;
5057
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005058 if (type == HTX_BLK_EOH)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005059 break;
5060
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005061 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005062 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005063 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5064 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5065 goto fail;
5066 }
5067
5068 list[hdr].n = htx_get_blk_name(htx, blk);
5069 list[hdr].v = htx_get_blk_value(htx, blk);
5070 hdr++;
5071 }
5072 else if (type == HTX_BLK_RES_SL) {
Christopher Faulet56498132021-01-29 11:39:43 +01005073 BUG_ON(sl); /* Only one start-line expected */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005074 sl = htx_get_blk_ptr(htx, blk);
5075 h2s->status = sl->info.res.status;
Christopher Faulet7d247f02020-12-02 14:26:36 +01005076 if (h2s->status == 204 || h2s->status == 304)
5077 h2s->flags |= H2_SF_BODYLESS_RESP;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005078 if (h2s->status < 100 || h2s->status > 999) {
5079 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5080 goto fail;
5081 }
5082 else if (h2s->status == 101) {
Amaury Denoyelleefe22762020-12-11 17:53:08 +01005083 if (unlikely(h2s->flags & H2_SF_EXT_CONNECT_RCVD)) {
5084 /* If an Extended CONNECT has been received, we need to convert 101 to 200 */
5085 h2s->status = 200;
5086 h2s->flags &= ~H2_SF_EXT_CONNECT_RCVD;
5087 }
5088 else {
5089 /* Otherwise, 101 responses are not supported in H2, so return a error (RFC7540#8.1.1) */
5090 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5091 goto fail;
5092 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005093 }
5094 else if ((h2s->flags & H2_SF_BODY_TUNNEL) && h2s->status >= 300) {
5095 /* Abort the tunnel attempt */
5096 h2s->flags &= ~H2_SF_BODY_TUNNEL;
5097 h2s->flags |= H2_SF_TUNNEL_ABRT;
5098 }
5099 }
5100 else {
5101 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 +01005102 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005103 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005104 }
5105
Christopher Faulet56498132021-01-29 11:39:43 +01005106 /* The start-line me be defined */
5107 BUG_ON(!sl);
5108
Willy Tarreau115e83b2018-12-01 19:17:53 +01005109 /* marker for end of headers */
5110 list[hdr].n = ist("");
5111
Willy Tarreau9c218e72019-05-26 10:08:28 +02005112 mbuf = br_tail(h2c->mbuf);
5113 retry:
5114 if (!h2_get_buf(h2c, mbuf)) {
5115 h2c->flags |= H2_CF_MUX_MALLOC;
5116 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005117 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 +02005118 return 0;
5119 }
5120
Willy Tarreau115e83b2018-12-01 19:17:53 +01005121 chunk_reset(&outbuf);
5122
5123 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005124 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5125 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005126 break;
5127 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005128 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01005129 }
5130
5131 if (outbuf.size < 9)
5132 goto full;
5133
5134 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5135 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5136 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5137 outbuf.data = 9;
5138
5139 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01005140 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005141 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005142 goto realign_again;
5143 goto full;
5144 }
5145
5146 /* encode all headers, stop at empty name */
5147 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5148 /* these ones do not exist in H2 and must be dropped. */
5149 if (isteq(list[hdr].n, ist("connection")) ||
5150 isteq(list[hdr].n, ist("proxy-connection")) ||
5151 isteq(list[hdr].n, ist("keep-alive")) ||
5152 isteq(list[hdr].n, ist("upgrade")) ||
5153 isteq(list[hdr].n, ist("transfer-encoding")))
5154 continue;
5155
Christopher Faulet86d144c2019-08-14 16:32:25 +02005156 /* Skip all pseudo-headers */
5157 if (*(list[hdr].n.ptr) == ':')
5158 continue;
5159
Willy Tarreau115e83b2018-12-01 19:17:53 +01005160 if (isteq(list[hdr].n, ist("")))
5161 break; // end
5162
5163 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
5164 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005165 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005166 goto realign_again;
5167 goto full;
5168 }
5169 }
5170
Willy Tarreaucb985a42019-10-07 16:56:34 +02005171 /* update the frame's size */
5172 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5173
5174 if (outbuf.data > h2c->mfs + 9) {
5175 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5176 /* output full */
5177 if (b_space_wraps(mbuf))
5178 goto realign_again;
5179 goto full;
5180 }
5181 }
5182
Willy Tarreau38b5bec2021-06-17 08:40:04 +02005183 TRACE_USER("sent H2 response ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5184
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005185 /* remove all header blocks including the EOH and compute the
5186 * corresponding size.
Willy Tarreau115e83b2018-12-01 19:17:53 +01005187 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005188 ret = 0;
5189 blk = htx_get_head_blk(htx);
5190 while (blk) {
5191 type = htx_get_blk_type(blk);
5192 ret += htx_get_blksz(blk);
5193 blk = htx_remove_blk(htx, blk);
5194 /* The removed block is the EOH */
5195 if (type == HTX_BLK_EOH)
5196 break;
Christopher Faulet5be651d2021-01-22 15:28:03 +01005197 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005198
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005199 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) {
5200 /* Response already closed: add END_STREAM */
5201 es_now = 1;
5202 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005203 else if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && h2s->status >= 200) {
5204 /* EOM+empty: we may need to add END_STREAM except for 1xx
Christopher Faulet991febd2020-12-02 15:17:31 +01005205 * responses and tunneled response.
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005206 */
Christopher Faulet991febd2020-12-02 15:17:31 +01005207 if (!(h2s->flags & H2_SF_BODY_TUNNEL) || h2s->status >= 300)
5208 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005209 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005210
Willy Tarreau115e83b2018-12-01 19:17:53 +01005211 if (es_now)
5212 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5213
5214 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005215 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01005216
5217 /* indicates the HEADERS frame was sent, except for 1xx responses. For
5218 * 1xx responses, another HEADERS frame is expected.
5219 */
Christopher Faulet89899422020-12-07 18:24:43 +01005220 if (h2s->status >= 200)
Christopher Faulet0b465482019-02-19 15:14:23 +01005221 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005222
Willy Tarreau115e83b2018-12-01 19:17:53 +01005223 if (es_now) {
5224 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005225 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 +01005226 if (h2s->st == H2_SS_OPEN)
5227 h2s->st = H2_SS_HLOC;
5228 else
5229 h2s_close(h2s);
5230 }
5231
5232 /* OK we could properly deliver the response */
Willy Tarreau115e83b2018-12-01 19:17:53 +01005233 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005234 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005235 return ret;
5236 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005237 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5238 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005239 h2c->flags |= H2_CF_MUX_MFULL;
5240 h2s->flags |= H2_SF_BLK_MROOM;
5241 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005242 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 +01005243 goto end;
5244 fail:
5245 /* unparsable HTX messages, too large ones to be produced in the local
5246 * list etc go here (unrecoverable errors).
5247 */
5248 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5249 ret = 0;
5250 goto end;
5251}
5252
Willy Tarreau80739692018-10-05 11:35:57 +02005253/* Try to send a HEADERS frame matching HTX request present in HTX message
5254 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5255 * must check the stream's status to detect any error which might have happened
5256 * subsequently to a successful send. The htx blocks are automatically removed
5257 * from the message. The htx message is assumed to be valid since produced from
5258 * the internal code, hence it contains a start line, an optional series of
5259 * header blocks and an end of header, otherwise an invalid frame could be
5260 * emitted and the resulting htx message could be left in an inconsistent state.
5261 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005262static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005263{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005264 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005265 struct h2c *h2c = h2s->h2c;
5266 struct htx_blk *blk;
Willy Tarreau80739692018-10-05 11:35:57 +02005267 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005268 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005269 struct htx_sl *sl;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005270 struct ist meth, uri, auth, host = IST_NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005271 enum htx_blk_type type;
5272 int es_now = 0;
5273 int ret = 0;
5274 int hdr;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005275 int extended_connect = 0;
Willy Tarreau80739692018-10-05 11:35:57 +02005276
Willy Tarreau7838a792019-08-12 18:42:03 +02005277 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5278
Willy Tarreau80739692018-10-05 11:35:57 +02005279 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005280 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005281 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005282 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005283 return 0;
5284 }
5285
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005286 /* get the start line (we do have one) and the rest of the headers,
5287 * that we dump starting at header 0 */
5288 sl = NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005289 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005290 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005291 type = htx_get_blk_type(blk);
5292
5293 if (type == HTX_BLK_UNUSED)
5294 continue;
5295
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005296 if (type == HTX_BLK_EOH)
Willy Tarreau80739692018-10-05 11:35:57 +02005297 break;
5298
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005299 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005300 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005301 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5302 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5303 goto fail;
5304 }
Willy Tarreau80739692018-10-05 11:35:57 +02005305
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005306 list[hdr].n = htx_get_blk_name(htx, blk);
5307 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005308
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005309 /* Skip header if same name is used to add the server name */
5310 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name &&
5311 isteq(list[hdr].n, ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len)))
5312 continue;
Christopher Faulet67d58092019-10-02 10:51:38 +02005313
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005314 /* Convert connection: upgrade to Extended connect from rfc 8441 */
Christopher Faulet673504a2021-09-09 09:52:51 +02005315 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteqi(list[hdr].n, ist("connection"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005316 /* rfc 7230 #6.1 Connection = list of tokens */
5317 struct ist connection_ist = list[hdr].v;
5318 do {
5319 if (isteqi(iststop(connection_ist, ','),
5320 ist("upgrade"))) {
5321 h2s->flags |= (H2_SF_BODY_TUNNEL|H2_SF_EXT_CONNECT_SENT);
5322 sl->info.req.meth = HTTP_METH_CONNECT;
5323 meth = ist("CONNECT");
5324
5325 extended_connect = 1;
5326 break;
5327 }
5328
5329 connection_ist = istadv(istfind(connection_ist, ','), 1);
5330 } while (istlen(connection_ist));
5331 }
5332
Christopher Faulet673504a2021-09-09 09:52:51 +02005333 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteq(list[hdr].n, ist("upgrade"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005334 /* rfc 7230 #6.7 Upgrade = list of protocols
5335 * rfc 8441 #4 Extended connect = :protocol is single-valued
5336 *
5337 * only first HTTP/1 protocol is preserved
5338 */
5339 const struct ist protocol = iststop(list[hdr].v, ',');
5340 /* upgrade_protocol field is 16 bytes long in h2s */
5341 istpad(h2s->upgrade_protocol, isttrim(protocol, 15));
5342 }
5343
5344 if (isteq(list[hdr].n, ist("host")))
5345 host = list[hdr].v;
5346
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005347 hdr++;
5348 }
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005349 else if (type == HTX_BLK_REQ_SL) {
5350 BUG_ON(sl); /* Only one start-line expected */
5351 sl = htx_get_blk_ptr(htx, blk);
5352 meth = htx_sl_req_meth(sl);
5353 uri = htx_sl_req_uri(sl);
5354 if (sl->info.req.meth == HTTP_METH_HEAD)
5355 h2s->flags |= H2_SF_BODYLESS_RESP;
5356 if (unlikely(uri.len == 0)) {
5357 TRACE_ERROR("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5358 goto fail;
5359 }
5360 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005361 else {
5362 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5363 goto fail;
5364 }
Willy Tarreau80739692018-10-05 11:35:57 +02005365 }
5366
Christopher Faulet56498132021-01-29 11:39:43 +01005367 /* The start-line me be defined */
5368 BUG_ON(!sl);
5369
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005370 /* Now add the server name to a header (if requested) */
5371 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name) {
5372 struct server *srv = objt_server(h2c->conn->target);
5373
5374 if (srv) {
5375 list[hdr].n = ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len);
5376 list[hdr].v = ist(srv->id);
5377 hdr++;
5378 }
5379 }
5380
Willy Tarreau80739692018-10-05 11:35:57 +02005381 /* marker for end of headers */
5382 list[hdr].n = ist("");
5383
Willy Tarreau9c218e72019-05-26 10:08:28 +02005384 mbuf = br_tail(h2c->mbuf);
5385 retry:
5386 if (!h2_get_buf(h2c, mbuf)) {
5387 h2c->flags |= H2_CF_MUX_MALLOC;
5388 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005389 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 +02005390 return 0;
5391 }
5392
Willy Tarreau80739692018-10-05 11:35:57 +02005393 chunk_reset(&outbuf);
5394
5395 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005396 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5397 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005398 break;
5399 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005400 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005401 }
5402
5403 if (outbuf.size < 9)
5404 goto full;
5405
5406 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5407 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5408 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5409 outbuf.data = 9;
5410
5411 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005412 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005413 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005414 goto realign_again;
5415 goto full;
5416 }
5417
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005418 auth = ist(NULL);
5419
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005420 /* RFC7540 #8.3: the CONNECT method must have :
5421 * - :authority set to the URI part (host:port)
5422 * - :method set to CONNECT
5423 * - :scheme and :path omitted
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005424 *
5425 * Note that this is not applicable in case of the Extended CONNECT
5426 * protocol from rfc 8441.
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005427 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005428 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT) && !extended_connect) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005429 auth = uri;
5430
5431 if (!hpack_encode_header(&outbuf, ist(":authority"), auth)) {
5432 /* output full */
5433 if (b_space_wraps(mbuf))
5434 goto realign_again;
5435 goto full;
5436 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005437 h2s->flags |= H2_SF_BODY_TUNNEL;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005438 } else {
5439 /* other methods need a :scheme. If an authority is known from
5440 * the request line, it must be sent, otherwise only host is
5441 * sent. Host is never sent as the authority.
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005442 *
5443 * This code is also applicable for Extended CONNECT protocol
5444 * from rfc 8441.
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005445 */
5446 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005447
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005448 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5449 /* the URI seems to start with a scheme */
5450 int len = 1;
5451
5452 while (len < uri.len && uri.ptr[len] != ':')
5453 len++;
5454
5455 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5456 /* make the uri start at the authority now */
Tim Duesterhus9f75ed12021-03-02 18:57:26 +01005457 scheme = ist2(uri.ptr, len);
Tim Duesterhus154374c2021-03-02 18:57:27 +01005458 uri = istadv(uri, len + 3);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005459
5460 /* find the auth part of the URI */
Tim Duesterhus92c696e2021-02-28 16:11:36 +01005461 auth = ist2(uri.ptr, 0);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005462 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5463 auth.len++;
5464
Tim Duesterhus154374c2021-03-02 18:57:27 +01005465 uri = istadv(uri, auth.len);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005466 }
5467 }
5468
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005469 /* For Extended CONNECT, the :authority must be present.
5470 * Use host value for it.
5471 */
5472 if (unlikely(extended_connect) && isttest(host))
5473 auth = host;
5474
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005475 if (!scheme.len) {
5476 /* no explicit scheme, we're using an origin-form URI,
5477 * probably from an H1 request transcoded to H2 via an
5478 * external layer, then received as H2 without authority.
5479 * So we have to look up the scheme from the HTX flags.
5480 * In such a case only http and https are possible, and
5481 * https is the default (sent by browsers).
5482 */
5483 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5484 scheme = ist("http");
5485 else
5486 scheme = ist("https");
5487 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005488
5489 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005490 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005491 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005492 goto realign_again;
5493 goto full;
5494 }
Willy Tarreau80739692018-10-05 11:35:57 +02005495
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005496 if (auth.len && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005497 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005498 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005499 goto realign_again;
5500 goto full;
5501 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005502
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005503 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5504 * be sent as '/' or '*'.
5505 */
5506 if (unlikely(!uri.len)) {
5507 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5508 uri = ist("*");
5509 else
5510 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005511 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005512
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005513 if (!hpack_encode_path(&outbuf, uri)) {
5514 /* output full */
5515 if (b_space_wraps(mbuf))
5516 goto realign_again;
5517 goto full;
5518 }
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005519
5520 /* encode the pseudo-header protocol from rfc8441 if using
5521 * Extended CONNECT method.
5522 */
5523 if (unlikely(extended_connect)) {
5524 const struct ist protocol = ist(h2s->upgrade_protocol);
5525 if (isttest(protocol)) {
5526 if (!hpack_encode_header(&outbuf,
5527 ist(":protocol"),
5528 protocol)) {
5529 /* output full */
5530 if (b_space_wraps(mbuf))
5531 goto realign_again;
5532 goto full;
5533 }
5534 }
5535 }
Willy Tarreau80739692018-10-05 11:35:57 +02005536 }
5537
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005538 /* encode all headers, stop at empty name. Host is only sent if we
5539 * do not provide an authority.
5540 */
Willy Tarreau80739692018-10-05 11:35:57 +02005541 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005542 struct ist n = list[hdr].n;
5543 struct ist v = list[hdr].v;
5544
Willy Tarreau80739692018-10-05 11:35:57 +02005545 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005546 if (isteq(n, ist("connection")) ||
5547 (auth.len && isteq(n, ist("host"))) ||
5548 isteq(n, ist("proxy-connection")) ||
5549 isteq(n, ist("keep-alive")) ||
5550 isteq(n, ist("upgrade")) ||
5551 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005552 continue;
5553
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005554 if (isteq(n, ist("te"))) {
5555 /* "te" may only be sent with "trailers" if this value
5556 * is present, otherwise it must be deleted.
5557 */
5558 v = istist(v, ist("trailers"));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01005559 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005560 continue;
5561 v = ist("trailers");
5562 }
5563
Christopher Faulet86d144c2019-08-14 16:32:25 +02005564 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005565 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005566 continue;
5567
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005568 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005569 break; // end
5570
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005571 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005572 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005573 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005574 goto realign_again;
5575 goto full;
5576 }
5577 }
5578
Willy Tarreaucb985a42019-10-07 16:56:34 +02005579 /* update the frame's size */
5580 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5581
5582 if (outbuf.data > h2c->mfs + 9) {
5583 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5584 /* output full */
5585 if (b_space_wraps(mbuf))
5586 goto realign_again;
5587 goto full;
5588 }
5589 }
5590
Willy Tarreau38b5bec2021-06-17 08:40:04 +02005591 TRACE_USER("sent H2 request ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5592
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005593 /* remove all header blocks including the EOH and compute the
5594 * corresponding size.
Willy Tarreau80739692018-10-05 11:35:57 +02005595 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005596 ret = 0;
5597 blk = htx_get_head_blk(htx);
5598 while (blk) {
5599 type = htx_get_blk_type(blk);
5600 ret += htx_get_blksz(blk);
5601 blk = htx_remove_blk(htx, blk);
5602 /* The removed block is the EOH */
5603 if (type == HTX_BLK_EOH)
5604 break;
Christopher Fauletd0db4232021-01-22 11:46:30 +01005605 }
Willy Tarreau80739692018-10-05 11:35:57 +02005606
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005607 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) {
5608 /* Request already closed: add END_STREAM */
Willy Tarreau80739692018-10-05 11:35:57 +02005609 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005610 }
5611 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5612 /* EOM+empty: we may need to add END_STREAM (except for CONNECT
5613 * request)
5614 */
5615 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5616 es_now = 1;
5617 }
Willy Tarreau80739692018-10-05 11:35:57 +02005618
Willy Tarreau80739692018-10-05 11:35:57 +02005619 if (es_now)
5620 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5621
5622 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005623 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005624 h2s->flags |= H2_SF_HEADERS_SENT;
5625 h2s->st = H2_SS_OPEN;
5626
Willy Tarreau80739692018-10-05 11:35:57 +02005627 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005628 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 +02005629 // trim any possibly pending data (eg: inconsistent content-length)
5630 h2s->flags |= H2_SF_ES_SENT;
5631 h2s->st = H2_SS_HLOC;
5632 }
5633
Willy Tarreau80739692018-10-05 11:35:57 +02005634 end:
5635 return ret;
5636 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005637 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5638 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005639 h2c->flags |= H2_CF_MUX_MFULL;
5640 h2s->flags |= H2_SF_BLK_MROOM;
5641 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005642 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 +02005643 goto end;
5644 fail:
5645 /* unparsable HTX messages, too large ones to be produced in the local
5646 * list etc go here (unrecoverable errors).
5647 */
5648 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5649 ret = 0;
5650 goto end;
5651}
5652
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005653/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005654 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5655 * caller must check the stream's status to detect any error which might have
5656 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005657 * consumed, or zero if nothing done.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005658 */
Christopher Faulet142854b2020-12-02 15:12:40 +01005659static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005660{
5661 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005662 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005663 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005664 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005665 size_t total = 0;
5666 int es_now = 0;
5667 int bsize; /* htx block size */
5668 int fsize; /* h2 frame size */
5669 struct htx_blk *blk;
5670 enum htx_blk_type type;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005671 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005672
Willy Tarreau7838a792019-08-12 18:42:03 +02005673 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5674
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005675 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005676 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005677 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005678 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005679 goto end;
5680 }
5681
Willy Tarreau98de12a2018-12-12 07:03:00 +01005682 htx = htx_from_buf(buf);
5683
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005684 /* We only come here with HTX_BLK_DATA blocks */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005685
5686 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005687 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005688 goto end;
5689
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005690 if ((h2c->flags & H2_CF_IS_BACK) &&
Christopher Fauletf95f8762021-01-22 11:59:07 +01005691 (h2s->flags & (H2_SF_HEADERS_RCVD|H2_SF_BODY_TUNNEL)) == H2_SF_BODY_TUNNEL) {
5692 /* The response HEADERS frame not received yet. Thus the tunnel
5693 * is not fully established yet. In this situation, we block
5694 * data sending.
5695 */
5696 h2s->flags |= H2_SF_BLK_MBUSY;
5697 TRACE_STATE("Request DATA frame blocked waiting for tunnel establishment", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5698 goto end;
5699 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01005700 else if ((h2c->flags & H2_CF_IS_BACK) && (h2s->flags & H2_SF_TUNNEL_ABRT)) {
5701 /* a tunnel attempt was aborted but the is pending raw data to xfer to the server.
5702 * Thus the stream is closed with the CANCEL error. The error will be reported to
5703 * the upper layer as aserver abort. But at this stage there is nothing more we can
5704 * do. We just wait for the end of the response to be sure to not truncate it.
5705 */
5706 if (!(h2s->flags & H2_SF_ES_RCVD)) {
5707 TRACE_STATE("Request DATA frame blocked waiting end of aborted tunnel", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5708 h2s->flags |= H2_SF_BLK_MBUSY;
5709 }
5710 else {
5711 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5712 h2s_error(h2s, H2_ERR_CANCEL);
5713 }
5714 goto end;
5715 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005716
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005717 blk = htx_get_head_blk(htx);
5718 type = htx_get_blk_type(blk);
5719 bsize = htx_get_blksz(blk);
5720 fsize = bsize;
5721 trunc_out = 0;
5722 if (type != HTX_BLK_DATA)
5723 goto end;
5724
Willy Tarreau9c218e72019-05-26 10:08:28 +02005725 mbuf = br_tail(h2c->mbuf);
5726 retry:
5727 if (!h2_get_buf(h2c, mbuf)) {
5728 h2c->flags |= H2_CF_MUX_MALLOC;
5729 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005730 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 +02005731 goto end;
5732 }
5733
Willy Tarreau98de12a2018-12-12 07:03:00 +01005734 /* Perform some optimizations to reduce the number of buffer copies.
5735 * First, if the mux's buffer is empty and the htx area contains
5736 * exactly one data block of the same size as the requested count, and
5737 * this count fits within the frame size, the stream's window size, and
5738 * the connection's window size, then it's possible to simply swap the
5739 * caller's buffer with the mux's output buffer and adjust offsets and
5740 * length to match the entire DATA HTX block in the middle. In this
5741 * case we perform a true zero-copy operation from end-to-end. This is
5742 * the situation that happens all the time with large files. Second, if
5743 * this is not possible, but the mux's output buffer is empty, we still
5744 * have an opportunity to avoid the copy to the intermediary buffer, by
5745 * making the intermediary buffer's area point to the output buffer's
5746 * area. In this case we want to skip the HTX header to make sure that
5747 * copies remain aligned and that this operation remains possible all
5748 * the time. This goes for headers, data blocks and any data extracted
5749 * from the HTX blocks.
5750 */
5751 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005752 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005753 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005754 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005755
Willy Tarreaubcc45952019-05-26 10:05:50 +02005756 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005757 /* Too bad there are data left there. We're willing to memcpy/memmove
5758 * up to 1/4 of the buffer, which means that it's OK to copy a large
5759 * frame into a buffer containing few data if it needs to be realigned,
5760 * and that it's also OK to copy few data without realigning. Otherwise
5761 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005762 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005763 if (fsize + 9 <= b_room(mbuf) &&
5764 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005765 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5766 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 +01005767 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005768 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005769
Willy Tarreau9c218e72019-05-26 10:08:28 +02005770 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5771 goto retry;
5772
Willy Tarreau98de12a2018-12-12 07:03:00 +01005773 h2c->flags |= H2_CF_MUX_MFULL;
5774 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005775 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 +01005776 goto end;
5777 }
5778
Christopher Faulet925abdf2021-04-27 22:51:07 +02005779 if (htx->flags & HTX_FL_EOM) {
5780 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5781 * message)
5782 */
5783 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5784 es_now = 1;
5785 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005786 /* map an H2 frame to the HTX block so that we can put the
5787 * frame header there.
5788 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005789 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5790 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005791
5792 /* prepend an H2 DATA frame header just before the DATA block */
5793 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5794 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
Christopher Faulet925abdf2021-04-27 22:51:07 +02005795 if (es_now)
5796 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005797 h2_set_frame_size(outbuf.area, fsize);
5798
5799 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005800 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005801 h2c->mws -= fsize;
5802
5803 /* and exchange with our old area */
5804 buf->area = old_area;
5805 buf->data = buf->head = 0;
5806 total += fsize;
Christopher Faulet925abdf2021-04-27 22:51:07 +02005807 fsize = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005808
5809 TRACE_PROTO("sent H2 DATA frame (zero-copy)", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Christopher Faulet925abdf2021-04-27 22:51:07 +02005810 goto out;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005811 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005812
Willy Tarreau98de12a2018-12-12 07:03:00 +01005813 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005814 /* for DATA and EOM we'll have to emit a frame, even if empty */
5815
5816 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005817 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5818 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005819 break;
5820 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005821 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005822 }
5823
5824 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005825 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5826 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005827 h2c->flags |= H2_CF_MUX_MFULL;
5828 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005829 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005830 goto end;
5831 }
5832
5833 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5834 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5835 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5836 outbuf.data = 9;
5837
5838 /* we have in <fsize> the exact number of bytes we need to copy from
5839 * the HTX buffer. We need to check this against the connection's and
5840 * the stream's send windows, and to ensure that this fits in the max
5841 * frame size and in the buffer's available space minus 9 bytes (for
5842 * the frame header). The connection's flow control is applied last so
5843 * that we can use a separate list of streams which are immediately
5844 * unblocked on window opening. Note: we don't implement padding.
5845 */
5846
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005847 if (!fsize)
5848 goto send_empty;
5849
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005850 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005851 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreau2b718102021-04-21 07:32:39 +02005852 if (LIST_INLIST(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005853 LIST_DEL_INIT(&h2s->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02005854 LIST_APPEND(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005855 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 +01005856 goto end;
5857 }
5858
Willy Tarreauee573762018-12-04 15:25:57 +01005859 if (fsize > count)
5860 fsize = count;
5861
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005862 if (fsize > h2s_mws(h2s))
5863 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005864
5865 if (h2c->mfs && fsize > h2c->mfs)
5866 fsize = h2c->mfs; // >0
5867
5868 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005869 /* It doesn't fit at once. If it at least fits once split and
5870 * the amount of data to move is low, let's defragment the
5871 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005872 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005873 if (b_space_wraps(mbuf) &&
5874 (fsize + 9 <= b_room(mbuf)) &&
5875 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005876 goto realign_again;
5877 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005878 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005879
5880 if (fsize <= 0) {
5881 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005882 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5883 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005884 h2c->flags |= H2_CF_MUX_MFULL;
5885 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005886 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005887 goto end;
5888 }
5889 }
5890
5891 if (h2c->mws <= 0) {
5892 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005893 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 +01005894 goto end;
5895 }
5896
5897 if (fsize > h2c->mws)
5898 fsize = h2c->mws;
5899
5900 /* now let's copy this this into the output buffer */
5901 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005902 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005903 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005904 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005905
5906 send_empty:
5907 /* update the frame's size */
5908 h2_set_frame_size(outbuf.area, fsize);
5909
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005910 /* consume incoming HTX block */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005911 total += fsize;
5912 if (fsize == bsize) {
5913 htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005914 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5915 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5916 * message)
5917 */
5918 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5919 es_now = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02005920 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005921 }
5922 else {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005923 /* we've truncated this block */
5924 htx_cut_data_blk(htx, blk, fsize);
5925 }
5926
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005927 if (es_now)
5928 outbuf.area[4] |= H2_F_DATA_END_STREAM;
5929
5930 /* commit the H2 response */
5931 b_add(mbuf, fsize + 9);
5932
Christopher Faulet925abdf2021-04-27 22:51:07 +02005933 out:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005934 if (es_now) {
5935 if (h2s->st == H2_SS_OPEN)
5936 h2s->st = H2_SS_HLOC;
5937 else
5938 h2s_close(h2s);
5939
5940 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005941 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 +01005942 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005943 else if (fsize) {
5944 if (fsize == bsize) {
5945 TRACE_DEVEL("more data may be available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5946 goto new_frame;
5947 }
5948 else if (trunc_out) {
5949 /* we've truncated this block */
5950 goto new_frame;
5951 }
5952 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005953
5954 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005955 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005956 return total;
5957}
5958
Christopher Faulet991febd2020-12-02 15:17:31 +01005959/* Skip the message payload (DATA blocks) and emit an empty DATA frame with the
5960 * ES flag set for stream <h2s>. This function is called for response known to
5961 * have no payload. Only DATA blocks are skipped. This means the trailers are
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005962 * still emitted. The caller must check the stream's status to detect any error
Christopher Faulet991febd2020-12-02 15:17:31 +01005963 * which might have happened subsequently to a successful send. Returns the
5964 * number of data bytes consumed, or zero if nothing done.
5965 */
5966static size_t h2s_skip_data(struct h2s *h2s, struct buffer *buf, size_t count)
5967{
5968 struct h2c *h2c = h2s->h2c;
5969 struct htx *htx;
5970 int bsize; /* htx block size */
5971 int fsize; /* h2 frame size */
5972 struct htx_blk *blk;
5973 enum htx_blk_type type;
5974 size_t total = 0;
5975
5976 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5977
5978 if (h2c_mux_busy(h2c, h2s)) {
5979 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5980 h2s->flags |= H2_SF_BLK_MBUSY;
5981 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5982 goto end;
5983 }
5984
5985 htx = htx_from_buf(buf);
5986
5987 next_data:
5988 if (!count || htx_is_empty(htx))
5989 goto end;
5990 blk = htx_get_head_blk(htx);
5991 type = htx_get_blk_type(blk);
5992 bsize = htx_get_blksz(blk);
5993 fsize = bsize;
5994 if (type != HTX_BLK_DATA)
5995 goto end;
5996
5997 if (fsize > count)
5998 fsize = count;
5999
6000 if (fsize != bsize)
6001 goto skip_data;
6002
6003 if (!(htx->flags & HTX_FL_EOM) || !htx_is_unique_blk(htx, blk))
6004 goto skip_data;
6005
6006 /* Here, it is the last block and it is also the end of the message. So
6007 * we can emit an empty DATA frame with the ES flag set
6008 */
6009 if (h2_send_empty_data_es(h2s) <= 0)
6010 goto end;
6011
6012 if (h2s->st == H2_SS_OPEN)
6013 h2s->st = H2_SS_HLOC;
6014 else
6015 h2s_close(h2s);
6016
6017 skip_data:
6018 /* consume incoming HTX block */
6019 total += fsize;
6020 if (fsize == bsize) {
6021 TRACE_DEVEL("more data may be available, trying to skip another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6022 htx_remove_blk(htx, blk);
6023 goto next_data;
6024 }
6025 else {
6026 /* we've truncated this block */
6027 htx_cut_data_blk(htx, blk, fsize);
6028 }
6029
6030 end:
6031 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6032 return total;
6033}
6034
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006035/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
6036 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
6037 * processed. The caller must check the stream's status to detect any error
6038 * which might have happened subsequently to a successful send. The htx blocks
6039 * are automatically removed from the message. The htx message is assumed to be
6040 * valid since produced from the internal code. Processing stops when meeting
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006041 * the EOT, which *is* removed. All trailers are processed at once and sent as a
6042 * single frame. The ES flag is always set.
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006043 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006044static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006045{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02006046 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006047 struct h2c *h2c = h2s->h2c;
6048 struct htx_blk *blk;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006049 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02006050 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006051 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006052 int ret = 0;
6053 int hdr;
6054 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006055
Willy Tarreau7838a792019-08-12 18:42:03 +02006056 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
6057
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006058 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006059 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006060 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02006061 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006062 goto end;
6063 }
6064
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006065 /* get trailers. */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006066 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006067 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006068 type = htx_get_blk_type(blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006069
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006070 if (type == HTX_BLK_UNUSED)
6071 continue;
6072
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006073 if (type == HTX_BLK_EOT)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006074 break;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006075 if (type == HTX_BLK_TLR) {
6076 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
6077 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
6078 goto fail;
6079 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006080
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006081 list[hdr].n = htx_get_blk_name(htx, blk);
6082 list[hdr].v = htx_get_blk_value(htx, blk);
6083 hdr++;
6084 }
6085 else {
6086 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 +01006087 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02006088 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006089 }
6090
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006091 /* marker for end of trailers */
6092 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006093
Willy Tarreau9c218e72019-05-26 10:08:28 +02006094 mbuf = br_tail(h2c->mbuf);
6095 retry:
6096 if (!h2_get_buf(h2c, mbuf)) {
6097 h2c->flags |= H2_CF_MUX_MALLOC;
6098 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006099 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 +02006100 goto end;
6101 }
6102
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006103 chunk_reset(&outbuf);
6104
6105 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006106 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6107 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006108 break;
6109 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006110 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006111 }
6112
6113 if (outbuf.size < 9)
6114 goto full;
6115
6116 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
6117 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
6118 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6119 outbuf.data = 9;
6120
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006121 /* encode all headers */
6122 for (idx = 0; idx < hdr; idx++) {
6123 /* these ones do not exist in H2 or must not appear in
6124 * trailers and must be dropped.
6125 */
6126 if (isteq(list[idx].n, ist("host")) ||
6127 isteq(list[idx].n, ist("content-length")) ||
6128 isteq(list[idx].n, ist("connection")) ||
6129 isteq(list[idx].n, ist("proxy-connection")) ||
6130 isteq(list[idx].n, ist("keep-alive")) ||
6131 isteq(list[idx].n, ist("upgrade")) ||
6132 isteq(list[idx].n, ist("te")) ||
6133 isteq(list[idx].n, ist("transfer-encoding")))
6134 continue;
6135
Christopher Faulet86d144c2019-08-14 16:32:25 +02006136 /* Skip all pseudo-headers */
6137 if (*(list[idx].n.ptr) == ':')
6138 continue;
6139
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006140 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
6141 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006142 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006143 goto realign_again;
6144 goto full;
6145 }
6146 }
6147
Willy Tarreau5121e5d2019-05-06 15:13:41 +02006148 if (outbuf.data == 9) {
6149 /* here we have a problem, we have nothing to emit (either we
6150 * received an empty trailers block followed or we removed its
6151 * contents above). Because of this we can't send a HEADERS
6152 * frame, so we have to cheat and instead send an empty DATA
6153 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01006154 */
6155 outbuf.area[3] = H2_FT_DATA;
6156 outbuf.area[4] = H2_F_DATA_END_STREAM;
6157 }
6158
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006159 /* update the frame's size */
6160 h2_set_frame_size(outbuf.area, outbuf.data - 9);
6161
Willy Tarreau572d9f52019-10-11 16:58:37 +02006162 if (outbuf.data > h2c->mfs + 9) {
6163 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
6164 /* output full */
6165 if (b_space_wraps(mbuf))
6166 goto realign_again;
6167 goto full;
6168 }
6169 }
6170
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006171 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02006172 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 +02006173 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006174 h2s->flags |= H2_SF_ES_SENT;
6175
6176 if (h2s->st == H2_SS_OPEN)
6177 h2s->st = H2_SS_HLOC;
6178 else
6179 h2s_close(h2s);
6180
6181 /* OK we could properly deliver the response */
6182 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02006183 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006184 ret = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006185 blk = htx_get_head_blk(htx);
6186 while (blk) {
6187 type = htx_get_blk_type(blk);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006188 ret += htx_get_blksz(blk);
6189 blk = htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006190 /* The removed block is the EOT */
6191 if (type == HTX_BLK_EOT)
6192 break;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006193 }
6194
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006195 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006196 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006197 return ret;
6198 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02006199 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6200 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006201 h2c->flags |= H2_CF_MUX_MFULL;
6202 h2s->flags |= H2_SF_BLK_MROOM;
6203 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006204 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 +01006205 goto end;
6206 fail:
6207 /* unparsable HTX messages, too large ones to be produced in the local
6208 * list etc go here (unrecoverable errors).
6209 */
6210 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
6211 ret = 0;
6212 goto end;
6213}
6214
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006215/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6216 * event subscriber <es> is not allowed to change from a previous call as long
6217 * as at least one event is still subscribed. The <event_type> must only be a
6218 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006219 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006220static int h2_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02006221{
Olivier Houchard6ff20392018-07-17 18:46:31 +02006222 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02006223 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006224
Willy Tarreau7838a792019-08-12 18:42:03 +02006225 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006226
6227 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006228 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006229
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006230 es->events |= event_type;
6231 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006232
6233 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006234 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006235
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006236 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006237 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02006238 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02006239 !LIST_INLIST(&h2s->list)) {
Olivier Houchardf8338152019-05-14 17:50:32 +02006240 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02006241 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Olivier Houchardf8338152019-05-14 17:50:32 +02006242 else
Willy Tarreau2b718102021-04-21 07:32:39 +02006243 LIST_APPEND(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02006244 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02006245 }
Willy Tarreau7838a792019-08-12 18:42:03 +02006246 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006247 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006248}
6249
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006250/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6251 * The <es> pointer is not allowed to differ from the one passed to the
6252 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006253 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006254static int h2_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006255{
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006256 struct h2s *h2s = cs->ctx;
6257
Willy Tarreau7838a792019-08-12 18:42:03 +02006258 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006259
6260 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006261 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006262
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006263 es->events &= ~event_type;
6264 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01006265 h2s->subs = NULL;
6266
6267 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006268 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006269
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006270 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006271 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006272 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006273 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
6274 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02006275 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01006276
Willy Tarreau7838a792019-08-12 18:42:03 +02006277 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006278 return 0;
6279}
6280
6281
Christopher Faulet93a466b2021-09-21 15:50:55 +02006282/* Called from the upper layer, to receive data
6283 *
6284 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
6285 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
6286 * means the caller wants to flush input data (from the mux buffer and the
6287 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
6288 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
6289 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
6290 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
6291 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
6292 * copy as much data as possible.
6293 */
Olivier Houchard511efea2018-08-16 15:30:32 +02006294static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
6295{
Olivier Houchard638b7992018-08-16 15:41:52 +02006296 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01006297 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01006298 struct htx *h2s_htx = NULL;
6299 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02006300 size_t ret = 0;
6301
Willy Tarreau7838a792019-08-12 18:42:03 +02006302 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
6303
Olivier Houchard511efea2018-08-16 15:30:32 +02006304 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006305 h2s_htx = htx_from_buf(&h2s->rxbuf);
6306 if (htx_is_empty(h2s_htx)) {
6307 /* Here htx_to_buf() will set buffer data to 0 because
6308 * the HTX is empty.
6309 */
6310 htx_to_buf(h2s_htx, &h2s->rxbuf);
6311 goto end;
6312 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01006313
Christopher Faulet9b79a102019-07-15 11:22:56 +02006314 ret = h2s_htx->data;
6315 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01006316
Christopher Faulet9b79a102019-07-15 11:22:56 +02006317 /* <buf> is empty and the message is small enough, swap the
6318 * buffers. */
6319 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01006320 htx_to_buf(buf_htx, buf);
6321 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006322 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
6323 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01006324 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02006325
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006326 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_UNUSED);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006327
6328 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
6329 buf_htx->flags |= HTX_FL_PARSING_ERROR;
6330 if (htx_is_empty(buf_htx))
6331 cs->flags |= CS_FL_EOI;
Willy Tarreau86724e22018-12-01 23:19:43 +01006332 }
Christopher Faulet810df062020-07-22 16:20:34 +02006333 else if (htx_is_empty(h2s_htx))
Christopher Faulet42432f32020-11-20 17:43:16 +01006334 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006335
Christopher Faulet9b79a102019-07-15 11:22:56 +02006336 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
6337 htx_to_buf(buf_htx, buf);
6338 htx_to_buf(h2s_htx, &h2s->rxbuf);
6339 ret -= h2s_htx->data;
6340
Christopher Faulet37070b22019-02-14 15:12:14 +01006341 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02006342 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01006343 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006344 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01006345 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006346 if (h2s->flags & H2_SF_ES_RCVD) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02006347 cs->flags |= CS_FL_EOI;
Christopher Fauletd0db4232021-01-22 11:46:30 +01006348 /* Add EOS flag for tunnel */
6349 if (h2s->flags & H2_SF_BODY_TUNNEL)
6350 cs->flags |= CS_FL_EOS;
6351 }
Christopher Fauletaade4ed2020-10-08 15:38:41 +02006352 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02006353 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01006354 if (cs->flags & CS_FL_ERR_PENDING)
6355 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02006356 if (b_size(&h2s->rxbuf)) {
6357 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01006358 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02006359 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006360 }
6361
Willy Tarreau082f5592018-11-25 08:03:32 +01006362 if (ret && h2c->dsi == h2s->id) {
6363 /* demux is blocking on this stream's buffer */
6364 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006365 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006366 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006367
Willy Tarreau7838a792019-08-12 18:42:03 +02006368 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006369 return ret;
6370}
6371
Olivier Houchardd846c262018-10-19 17:24:29 +02006372
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006373/* Called from the upper layer, to send data from buffer <buf> for no more than
6374 * <count> bytes. Returns the number of bytes effectively sent. Some status
6375 * flags may be updated on the conn_stream.
6376 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02006377static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006378{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006379 struct h2s *h2s = cs->ctx;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006380 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006381 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006382 struct htx *htx;
6383 struct htx_blk *blk;
6384 enum htx_blk_type btype;
6385 uint32_t bsize;
6386 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006387
Willy Tarreau7838a792019-08-12 18:42:03 +02006388 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6389
Olivier Houchardd360ac62019-03-22 17:37:16 +01006390 /* If we were not just woken because we wanted to send but couldn't,
6391 * and there's somebody else that is waiting to send, do nothing,
6392 * we will subscribe later and be put at the end of the list
6393 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006394 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006395 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6396 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 +01006397 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006398 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006399 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006400
Willy Tarreau7838a792019-08-12 18:42:03 +02006401 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6402 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 +02006403 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006404 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006405
Willy Tarreaucab22952019-10-31 15:48:18 +01006406 if (h2s->h2c->st0 >= H2_CS_ERROR) {
6407 cs->flags |= CS_FL_ERROR;
6408 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);
6409 return 0;
6410 }
6411
Christopher Faulet9b79a102019-07-15 11:22:56 +02006412 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006413
Willy Tarreau0bad0432018-06-14 16:54:01 +02006414 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006415 h2s->flags |= H2_SF_OUTGOING_DATA;
6416
Willy Tarreau751f2d02018-10-05 09:35:00 +02006417 if (h2s->id == 0) {
6418 int32_t id = h2c_get_next_sid(h2s->h2c);
6419
6420 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02006421 cs->flags |= CS_FL_ERROR;
Willy Tarreau7838a792019-08-12 18:42:03 +02006422 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 +02006423 return 0;
6424 }
6425
6426 eb32_delete(&h2s->by_id);
6427 h2s->by_id.key = h2s->id = id;
6428 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006429 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006430 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6431 }
6432
Christopher Faulet9b79a102019-07-15 11:22:56 +02006433 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6434 count && !htx_is_empty(htx)) {
6435 idx = htx_get_head(htx);
6436 blk = htx_get_blk(htx, idx);
6437 btype = htx_get_blk_type(blk);
6438 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006439
Christopher Faulet9b79a102019-07-15 11:22:56 +02006440 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006441 case HTX_BLK_REQ_SL:
6442 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006443 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006444 if (ret > 0) {
6445 total += ret;
6446 count -= ret;
6447 if (ret < bsize)
6448 goto done;
6449 }
6450 break;
6451
Willy Tarreau115e83b2018-12-01 19:17:53 +01006452 case HTX_BLK_RES_SL:
6453 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006454 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006455 if (ret > 0) {
6456 total += ret;
6457 count -= ret;
6458 if (ret < bsize)
6459 goto done;
6460 }
6461 break;
6462
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006463 case HTX_BLK_DATA:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006464 /* all these cause the emission of a DATA frame (possibly empty) */
Christopher Faulet991febd2020-12-02 15:17:31 +01006465 if (!(h2s->h2c->flags & H2_CF_IS_BACK) &&
6466 (h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BODYLESS_RESP)) == H2_SF_BODYLESS_RESP)
6467 ret = h2s_skip_data(h2s, buf, count);
6468 else
6469 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006470 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006471 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006472 total += ret;
6473 count -= ret;
6474 if (ret < bsize)
6475 goto done;
6476 }
6477 break;
6478
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006479 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006480 case HTX_BLK_EOT:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006481 /* This is the first trailers block, all the subsequent ones */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006482 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006483 if (ret > 0) {
6484 total += ret;
6485 count -= ret;
6486 if (ret < bsize)
6487 goto done;
6488 }
6489 break;
6490
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006491 default:
6492 htx_remove_blk(htx, blk);
6493 total += bsize;
6494 count -= bsize;
6495 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006496 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006497 }
6498
Christopher Faulet9b79a102019-07-15 11:22:56 +02006499 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006500 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006501 /* trim any possibly pending data after we close (extra CR-LF,
6502 * unprocessed trailers, abnormal extra data, ...)
6503 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006504 total += count;
6505 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006506 }
6507
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006508 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006509 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006510 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 +01006511 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006512 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006513 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006514 }
6515
Christopher Faulet9b79a102019-07-15 11:22:56 +02006516 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006517
Olivier Houchard7505f942018-08-21 18:10:44 +02006518 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006519 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006520 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 +02006521 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006522 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006523
Olivier Houchard7505f942018-08-21 18:10:44 +02006524 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006525 /* If we're waiting for flow control, and we got a shutr on the
6526 * connection, we will never be unlocked, so add an error on
6527 * the conn_stream.
6528 */
6529 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
6530 !b_data(&h2s->h2c->dbuf) &&
6531 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006532 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 +01006533 if (cs->flags & CS_FL_EOS)
6534 cs->flags |= CS_FL_ERROR;
6535 else
6536 cs->flags |= CS_FL_ERR_PENDING;
6537 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006538
Willy Tarreau5723f292020-01-10 15:16:57 +01006539 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6540 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006541 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006542 LIST_DEL_INIT(&h2s->list);
6543 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006544
Willy Tarreau7838a792019-08-12 18:42:03 +02006545 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006546 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006547}
6548
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006549/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01006550static int h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006551{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01006552 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01006553 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006554 struct eb32_node *node;
6555 int fctl_cnt = 0;
6556 int send_cnt = 0;
6557 int tree_cnt = 0;
6558 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02006559 struct buffer *hmbuf, *tmbuf;
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006560 int ret = 0;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006561
6562 if (!h2c)
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006563 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006564
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006565 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006566 fctl_cnt++;
6567
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006568 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006569 send_cnt++;
6570
Willy Tarreau3af37712018-12-18 14:34:41 +01006571 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006572 node = eb32_first(&h2c->streams_by_id);
6573 while (node) {
6574 h2s = container_of(node, struct h2s, by_id);
6575 tree_cnt++;
6576 if (!h2s->cs)
6577 orph_cnt++;
6578 node = eb32_next(node);
6579 }
6580
Willy Tarreau60f62682019-05-26 11:32:27 +02006581 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006582 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006583 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau987c0632018-12-18 10:32:05 +01006584 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02006585 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
6586 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006587 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau616ac812018-07-24 14:12:42 +02006588 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006589 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006590 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
6591 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
6592 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02006593 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6594 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6595 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006596 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6597 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006598
6599 if (h2s) {
Willy Tarreaued4464e2021-01-20 15:50:03 +01006600 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 +02006601 h2s, h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
Willy Tarreau987c0632018-12-18 10:32:05 +01006602 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
6603 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
6604 h2s->cs);
6605 if (h2s->cs)
Willy Tarreau98e40b92021-01-20 16:27:01 +01006606 chunk_appendf(msg, "(.flg=0x%08x .data=%p)",
Willy Tarreau987c0632018-12-18 10:32:05 +01006607 h2s->cs->flags, h2s->cs->data);
Willy Tarreau98e40b92021-01-20 16:27:01 +01006608
6609 chunk_appendf(&trash, " .subs=%p", h2s->subs);
6610 if (h2s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01006611 chunk_appendf(&trash, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
6612 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
6613 h2s->subs->tasklet->calls,
6614 h2s->subs->tasklet->context);
6615 if (h2s->subs->tasklet->calls >= 1000000)
6616 ret = 1;
6617 resolve_sym_name(&trash, NULL, h2s->subs->tasklet->process);
6618 chunk_appendf(&trash, ")");
Willy Tarreau98e40b92021-01-20 16:27:01 +01006619 }
Willy Tarreau987c0632018-12-18 10:32:05 +01006620 }
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006621 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006622}
Willy Tarreau62f52692017-10-08 23:01:42 +02006623
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006624/* Migrate the the connection to the current thread.
6625 * Return 0 if successful, non-zero otherwise.
6626 * Expected to be called with the old thread lock held.
6627 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006628static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006629{
6630 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006631 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006632
6633 if (fd_takeover(conn->handle.fd, conn) != 0)
6634 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006635
6636 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6637 /* We failed to takeover the xprt, even if the connection may
6638 * still be valid, flag it as error'd, as we have already
6639 * taken over the fd, and wake the tasklet, so that it will
6640 * destroy it.
6641 */
6642 conn->flags |= CO_FL_ERROR;
6643 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6644 return -1;
6645 }
6646
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006647 if (h2c->wait_event.events)
6648 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6649 h2c->wait_event.events, &h2c->wait_event);
6650 /* To let the tasklet know it should free itself, and do nothing else,
6651 * set its context to NULL.
6652 */
6653 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006654 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006655
6656 task = h2c->task;
6657 if (task) {
6658 task->context = NULL;
6659 h2c->task = NULL;
6660 __ha_barrier_store();
6661 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006662
6663 h2c->task = task_new(tid_bit);
6664 if (!h2c->task) {
6665 h2_release(h2c);
6666 return -1;
6667 }
6668 h2c->task->process = h2_timeout_task;
6669 h2c->task->context = h2c;
6670 }
6671 h2c->wait_event.tasklet = tasklet_new();
6672 if (!h2c->wait_event.tasklet) {
6673 h2_release(h2c);
6674 return -1;
6675 }
6676 h2c->wait_event.tasklet->process = h2_io_cb;
6677 h2c->wait_event.tasklet->context = h2c;
6678 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6679 SUB_RETRY_RECV, &h2c->wait_event);
6680
6681 return 0;
6682}
6683
Willy Tarreau62f52692017-10-08 23:01:42 +02006684/*******************************************************/
6685/* functions below are dedicated to the config parsers */
6686/*******************************************************/
6687
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006688/* config parser for global "tune.h2.header-table-size" */
6689static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006690 const struct proxy *defpx, const char *file, int line,
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006691 char **err)
6692{
6693 if (too_many_args(1, args, err, NULL))
6694 return -1;
6695
6696 h2_settings_header_table_size = atoi(args[1]);
6697 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6698 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6699 return -1;
6700 }
6701 return 0;
6702}
Willy Tarreau62f52692017-10-08 23:01:42 +02006703
Willy Tarreaue6baec02017-07-27 11:45:11 +02006704/* config parser for global "tune.h2.initial-window-size" */
6705static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006706 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue6baec02017-07-27 11:45:11 +02006707 char **err)
6708{
6709 if (too_many_args(1, args, err, NULL))
6710 return -1;
6711
6712 h2_settings_initial_window_size = atoi(args[1]);
6713 if (h2_settings_initial_window_size < 0) {
6714 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6715 return -1;
6716 }
6717 return 0;
6718}
6719
Willy Tarreau5242ef82017-07-27 11:47:28 +02006720/* config parser for global "tune.h2.max-concurrent-streams" */
6721static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006722 const struct proxy *defpx, const char *file, int line,
Willy Tarreau5242ef82017-07-27 11:47:28 +02006723 char **err)
6724{
6725 if (too_many_args(1, args, err, NULL))
6726 return -1;
6727
6728 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006729 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006730 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6731 return -1;
6732 }
6733 return 0;
6734}
6735
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006736/* config parser for global "tune.h2.max-frame-size" */
6737static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006738 const struct proxy *defpx, const char *file, int line,
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006739 char **err)
6740{
6741 if (too_many_args(1, args, err, NULL))
6742 return -1;
6743
6744 h2_settings_max_frame_size = atoi(args[1]);
6745 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6746 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6747 return -1;
6748 }
6749 return 0;
6750}
6751
Willy Tarreau62f52692017-10-08 23:01:42 +02006752
6753/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006754/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006755/***************************************/
6756
6757/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006758static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006759 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006760 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006761 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006762 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006763 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006764 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006765 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01006766 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02006767 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006768 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006769 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006770 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006771 .shutr = h2_shutr,
6772 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006773 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006774 .show_fd = h2_show_fd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006775 .takeover = h2_takeover,
Christopher Fauleta4600572021-03-08 15:28:28 +01006776 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX|MX_FL_HOL_RISK|MX_FL_NO_UPG,
Willy Tarreau62f52692017-10-08 23:01:42 +02006777 .name = "H2",
6778};
6779
Christopher Faulet32f61c02018-04-10 14:33:41 +02006780static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006781 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006782
Willy Tarreau0108d902018-11-25 19:14:37 +01006783INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6784
Willy Tarreau62f52692017-10-08 23:01:42 +02006785/* config keyword parsers */
6786static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006787 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006788 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006789 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006790 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006791 { 0, NULL, NULL }
6792}};
6793
Willy Tarreau0108d902018-11-25 19:14:37 +01006794INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006795
6796/* initialize internal structs after the config is parsed.
6797 * Returns zero on success, non-zero on error.
6798 */
6799static int init_h2()
6800{
6801 pool_head_hpack_tbl = create_pool("hpack_tbl",
6802 h2_settings_header_table_size,
6803 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01006804 if (!pool_head_hpack_tbl) {
6805 ha_alert("failed to allocate hpack_tbl memory pool\n");
6806 return (ERR_ALERT | ERR_FATAL);
6807 }
6808 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006809}
6810
6811REGISTER_POST_CHECK(init_h2);