blob: 61fd1a4d246131b83b623c3e9c55c9a85c5790eb [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
Christopher Faulet484f10a2021-11-10 17:50:10 +010063#define H2_CF_DEM_SHORT_READ 0x00000200 // demux blocked on incomplete frame
Willy Tarreau6c3eeca2022-08-18 11:19:57 +020064#define H2_CF_DEM_IN_PROGRESS 0x00000400 // demux in progress (dsi,dfl,dft are valid)
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020065
Willy Tarreau081d4722017-05-16 21:51:05 +020066/* other flags */
Willy Tarreauf2101912018-07-19 10:11:38 +020067#define H2_CF_GOAWAY_SENT 0x00001000 // a GOAWAY frame was successfully sent
68#define H2_CF_GOAWAY_FAILED 0x00002000 // a GOAWAY frame failed to be sent
69#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 +020070#define H2_CF_IS_BACK 0x00008000 // this is an outgoing connection
Willy Tarreau3d4631f2021-01-20 10:53:13 +010071#define H2_CF_WINDOW_OPENED 0x00010000 // demux increased window already advertised
72#define H2_CF_RCVD_SHUT 0x00020000 // a recv() attempt already failed on a shutdown
73#define H2_CF_END_REACHED 0x00040000 // pending data too short with RCVD_SHUT present
Willy Tarreau081d4722017-05-16 21:51:05 +020074
Amaury Denoyelle68993a12021-10-18 09:43:29 +020075#define H2_CF_RCVD_RFC8441 0x00100000 // settings from RFC8441 has been received indicating support for Extended CONNECT
Willy Tarreau8a4dca02022-01-13 16:00:12 +010076#define H2_CF_SHTS_UPDATED 0x00200000 // SETTINGS_HEADER_TABLE_SIZE updated
77#define H2_CF_DTSU_EMITTED 0x00400000 // HPACK Dynamic Table Size Update opcode emitted
Amaury Denoyelle68993a12021-10-18 09:43:29 +020078
Willy Tarreau5ab6b572017-09-22 08:05:00 +020079/* H2 connection state, in h2c->st0 */
80enum h2_cs {
81 H2_CS_PREFACE, // init done, waiting for connection preface
82 H2_CS_SETTINGS1, // preface OK, waiting for first settings frame
83 H2_CS_FRAME_H, // first settings frame ok, waiting for frame header
84 H2_CS_FRAME_P, // frame header OK, waiting for frame payload
Willy Tarreaua20a5192017-12-27 11:02:06 +010085 H2_CS_FRAME_A, // frame payload OK, trying to send ACK frame
86 H2_CS_FRAME_E, // frame payload OK, trying to send RST frame
Willy Tarreau5ab6b572017-09-22 08:05:00 +020087 H2_CS_ERROR, // send GOAWAY(errcode) and close the connection ASAP
88 H2_CS_ERROR2, // GOAWAY(errcode) sent, close the connection ASAP
89 H2_CS_ENTRIES // must be last
90} __attribute__((packed));
91
Willy Tarreau51330962019-05-26 09:38:07 +020092
Willy Tarreau9c218e72019-05-26 10:08:28 +020093/* 32 buffers: one for the ring's root, rest for the mbuf itself */
94#define H2C_MBUF_CNT 32
Willy Tarreau51330962019-05-26 09:38:07 +020095
Willy Tarreau5ab6b572017-09-22 08:05:00 +020096/* H2 connection descriptor */
97struct h2c {
98 struct connection *conn;
99
100 enum h2_cs st0; /* mux state */
101 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
102
103 /* 16 bit hole here */
104 uint32_t flags; /* connection flags: H2_CF_* */
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100105 uint32_t streams_limit; /* maximum number of concurrent streams the peer supports */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200106 int32_t max_id; /* highest ID known on this connection, <0 before preface */
107 uint32_t rcvd_c; /* newly received data to ACK for the connection */
Willy Tarreau1d7138e2022-06-08 16:32:22 +0200108 uint32_t rcvd_s; /* newly received data to ACK for the current stream (dsi) or zero */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200109
110 /* states for the demux direction */
111 struct hpack_dht *ddht; /* demux dynamic header table */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200112 struct buffer dbuf; /* demux buffer */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200113
114 int32_t dsi; /* demux stream ID (<0 = idle) */
115 int32_t dfl; /* demux frame length (if dsi >= 0) */
116 int8_t dft; /* demux frame type (if dsi >= 0) */
117 int8_t dff; /* demux frame flags (if dsi >= 0) */
Willy Tarreau05e5daf2017-12-11 15:17:36 +0100118 uint8_t dpl; /* demux pad length (part of dfl), init to 0 */
119 /* 8 bit hole here */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200120 int32_t last_sid; /* last processed stream ID for GOAWAY, <0 before preface */
121
122 /* states for the mux direction */
Willy Tarreau51330962019-05-26 09:38:07 +0200123 struct buffer mbuf[H2C_MBUF_CNT]; /* mux buffers (ring) */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200124 int32_t msi; /* mux stream ID (<0 = idle) */
125 int32_t mfl; /* mux frame length (if dsi >= 0) */
126 int8_t mft; /* mux frame type (if dsi >= 0) */
127 int8_t mff; /* mux frame flags (if dsi >= 0) */
128 /* 16 bit hole here */
129 int32_t miw; /* mux initial window size for all new streams */
130 int32_t mws; /* mux window size. Can be negative. */
131 int32_t mfs; /* mux's max frame size */
132
Willy Tarreauea392822017-10-31 10:02:25 +0100133 int timeout; /* idle timeout duration in ticks */
Willy Tarreau599391a2017-11-24 10:16:00 +0100134 int shut_timeout; /* idle timeout duration in ticks after GOAWAY was sent */
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +0100135 int idle_start; /* date of the last time the connection went idle */
136 /* 32-bit hole here */
Willy Tarreau49745612017-12-03 18:56:02 +0100137 unsigned int nb_streams; /* number of streams in the tree */
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200138 unsigned int nb_cs; /* number of attached conn_streams */
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100139 unsigned int nb_reserved; /* number of reserved streams */
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100140 unsigned int stream_cnt; /* total number of streams seen */
Willy Tarreau0b37d652018-10-03 10:33:02 +0200141 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +0100142 struct task *task; /* timeout management task */
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100143 struct h2_counters *px_counters; /* h2 counters attached to proxy */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200144 struct eb_root streams_by_id; /* all active streams by their ID */
145 struct list send_list; /* list of blocked streams requesting to send */
146 struct list fctl_list; /* list of streams blocked by connection's fctl */
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200147 struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100148 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200149 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200150};
151
Willy Tarreau18312642017-10-11 07:57:07 +0200152/* H2 stream state, in h2s->st */
153enum h2_ss {
154 H2_SS_IDLE = 0, // idle
155 H2_SS_RLOC, // reserved(local)
156 H2_SS_RREM, // reserved(remote)
157 H2_SS_OPEN, // open
158 H2_SS_HREM, // half-closed(remote)
159 H2_SS_HLOC, // half-closed(local)
Willy Tarreau96060ba2017-10-16 18:34:34 +0200160 H2_SS_ERROR, // an error needs to be sent using RST_STREAM
Willy Tarreau18312642017-10-11 07:57:07 +0200161 H2_SS_CLOSED, // closed
162 H2_SS_ENTRIES // must be last
163} __attribute__((packed));
164
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200165#define H2_SS_MASK(state) (1UL << (state))
166#define H2_SS_IDLE_BIT (1UL << H2_SS_IDLE)
167#define H2_SS_RLOC_BIT (1UL << H2_SS_RLOC)
168#define H2_SS_RREM_BIT (1UL << H2_SS_RREM)
169#define H2_SS_OPEN_BIT (1UL << H2_SS_OPEN)
170#define H2_SS_HREM_BIT (1UL << H2_SS_HREM)
171#define H2_SS_HLOC_BIT (1UL << H2_SS_HLOC)
172#define H2_SS_ERROR_BIT (1UL << H2_SS_ERROR)
173#define H2_SS_CLOSED_BIT (1UL << H2_SS_CLOSED)
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200174
Willy Tarreau18312642017-10-11 07:57:07 +0200175/* HTTP/2 stream flags (32 bit), in h2s->flags */
176#define H2_SF_NONE 0x00000000
177#define H2_SF_ES_RCVD 0x00000001
178#define H2_SF_ES_SENT 0x00000002
179
180#define H2_SF_RST_RCVD 0x00000004 // received RST_STREAM
181#define H2_SF_RST_SENT 0x00000008 // sent RST_STREAM
182
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200183/* stream flags indicating the reason the stream is blocked */
184#define H2_SF_BLK_MBUSY 0x00000010 // blocked waiting for mux access (transient)
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200185#define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux (must be in send list)
186#define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl (must be in fctl list)
187#define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl (must be in blocked list)
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200188#define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above
189
Willy Tarreau454f9052017-10-26 19:40:35 +0200190/* stream flags indicating how data is supposed to be sent */
191#define H2_SF_DATA_CLEN 0x00000100 // data sent using content-length
Christopher Faulet7d247f02020-12-02 14:26:36 +0100192#define H2_SF_BODYLESS_RESP 0x00000200 /* Bodyless response message */
Christopher Fauletd0db4232021-01-22 11:46:30 +0100193#define H2_SF_BODY_TUNNEL 0x00000400 // Attempt to establish a Tunnelled stream (the result depends on the status code)
194
Willy Tarreau454f9052017-10-26 19:40:35 +0200195
Willy Tarreaud9464162020-01-10 18:25:07 +0100196#define H2_SF_NOTIFIED 0x00000800 // a paused stream was notified to try to send again
Willy Tarreau67434202017-11-06 20:20:51 +0100197#define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream
Willy Tarreauc4312d32017-11-07 12:01:53 +0100198#define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data
Willy Tarreau67434202017-11-06 20:20:51 +0100199
Willy Tarreau6cc85a52019-01-02 15:49:20 +0100200#define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream
201
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200202#define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy)
203#define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy)
Willy Tarreau3cf69fe2019-05-14 10:44:40 +0200204#define H2_SF_KILL_CONN 0x00020000 // kill the whole connection with this stream
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200205
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100206#define H2_SF_EXT_CONNECT_SENT 0x00040000 // rfc 8441 an Extended CONNECT has been sent
Amaury Denoyelleefe22762020-12-11 17:53:08 +0100207#define H2_SF_EXT_CONNECT_RCVD 0x00080000 // rfc 8441 an Extended CONNECT has been received and parsed
Christopher Fauletd0db4232021-01-22 11:46:30 +0100208
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100209#define H2_SF_TUNNEL_ABRT 0x00100000 // A tunnel attempt was aborted
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200210
Willy Tarreau18312642017-10-11 07:57:07 +0200211/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
Christopher Fauletfafd1b02020-11-03 18:25:52 +0100212 * it is being processed in the internal HTTP representation (HTX).
Willy Tarreau18312642017-10-11 07:57:07 +0200213 */
214struct h2s {
215 struct conn_stream *cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100216 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200217 struct h2c *h2c;
Willy Tarreau18312642017-10-11 07:57:07 +0200218 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200219 int32_t id; /* stream ID */
220 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200221 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200222 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
223 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200224 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100225 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200226 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Willy Tarreauf96508a2020-01-10 11:12:48 +0100227 struct wait_event *subs; /* recv wait_event the conn_stream associated is waiting on (via h2_subscribe) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200228 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Willy Tarreau5723f292020-01-10 15:16:57 +0100229 struct tasklet *shut_tl; /* deferred shutdown tasklet, to retry to send an RST after we failed to,
230 * in case there's no other subscription to do it */
Amaury Denoyelle74162742020-12-11 17:53:05 +0100231
232 char upgrade_protocol[16]; /* rfc 8441: requested protocol on Extended CONNECT */
Willy Tarreau18312642017-10-11 07:57:07 +0200233};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200234
Willy Tarreauc6405142017-09-21 20:23:50 +0200235/* descriptor for an h2 frame header */
236struct h2_fh {
237 uint32_t len; /* length, host order, 24 bits */
238 uint32_t sid; /* stream id, host order, 31 bits */
239 uint8_t ft; /* frame type */
240 uint8_t ff; /* frame flags */
241};
242
Willy Tarreau12ae2122019-08-08 18:23:12 +0200243/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200244static void h2_trace(enum trace_level level, uint64_t mask, \
245 const struct trace_source *src,
246 const struct ist where, const struct ist func,
247 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200248
249/* The event representation is split like this :
250 * strm - application layer
251 * h2s - internal H2 stream
252 * h2c - internal H2 connection
253 * conn - external connection
254 *
255 */
256static const struct trace_event h2_trace_events[] = {
257#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200258 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200259#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200260 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200261#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200262 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200263#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200264 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200265#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200266 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200267#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200268 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200269#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200270 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200271#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200272 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200273#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200274 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200275#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200276 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200277#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200278 { .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 +0200279#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200280 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200281#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200282 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200283#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200284 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200285#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200286 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200287#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200288 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200289#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200290 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200291#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200292 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200293#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200294 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200295#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200296 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200297#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200298 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200299#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200300 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200301#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200302 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200303#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200304 { .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 +0200305#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200306 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200307#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200308 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200309#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200310 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200311#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200312 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200313#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200314 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200315#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200316 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200317#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200318 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200319#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200320 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200321#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200322 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200323#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200324 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200325#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200326 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200327#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200328 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200329#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200330 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200331#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200332 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200333#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200334 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200335#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200336 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200337#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200338 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200339#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200340 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200341#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200342 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200343#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200344 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200345#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200346 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200347#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200348 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200349#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200350 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200351#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200352 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200353#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200354 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200355#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200356 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200357#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200358 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200359#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200360 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200361 { }
362};
363
364static const struct name_desc h2_trace_lockon_args[4] = {
365 /* arg1 */ { /* already used by the connection */ },
366 /* arg2 */ { .name="h2s", .desc="H2 stream" },
367 /* arg3 */ { },
368 /* arg4 */ { }
369};
370
371static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200372#define H2_VERB_CLEAN 1
373 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
374#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200375 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200376#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200377 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200378#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200379 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200380#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200381 { .name="complete", .desc="add full data dump when available" },
382 { /* end */ }
383};
384
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200385static struct trace_source trace_h2 __read_mostly = {
Willy Tarreau12ae2122019-08-08 18:23:12 +0200386 .name = IST("h2"),
387 .desc = "HTTP/2 multiplexer",
388 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200389 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200390 .known_events = h2_trace_events,
391 .lockon_args = h2_trace_lockon_args,
392 .decoding = h2_trace_decoding,
393 .report_events = ~0, // report everything by default
394};
395
396#define TRACE_SOURCE &trace_h2
397INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
398
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100399/* h2 stats module */
400enum {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100401 H2_ST_HEADERS_RCVD,
402 H2_ST_DATA_RCVD,
403 H2_ST_SETTINGS_RCVD,
404 H2_ST_RST_STREAM_RCVD,
405 H2_ST_GOAWAY_RCVD,
406
Amaury Denoyellea8879232020-10-27 17:16:03 +0100407 H2_ST_CONN_PROTO_ERR,
408 H2_ST_STRM_PROTO_ERR,
409 H2_ST_RST_STREAM_RESP,
410 H2_ST_GOAWAY_RESP,
411
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100412 H2_ST_OPEN_CONN,
413 H2_ST_OPEN_STREAM,
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100414 H2_ST_TOTAL_CONN,
415 H2_ST_TOTAL_STREAM,
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100416
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100417 H2_STATS_COUNT /* must be the last member of the enum */
418};
419
420static struct name_desc h2_stats[] = {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100421 [H2_ST_HEADERS_RCVD] = { .name = "h2_headers_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100422 .desc = "Total number of received HEADERS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100423 [H2_ST_DATA_RCVD] = { .name = "h2_data_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100424 .desc = "Total number of received DATA frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100425 [H2_ST_SETTINGS_RCVD] = { .name = "h2_settings_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100426 .desc = "Total number of received SETTINGS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100427 [H2_ST_RST_STREAM_RCVD] = { .name = "h2_rst_stream_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100428 .desc = "Total number of received RST_STREAM frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100429 [H2_ST_GOAWAY_RCVD] = { .name = "h2_goaway_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100430 .desc = "Total number of received GOAWAY frames" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100431
432 [H2_ST_CONN_PROTO_ERR] = { .name = "h2_detected_conn_protocol_errors",
433 .desc = "Total number of connection protocol errors" },
434 [H2_ST_STRM_PROTO_ERR] = { .name = "h2_detected_strm_protocol_errors",
435 .desc = "Total number of stream protocol errors" },
436 [H2_ST_RST_STREAM_RESP] = { .name = "h2_rst_stream_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100437 .desc = "Total number of RST_STREAM sent on detected error" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100438 [H2_ST_GOAWAY_RESP] = { .name = "h2_goaway_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100439 .desc = "Total number of GOAWAY sent on detected error" },
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100440
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100441 [H2_ST_OPEN_CONN] = { .name = "h2_open_connections",
442 .desc = "Count of currently open connections" },
443 [H2_ST_OPEN_STREAM] = { .name = "h2_backend_open_streams",
444 .desc = "Count of currently open streams" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100445 [H2_ST_TOTAL_CONN] = { .name = "h2_total_connections",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100446 .desc = "Total number of connections" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100447 [H2_ST_TOTAL_STREAM] = { .name = "h2_backend_total_streams",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100448 .desc = "Total number of streams" },
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100449};
450
451static struct h2_counters {
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100452 long long headers_rcvd; /* total number of HEADERS frame received */
453 long long data_rcvd; /* total number of DATA frame received */
454 long long settings_rcvd; /* total number of SETTINGS frame received */
455 long long rst_stream_rcvd; /* total number of RST_STREAM frame received */
456 long long goaway_rcvd; /* total number of GOAWAY frame received */
Amaury Denoyellea8879232020-10-27 17:16:03 +0100457
458 long long conn_proto_err; /* total number of protocol errors detected */
459 long long strm_proto_err; /* total number of protocol errors detected */
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100460 long long rst_stream_resp; /* total number of RST_STREAM frame sent on error */
461 long long goaway_resp; /* total number of GOAWAY frame sent on error */
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100462
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100463 long long open_conns; /* count of currently open connections */
464 long long open_streams; /* count of currently open streams */
465 long long total_conns; /* total number of connections */
466 long long total_streams; /* total number of streams */
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100467} h2_counters;
468
469static void h2_fill_stats(void *data, struct field *stats)
470{
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100471 struct h2_counters *counters = data;
472
473 stats[H2_ST_HEADERS_RCVD] = mkf_u64(FN_COUNTER, counters->headers_rcvd);
474 stats[H2_ST_DATA_RCVD] = mkf_u64(FN_COUNTER, counters->data_rcvd);
475 stats[H2_ST_SETTINGS_RCVD] = mkf_u64(FN_COUNTER, counters->settings_rcvd);
476 stats[H2_ST_RST_STREAM_RCVD] = mkf_u64(FN_COUNTER, counters->rst_stream_rcvd);
477 stats[H2_ST_GOAWAY_RCVD] = mkf_u64(FN_COUNTER, counters->goaway_rcvd);
Amaury Denoyellea8879232020-10-27 17:16:03 +0100478
479 stats[H2_ST_CONN_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->conn_proto_err);
480 stats[H2_ST_STRM_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->strm_proto_err);
481 stats[H2_ST_RST_STREAM_RESP] = mkf_u64(FN_COUNTER, counters->rst_stream_resp);
482 stats[H2_ST_GOAWAY_RESP] = mkf_u64(FN_COUNTER, counters->goaway_resp);
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100483
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100484 stats[H2_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
485 stats[H2_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
486 stats[H2_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
487 stats[H2_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100488}
489
490static struct stats_module h2_stats_module = {
491 .name = "h2",
492 .fill_stats = h2_fill_stats,
493 .stats = h2_stats,
494 .stats_count = H2_STATS_COUNT,
495 .counters = &h2_counters,
496 .counters_size = sizeof(h2_counters),
497 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
498 .clearable = 1,
499};
500
501INITCALL1(STG_REGISTER, stats_register_module, &h2_stats_module);
502
Willy Tarreau8ceae722018-11-26 11:58:30 +0100503/* the h2c connection pool */
504DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
505
506/* the h2s stream pool */
507DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
508
Willy Tarreaudc572362018-12-12 08:08:05 +0100509/* The default connection window size is 65535, it may only be enlarged using
510 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
511 * we'll pretend we already received the difference between the two to send
512 * an equivalent window update to enlarge it to 2G-1.
513 */
514#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
515
Willy Tarreau455d5682019-05-24 19:42:18 +0200516/* maximum amount of data we're OK with re-aligning for buffer optimizations */
517#define MAX_DATA_REALIGN 1024
518
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200519/* a few settings from the global section */
520static int h2_settings_header_table_size = 4096; /* initial value */
Willy Tarreaue6baec02017-07-27 11:45:11 +0200521static int h2_settings_initial_window_size = 65535; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100522static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100523static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200524
Willy Tarreau2a856182017-05-16 15:20:39 +0200525/* a dmumy closed stream */
526static const struct h2s *h2_closed_stream = &(const struct h2s){
527 .cs = NULL,
528 .h2c = NULL,
529 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100530 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100531 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200532 .id = 0,
533};
534
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100535/* a dmumy closed stream returning a PROTOCOL_ERROR error */
536static const struct h2s *h2_error_stream = &(const struct h2s){
537 .cs = NULL,
538 .h2c = NULL,
539 .st = H2_SS_CLOSED,
540 .errcode = H2_ERR_PROTOCOL_ERROR,
541 .flags = 0,
542 .id = 0,
543};
544
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100545/* a dmumy closed stream returning a REFUSED_STREAM error */
546static const struct h2s *h2_refused_stream = &(const struct h2s){
547 .cs = NULL,
548 .h2c = NULL,
549 .st = H2_SS_CLOSED,
550 .errcode = H2_ERR_REFUSED_STREAM,
551 .flags = 0,
552 .id = 0,
553};
554
Willy Tarreau2a856182017-05-16 15:20:39 +0200555/* and a dummy idle stream for use with any unannounced stream */
556static const struct h2s *h2_idle_stream = &(const struct h2s){
557 .cs = NULL,
558 .h2c = NULL,
559 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100560 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200561 .id = 0,
562};
563
Willy Tarreau144f84a2021-03-02 16:09:26 +0100564struct task *h2_timeout_task(struct task *t, void *context, unsigned int state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200565static int h2_send(struct h2c *h2c);
566static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200567static int h2_process(struct h2c *h2c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100568/* h2_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100569struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100570static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Amaury Denoyelle74162742020-12-11 17:53:05 +0100571static 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 +0100572static int h2_frt_transfer_data(struct h2s *h2s);
Willy Tarreau144f84a2021-03-02 16:09:26 +0100573struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state);
Olivier Houchardf502aca2018-12-14 19:42:40 +0100574static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100575static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200576
Willy Tarreauab2ec452019-08-30 07:07:08 +0200577/* returns a h2c state as an abbreviated 3-letter string, or "???" if unknown */
578static inline const char *h2c_st_to_str(enum h2_cs st)
579{
580 switch (st) {
581 case H2_CS_PREFACE: return "PRF";
582 case H2_CS_SETTINGS1: return "STG";
583 case H2_CS_FRAME_H: return "FRH";
584 case H2_CS_FRAME_P: return "FRP";
585 case H2_CS_FRAME_A: return "FRA";
586 case H2_CS_FRAME_E: return "FRE";
587 case H2_CS_ERROR: return "ERR";
588 case H2_CS_ERROR2: return "ER2";
589 default: return "???";
590 }
591}
592
593/* returns a h2s state as an abbreviated 3-letter string, or "???" if unknown */
594static inline const char *h2s_st_to_str(enum h2_ss st)
595{
596 switch (st) {
597 case H2_SS_IDLE: return "IDL"; // idle
598 case H2_SS_RLOC: return "RSL"; // reserved local
599 case H2_SS_RREM: return "RSR"; // reserved remote
600 case H2_SS_OPEN: return "OPN"; // open
601 case H2_SS_HREM: return "HCR"; // half-closed remote
602 case H2_SS_HLOC: return "HCL"; // half-closed local
603 case H2_SS_ERROR : return "ERR"; // error
604 case H2_SS_CLOSED: return "CLO"; // closed
605 default: return "???";
606 }
607}
608
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200609/* the H2 traces always expect that arg1, if non-null, is of type connection
610 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
611 * that arg3, if non-null, is either of type htx for tx headers, or of type
612 * buffer for everything else.
613 */
614static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
615 const struct ist where, const struct ist func,
616 const void *a1, const void *a2, const void *a3, const void *a4)
617{
618 const struct connection *conn = a1;
619 const struct h2c *h2c = conn ? conn->ctx : NULL;
620 const struct h2s *h2s = a2;
621 const struct buffer *buf = a3;
622 const struct htx *htx;
623 int pos;
624
625 if (!h2c) // nothing to add
626 return;
627
Willy Tarreau17104d42019-08-30 07:12:55 +0200628 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200629 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
630
Willy Tarreaue2f68e92021-06-16 17:47:24 +0200631 if (mask & H2_EV_H2C_NEW) // inside h2_init, otherwise it's hard to match conn & h2c
632 conn_append_debug_info(&trace_buf, conn, " : ");
633
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100634 if (h2c->errcode)
635 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
636
Willy Tarreau6c3eeca2022-08-18 11:19:57 +0200637 if (h2c->flags & H2_CF_DEM_IN_PROGRESS && // frame processing has started, type and length are valid
Willy Tarreau73db4342019-09-25 07:28:44 +0200638 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
Willy Tarreau8520d872020-09-18 07:39:29 +0200639 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 +0200640 }
641
642 if (h2s) {
643 if (h2s->id <= 0)
644 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
645 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100646 if (h2s->id && h2s->errcode)
647 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200648 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200649 }
650
651 /* Let's dump decoded requests and responses right after parsing. They
652 * are traced at level USER with a few recognizable flags.
653 */
654 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
655 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
656 htx = htxbuf(buf); // recv req/res
657 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
658 htx = a3; // send req/res
659 else
660 htx = NULL;
661
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200662 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200663 const struct htx_blk *blk = htx_get_blk(htx, pos);
664 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
665 enum htx_blk_type type = htx_get_blk_type(blk);
666
667 if (type == HTX_BLK_REQ_SL)
668 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200669 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200670 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
671 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
672 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
673 else if (type == HTX_BLK_RES_SL)
674 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200675 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200676 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
677 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
678 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
679 }
680}
681
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200682
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100683/* Detect a pending read0 for a H2 connection. It happens if a read0 was
684 * already reported on a previous xprt->rcvbuf() AND a frame parser failed
685 * to parse pending data, confirming no more progress is possible because
686 * we're facing a truncated frame. The function returns 1 to report a read0
687 * or 0 otherwise.
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200688 */
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100689static inline int h2c_read0_pending(struct h2c *h2c)
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200690{
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100691 return !!(h2c->flags & H2_CF_END_REACHED);
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200692}
693
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200694/* returns true if the connection is allowed to expire, false otherwise. A
Willy Tarreaud34d25a2022-03-18 14:59:54 +0100695 * connection may expire when it has no attached streams. As long as streams
696 * are attached, the application layer is responsible for timeout management,
697 * and each layer will detach when it doesn't want to wait anymore. When the
698 * last one leaves, the connection must take over timeout management.
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200699 */
700static inline int h2c_may_expire(const struct h2c *h2c)
701{
Willy Tarreaud34d25a2022-03-18 14:59:54 +0100702 return !h2c->nb_cs;
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200703}
704
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +0100705/* update h2c timeout if needed */
706static void h2c_update_timeout(struct h2c *h2c)
707{
708 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
709
710 if (!h2c->task)
711 goto leave;
712
713 if (h2c_may_expire(h2c)) {
714 /* no more streams attached */
715 if (h2c->last_sid >= 0) {
716 /* GOAWAY sent, closing in progress */
717 h2c->task->expire = tick_add_ifset(now_ms, h2c->shut_timeout);
718 } else if (br_data(h2c->mbuf)) {
719 /* pending output data: always the regular data timeout */
720 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
Willy Tarreau46f9bb42022-04-14 11:43:35 +0200721 } else if (!(h2c->flags & H2_CF_IS_BACK) && h2c->max_id > 0 && !b_data(&h2c->dbuf)) {
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +0100722 /* idle after having seen one stream => keep-alive */
Willy Tarreau211fc0b2022-04-13 17:40:28 +0200723 int to;
724
725 if (tick_isset(h2c->proxy->timeout.httpka))
726 to = h2c->proxy->timeout.httpka;
727 else
728 to = h2c->proxy->timeout.httpreq;
729
730 h2c->task->expire = tick_add_ifset(h2c->idle_start, to);
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +0100731 } else {
732 /* before first request, or started to deserialize a
733 * new req => http-request, but only set, not refresh.
734 */
735 int exp = (h2c->flags & H2_CF_IS_BACK) ? TICK_ETERNITY : h2c->proxy->timeout.httpreq;
736 h2c->task->expire = tick_add_ifset(h2c->idle_start, exp);
737 }
738 /* if a timeout above was not set, fall back to the default one */
739 if (!tick_isset(h2c->task->expire))
740 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
741 } else {
742 h2c->task->expire = TICK_ETERNITY;
743 }
744 task_queue(h2c->task);
745 leave:
746 TRACE_LEAVE(H2_EV_H2C_WAKE);
747}
748
Olivier Houchard7a977432019-03-21 15:47:13 +0100749static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200750h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100751{
752 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
753 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
754 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
755 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200756 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100757 (conn_xprt_read0_pending(h2c->conn) ||
758 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
759 return 1;
760
761 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100762}
763
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200764/*****************************************************/
765/* functions below are for dynamic buffer management */
766/*****************************************************/
767
Willy Tarreau315d8072017-12-10 22:17:57 +0100768/* indicates whether or not the we may call the h2_recv() function to attempt
769 * to receive data into the buffer and/or demux pending data. The condition is
770 * a bit complex due to some API limits for now. The rules are the following :
771 * - if an error or a shutdown was detected on the connection and the buffer
772 * is empty, we must not attempt to receive
773 * - if the demux buf failed to be allocated, we must not try to receive and
774 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100775 * - if no flag indicates a blocking condition, we may attempt to receive,
776 * regardless of whether the demux buffer is full or not, so that only
777 * de demux part decides whether or not to block. This is needed because
778 * the connection API indeed prevents us from re-enabling receipt that is
779 * already enabled in a polled state, so we must always immediately stop
780 * as soon as the demux can't proceed so as never to hit an end of read
781 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100782 * - otherwise must may not attempt
783 */
784static inline int h2_recv_allowed(const struct h2c *h2c)
785{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200786 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100787 (h2c->st0 >= H2_CS_ERROR ||
788 h2c->conn->flags & CO_FL_ERROR ||
789 conn_xprt_read0_pending(h2c->conn)))
790 return 0;
791
792 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100793 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100794 return 1;
795
796 return 0;
797}
798
Willy Tarreau47b515a2018-12-21 16:09:41 +0100799/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200800static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100801{
802 if (!h2_recv_allowed(h2c))
803 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200804 if ((!consider_buffer || !b_data(&h2c->dbuf))
805 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100806 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200807 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100808}
809
810
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100811/* returns true if the front connection has too many conn_streams attached */
812static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200813{
Willy Tarreaua8754662018-12-23 20:43:58 +0100814 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200815}
816
Willy Tarreau44e973f2018-03-01 17:49:30 +0100817/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
818 * flags are used to figure what buffer was requested. It returns 1 if the
819 * allocation succeeds, in which case the connection is woken up, or 0 if it's
820 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200821 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100822static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200823{
824 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100825 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200826
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100827 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc(&h2c->dbuf)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200828 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200829 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200830 return 1;
831 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200832
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100833 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc(br_tail(h2c->mbuf))) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100834 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200835
836 if (h2c->flags & H2_CF_DEM_MROOM) {
837 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200838 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200839 }
Willy Tarreau14398122017-09-22 14:26:04 +0200840 return 1;
841 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100842
843 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
844 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100845 b_alloc(&h2s->rxbuf)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100846 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200847 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100848 return 1;
849 }
850
Willy Tarreau14398122017-09-22 14:26:04 +0200851 return 0;
852}
853
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200854static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200855{
856 struct buffer *buf = NULL;
857
Willy Tarreau2b718102021-04-21 07:32:39 +0200858 if (likely(!LIST_INLIST(&h2c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100859 unlikely((buf = b_alloc(bptr)) == NULL)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100860 h2c->buf_wait.target = h2c;
861 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreau2b718102021-04-21 07:32:39 +0200862 LIST_APPEND(&ti->buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200863 }
864 return buf;
865}
866
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200867static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200868{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200869 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100870 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100871 offer_buffers(NULL, 1);
Willy Tarreau14398122017-09-22 14:26:04 +0200872 }
873}
874
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200875static inline void h2_release_mbuf(struct h2c *h2c)
876{
877 struct buffer *buf;
878 unsigned int count = 0;
879
880 while (b_size(buf = br_head_pick(h2c->mbuf))) {
881 b_free(buf);
882 count++;
883 }
884 if (count)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100885 offer_buffers(NULL, count);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200886}
887
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100888/* returns the number of allocatable outgoing streams for the connection taking
889 * the last_sid and the reserved ones into account.
890 */
891static inline int h2_streams_left(const struct h2c *h2c)
892{
893 int ret;
894
895 /* consider the number of outgoing streams we're allowed to create before
896 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
897 * nb_reserved is the number of streams which don't yet have an ID.
898 */
899 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
900 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
901 if (ret < 0)
902 ret = 0;
903 return ret;
904}
905
Willy Tarreau00f18a32019-01-26 12:19:01 +0100906/* returns the number of streams in use on a connection to figure if it's
907 * idle or not. We check nb_cs and not nb_streams as the caller will want
908 * to know if it was the last one after a detach().
909 */
910static int h2_used_streams(struct connection *conn)
911{
912 struct h2c *h2c = conn->ctx;
913
914 return h2c->nb_cs;
915}
916
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100917/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100918static int h2_avail_streams(struct connection *conn)
919{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100920 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100921 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100922 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100923
Willy Tarreau6afec462019-01-28 06:40:19 +0100924 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
925 * streams on the connection.
926 */
927 if (h2c->last_sid >= 0)
928 return 0;
929
Willy Tarreauc61966f2019-10-31 15:10:03 +0100930 if (h2c->st0 >= H2_CS_ERROR)
931 return 0;
932
Willy Tarreau86949782019-01-31 10:42:05 +0100933 /* note: may be negative if a SETTINGS frame changes the limit */
934 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100935
936 /* we must also consider the limit imposed by stream IDs */
937 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100938 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100939 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100940 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
941 ret1 = MIN(ret1, ret2);
942 }
943 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100944}
945
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200946
Willy Tarreau62f52692017-10-08 23:01:42 +0200947/*****************************************************************/
948/* functions below are dedicated to the mux setup and management */
949/*****************************************************************/
950
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200951/* Initialize the mux once it's attached. For outgoing connections, the context
952 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200953 * connections from the fact that the context is still NULL (even during mux
954 * upgrades). <input> is always used as Input buffer and may contain data. It is
955 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200956 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200957static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
958 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200959{
960 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100961 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200962 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200963
Christopher Fauletf81ef032019-10-04 15:19:43 +0200964 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200965
Willy Tarreaubafbe012017-11-24 17:34:44 +0100966 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200967 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200968 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200969
Christopher Faulete9b70722019-04-08 10:46:02 +0200970 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200971 h2c->flags = H2_CF_IS_BACK;
972 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
973 if (tick_isset(prx->timeout.serverfin))
974 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100975
976 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
977 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200978 } else {
979 h2c->flags = H2_CF_NONE;
980 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
981 if (tick_isset(prx->timeout.clientfin))
982 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100983
984 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
985 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200986 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100987
Willy Tarreau0b37d652018-10-03 10:33:02 +0200988 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100989 h2c->task = NULL;
Willy Tarreau4c8241a2023-03-20 19:16:04 +0100990 h2c->wait_event.tasklet = NULL;
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +0100991 h2c->idle_start = now_ms;
Willy Tarreau3f133572017-10-31 19:21:06 +0100992 if (tick_isset(h2c->timeout)) {
993 t = task_new(tid_bit);
994 if (!t)
995 goto fail;
996
997 h2c->task = t;
998 t->process = h2_timeout_task;
999 t->context = h2c;
1000 t->expire = tick_add(now_ms, h2c->timeout);
1001 }
Willy Tarreauea392822017-10-31 10:02:25 +01001002
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001003 h2c->wait_event.tasklet = tasklet_new();
1004 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +02001005 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001006 h2c->wait_event.tasklet->process = h2_io_cb;
1007 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001008 h2c->wait_event.events = 0;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001009 if (!conn_is_back(conn)) {
1010 /* Connection might already be in the stopping_list if subject
1011 * to h1->h2 upgrade.
1012 */
1013 if (!LIST_INLIST(&conn->stopping_list)) {
1014 LIST_APPEND(&mux_stopping_data[tid].list,
1015 &conn->stopping_list);
1016 }
1017 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02001018
Willy Tarreau2bdcc702020-05-19 11:31:11 +02001019 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +02001020 if (!h2c->ddht)
1021 goto fail;
1022
1023 /* Initialise the context. */
1024 h2c->st0 = H2_CS_PREFACE;
1025 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01001026 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001027 h2c->max_id = -1;
1028 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +01001029 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001030 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +01001031 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001032 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001033 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001034 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001035
Christopher Faulet51f73eb2019-04-08 11:22:47 +02001036 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001037 h2c->dsi = -1;
1038 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001039
Willy Tarreau32218eb2017-09-22 08:07:25 +02001040 h2c->last_sid = -1;
1041
Willy Tarreau51330962019-05-26 09:38:07 +02001042 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +02001043 h2c->miw = 65535; /* mux initial window size */
1044 h2c->mws = 65535; /* mux window size */
1045 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +02001046 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001047 LIST_INIT(&h2c->send_list);
1048 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02001049 LIST_INIT(&h2c->blocked_list);
Willy Tarreau90f366b2021-02-20 11:49:49 +01001050 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001051
Christopher Fauletf81ef032019-10-04 15:19:43 +02001052 conn->ctx = h2c;
1053
Willy Tarreaue2f68e92021-06-16 17:47:24 +02001054 TRACE_USER("new H2 connection", H2_EV_H2C_NEW, conn);
1055
Willy Tarreau3f133572017-10-31 19:21:06 +01001056 if (t)
1057 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +01001058
Willy Tarreau01b44822018-10-03 14:26:37 +02001059 if (h2c->flags & H2_CF_IS_BACK) {
1060 /* FIXME: this is temporary, for outgoing connections we need
1061 * to immediately allocate a stream until the code is modified
1062 * so that the caller calls ->attach(). For now the outgoing cs
Christopher Fauletf81ef032019-10-04 15:19:43 +02001063 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +02001064 */
1065 struct h2s *h2s;
1066
Christopher Fauletf81ef032019-10-04 15:19:43 +02001067 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +02001068 if (!h2s)
1069 goto fail_stream;
1070 }
1071
Willy Tarreau4781b152021-04-06 13:53:36 +02001072 HA_ATOMIC_INC(&h2c->px_counters->open_conns);
1073 HA_ATOMIC_INC(&h2c->px_counters->total_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001074
Willy Tarreau0f383582018-10-03 14:22:21 +02001075 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02001076 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001077 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001078 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +02001079 fail_stream:
1080 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +02001081 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001082 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001083 if (h2c->wait_event.tasklet)
1084 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001085 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +02001086 fail_no_h2c:
Willy Tarreau8802bf12022-01-12 17:24:26 +01001087 if (!conn_is_back(conn))
1088 LIST_DEL_INIT(&conn->stopping_list);
Christopher Fauletf81ef032019-10-04 15:19:43 +02001089 conn->ctx = conn_ctx; /* restore saved ctx */
1090 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001091 return -1;
1092}
1093
Willy Tarreau751f2d02018-10-05 09:35:00 +02001094/* returns the next allocatable outgoing stream ID for the H2 connection, or
1095 * -1 if no more is allocatable.
1096 */
1097static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1098{
1099 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001100
1101 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001102 id = -1;
1103 return id;
1104}
1105
Willy Tarreau2373acc2017-10-12 17:35:14 +02001106/* returns the stream associated with id <id> or NULL if not found */
1107static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1108{
1109 struct eb32_node *node;
1110
Willy Tarreau751f2d02018-10-05 09:35:00 +02001111 if (id == 0)
1112 return (struct h2s *)h2_closed_stream;
1113
Willy Tarreau2a856182017-05-16 15:20:39 +02001114 if (id > h2c->max_id)
1115 return (struct h2s *)h2_idle_stream;
1116
Willy Tarreau2373acc2017-10-12 17:35:14 +02001117 node = eb32_lookup(&h2c->streams_by_id, id);
1118 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001119 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001120
1121 return container_of(node, struct h2s, by_id);
1122}
1123
Christopher Faulet73c12072019-04-08 11:23:22 +02001124/* release function. This one should be called to free all resources allocated
1125 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001126 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001127static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001128{
William Dauchy477757c2020-08-07 22:19:23 +02001129 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001130
Willy Tarreau7838a792019-08-12 18:42:03 +02001131 TRACE_ENTER(H2_EV_H2C_END);
1132
Willy Tarreau32218eb2017-09-22 08:07:25 +02001133 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +02001134 /* The connection must be aattached to this mux to be released */
1135 if (h2c->conn && h2c->conn->ctx == h2c)
1136 conn = h2c->conn;
1137
Willy Tarreau7838a792019-08-12 18:42:03 +02001138 TRACE_DEVEL("freeing h2c", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001139 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +02001140
Willy Tarreau2b718102021-04-21 07:32:39 +02001141 if (LIST_INLIST(&h2c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +01001142 LIST_DEL_INIT(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001143
Willy Tarreau44e973f2018-03-01 17:49:30 +01001144 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +02001145 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +01001146
Willy Tarreauea392822017-10-31 10:02:25 +01001147 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +02001148 h2c->task->context = NULL;
1149 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +01001150 h2c->task = NULL;
1151 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001152 if (h2c->wait_event.tasklet)
1153 tasklet_free(h2c->wait_event.tasklet);
Christopher Faulet21d849f2019-09-18 11:07:20 +02001154 if (conn && h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001155 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Christopher Faulet21d849f2019-09-18 11:07:20 +02001156 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001157
Willy Tarreau4781b152021-04-06 13:53:36 +02001158 HA_ATOMIC_DEC(&h2c->px_counters->open_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001159
Willy Tarreaubafbe012017-11-24 17:34:44 +01001160 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001161 }
1162
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001163 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001164 if (!conn_is_back(conn))
1165 LIST_DEL_INIT(&conn->stopping_list);
1166
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001167 conn->mux = NULL;
1168 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001169 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001170
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001171 conn_stop_tracking(conn);
Willy Tarreaudaa0e5f2021-10-21 22:24:31 +02001172
1173 /* there might be a GOAWAY frame still pending in the TCP
1174 * stack, and if the peer continues to send (i.e. window
1175 * updates etc), this can result in losing the GOAWAY. For
1176 * this reason we try to drain anything received in between.
1177 */
1178 conn->flags |= CO_FL_WANT_DRAIN;
1179
1180 conn_xprt_shutw(conn);
1181 conn_xprt_close(conn);
1182 conn_sock_shutw(conn, !conn_is_back(conn));
1183 conn_ctrl_close(conn);
1184
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001185 if (conn->destroy_cb)
1186 conn->destroy_cb(conn);
1187 conn_free(conn);
1188 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001189
1190 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001191}
1192
1193
Willy Tarreau71681172017-10-23 14:39:06 +02001194/******************************************************/
1195/* functions below are for the H2 protocol processing */
1196/******************************************************/
1197
1198/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001199static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001200{
1201 return h2s ? h2s->id : 0;
1202}
1203
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001204/* returns the sum of the stream's own window size and the mux's initial
1205 * window, which together form the stream's effective window size.
1206 */
1207static inline int h2s_mws(const struct h2s *h2s)
1208{
1209 return h2s->sws + h2s->h2c->miw;
1210}
1211
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001212/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001213static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001214{
1215 if (h2c->msi < 0)
1216 return 0;
1217
1218 if (h2c->msi == h2s_id(h2s))
1219 return 0;
1220
1221 return 1;
1222}
1223
Willy Tarreauec26f622022-04-13 09:40:52 +02001224/* marks an error on the connection. Before settings are sent, we must not send
1225 * a GOAWAY frame, and the error state will prevent h2c_send_goaway_error()
1226 * from verifying this so we set H2_CF_GOAWAY_FAILED to make sure it will not
1227 * even try.
1228 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001229static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001230{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001231 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001232 h2c->errcode = err;
Willy Tarreauec26f622022-04-13 09:40:52 +02001233 if (h2c->st0 < H2_CS_SETTINGS1)
1234 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau741d6df2017-10-17 08:00:59 +02001235 h2c->st0 = H2_CS_ERROR;
1236}
1237
Willy Tarreau175cebb2019-01-24 10:02:24 +01001238/* marks an error on the stream. It may also update an already closed stream
1239 * (e.g. to report an error after an RST was received).
1240 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001241static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001242{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001243 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001244 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001245 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001246 if (h2s->st < H2_SS_ERROR)
1247 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +01001248 if (h2s->cs)
1249 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001250 }
1251}
1252
Willy Tarreau7e094452018-12-19 18:08:52 +01001253/* attempt to notify the data layer of recv availability */
1254static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1255{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001256 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001257 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001258 tasklet_wakeup(h2s->subs->tasklet);
1259 h2s->subs->events &= ~SUB_RETRY_RECV;
1260 if (!h2s->subs->events)
1261 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001262 }
1263}
1264
1265/* attempt to notify the data layer of send availability */
1266static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1267{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001268 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001269 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001270 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001271 tasklet_wakeup(h2s->subs->tasklet);
1272 h2s->subs->events &= ~SUB_RETRY_SEND;
1273 if (!h2s->subs->events)
1274 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001275 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001276 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1277 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1278 tasklet_wakeup(h2s->shut_tl);
1279 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001280}
1281
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001282/* alerts the data layer, trying to wake it up by all means, following
1283 * this sequence :
1284 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1285 * - if its subscribed to send, then it's woken up for send
1286 * - if it was subscribed to neither, its ->wake() callback is called
1287 * It is safe to call this function with a closed stream which doesn't have a
1288 * conn_stream anymore.
1289 */
1290static void __maybe_unused h2s_alert(struct h2s *h2s)
1291{
Willy Tarreau7838a792019-08-12 18:42:03 +02001292 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1293
Willy Tarreauf96508a2020-01-10 11:12:48 +01001294 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001295 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001296 h2s_notify_recv(h2s);
1297 h2s_notify_send(h2s);
1298 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001299 else if (h2s->cs && h2s->cs->data_cb->wake != NULL) {
1300 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001301 h2s->cs->data_cb->wake(h2s->cs);
Willy Tarreau7838a792019-08-12 18:42:03 +02001302 }
1303
1304 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001305}
1306
Willy Tarreaue4820742017-07-27 13:37:23 +02001307/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001308static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001309{
1310 uint8_t *out = frame;
1311
1312 *out = len >> 16;
1313 write_n16(out + 1, len);
1314}
1315
Willy Tarreau54c15062017-10-10 17:10:03 +02001316/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1317 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1318 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001319 * available in the buffer's input prior to calling this function. The buffer
1320 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001321 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001322static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001323 const struct buffer *b, int o)
1324{
Willy Tarreau591d4452018-06-15 17:21:00 +02001325 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 +02001326}
1327
Willy Tarreau1f094672017-11-20 21:27:45 +01001328static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001329{
Willy Tarreau591d4452018-06-15 17:21:00 +02001330 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001331}
1332
Willy Tarreau1f094672017-11-20 21:27:45 +01001333static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001334{
Willy Tarreau591d4452018-06-15 17:21:00 +02001335 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001336}
1337
Willy Tarreau1f094672017-11-20 21:27:45 +01001338static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001339{
Willy Tarreau591d4452018-06-15 17:21:00 +02001340 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001341}
1342
1343
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001344/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1345 * The algorithm is not obvious. It turns out that H2 headers are neither
1346 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1347 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001348 *
1349 * b0 b1 b2 b3 b4 b5..b8
1350 * +----------+---------+--------+----+----+----------------------+
1351 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1352 * +----------+---------+--------+----+----+----------------------+
1353 *
1354 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1355 * we get the sid properly aligned and ordered, and 16 bits of len properly
1356 * ordered as well. The type and flags can be extracted using bit shifts from
1357 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001358 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1359 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001360 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001361static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001362{
1363 uint64_t w;
1364
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001365 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001366 return 0;
1367
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001368 w = h2_get_n64(b, o + 1);
1369 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001370 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1371 h->ff = w >> 32;
1372 h->ft = w >> 40;
1373 h->len += w >> 48;
1374 return 1;
1375}
1376
1377/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1378 * h2_peek_frame_hdr() above.
1379 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001380static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001381{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001382 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001383}
1384
1385/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001386static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001387{
1388 int ret;
1389
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001390 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001391 if (ret > 0)
1392 h2_skip_frame_hdr(b);
1393 return ret;
1394}
1395
Willy Tarreaucb985a42019-10-07 16:56:34 +02001396
1397/* try to fragment the headers frame present at the beginning of buffer <b>,
1398 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1399 * success. Typical causes of failure include a buffer not large enough to
1400 * add extra frame headers. The existing frame size is read in the current
1401 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1402 * and its length will be adjusted. The stream ID for continuation frames will
1403 * be copied from the initial frame's.
1404 */
1405static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1406{
1407 size_t remain = b->data - 9;
1408 int extra_frames = (remain - 1) / mfs;
1409 size_t fsize;
1410 char *fptr;
1411 int frame;
1412
1413 if (b->data <= mfs + 9)
1414 return 1;
1415
1416 /* Too large a frame, we need to fragment it using CONTINUATION
1417 * frames. We start from the end and move tails as needed.
1418 */
1419 if (b->data + extra_frames * 9 > b->size)
1420 return 0;
1421
1422 for (frame = extra_frames; frame; frame--) {
1423 fsize = ((remain - 1) % mfs) + 1;
1424 remain -= fsize;
1425
1426 /* move data */
1427 fptr = b->area + 9 + remain + (frame - 1) * 9;
1428 memmove(fptr + 9, b->area + 9 + remain, fsize);
1429 b->data += 9;
1430
1431 /* write new frame header */
1432 h2_set_frame_size(fptr, fsize);
1433 fptr[3] = H2_FT_CONTINUATION;
1434 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1435 write_n32(fptr + 5, read_n32(b->area + 5));
1436 }
1437
1438 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1439 h2_set_frame_size(b->area, remain);
1440 return 1;
1441}
1442
1443
Willy Tarreau00dd0782018-03-01 16:31:34 +01001444/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1445 * its connection if the stream was not yet closed. Please use this exclusively
1446 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001447 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001448static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001449{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001450 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001451 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001452 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001453 if (!h2s->id)
1454 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +01001455 if (h2s->cs) {
Willy Tarreaua27db382019-03-25 18:13:16 +01001456 if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf))
1457 h2s_notify_recv(h2s);
1458 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001459 HA_ATOMIC_DEC(&h2s->h2c->px_counters->open_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001460
Willy Tarreau7838a792019-08-12 18:42:03 +02001461 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001462 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001463 h2s->st = H2_SS_CLOSED;
1464}
1465
Willy Tarreau71049cc2018-03-28 13:56:39 +02001466/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001467/* h2s_destroy should only ever be called by the thread that owns the stream,
1468 * that means that a tasklet should be used if we want to destroy the h2s
1469 * from another thread
1470 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001471static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001472{
Willy Tarreau7838a792019-08-12 18:42:03 +02001473 struct connection *conn = h2s->h2c->conn;
1474
1475 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1476
Willy Tarreau0a10de62018-03-01 16:27:53 +01001477 h2s_close(h2s);
1478 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001479 if (b_size(&h2s->rxbuf)) {
1480 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01001481 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02001482 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001483
1484 if (h2s->subs)
1485 h2s->subs->events = 0;
1486
Joseph Herlantd77575d2018-11-25 10:54:45 -08001487 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001488 * reference left would be in the h2c send_list/fctl_list, and if
1489 * we're in it, we're getting out anyway
1490 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001491 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001492
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001493 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001494 tasklet_free(h2s->shut_tl);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001495 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001496
1497 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001498}
1499
Willy Tarreaua8e49542018-10-03 18:53:55 +02001500/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1501 * stream tree. In case of error, nothing is added and NULL is returned. The
1502 * causes of errors can be any failed memory allocation. The caller is
1503 * responsible for checking if the connection may support an extra stream
1504 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001505 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001506static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001507{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001508 struct h2s *h2s;
1509
Willy Tarreau7838a792019-08-12 18:42:03 +02001510 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1511
Willy Tarreaubafbe012017-11-24 17:34:44 +01001512 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001513 if (!h2s)
1514 goto out;
1515
Willy Tarreau5723f292020-01-10 15:16:57 +01001516 h2s->shut_tl = tasklet_new();
1517 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001518 pool_free(pool_head_h2s, h2s);
1519 goto out;
1520 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001521 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001522 h2s->shut_tl->process = h2_deferred_shut;
1523 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001524 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001525 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001526 h2s->cs = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001527 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001528 h2s->flags = H2_SF_NONE;
1529 h2s->errcode = H2_ERR_NO_ERROR;
1530 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001531 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001532 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001533 h2s->rxbuf = BUF_NULL;
Amaury Denoyelle74162742020-12-11 17:53:05 +01001534 memset(h2s->upgrade_protocol, 0, sizeof(h2s->upgrade_protocol));
Willy Tarreau751f2d02018-10-05 09:35:00 +02001535
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001536 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001537 if (id > 0)
1538 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001539 else
1540 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001541
1542 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001543 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001544 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001545
Willy Tarreau4781b152021-04-06 13:53:36 +02001546 HA_ATOMIC_INC(&h2c->px_counters->open_streams);
1547 HA_ATOMIC_INC(&h2c->px_counters->total_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001548
Willy Tarreau7838a792019-08-12 18:42:03 +02001549 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001550 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001551 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001552 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001553 return NULL;
1554}
1555
1556/* creates a new stream <id> on the h2c connection and returns it, or NULL in
Christopher Faulet7d013e72020-12-15 16:56:50 +01001557 * case of memory allocation error. <input> is used as input buffer for the new
1558 * stream. On success, it is transferred to the stream and the mux is no longer
1559 * responsible of it. On error, <input> is unchanged, thus the mux must still
1560 * take care of it.
Willy Tarreaua8e49542018-10-03 18:53:55 +02001561 */
Amaury Denoyelleee7fcd52021-10-18 14:45:49 +02001562static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id, struct buffer *input, uint32_t flags)
Willy Tarreaua8e49542018-10-03 18:53:55 +02001563{
1564 struct session *sess = h2c->conn->owner;
1565 struct conn_stream *cs;
1566 struct h2s *h2s;
1567
Willy Tarreau7838a792019-08-12 18:42:03 +02001568 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1569
Willy Tarreau715c8fc2022-05-12 09:24:41 +02001570 if (h2c->nb_streams >= h2_settings_max_concurrent_streams) {
1571 TRACE_ERROR("HEADERS frame causing MAX_CONCURRENT_STREAMS to be exceeded", H2_EV_H2S_NEW|H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001572 goto out;
Willy Tarreau715c8fc2022-05-12 09:24:41 +02001573 }
Willy Tarreaua8e49542018-10-03 18:53:55 +02001574
1575 h2s = h2s_new(h2c, id);
1576 if (!h2s)
Willy Tarreau715c8fc2022-05-12 09:24:41 +02001577 goto out_alloc;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001578
Christopher Faulet236c93b2020-07-02 09:19:54 +02001579 cs = cs_new(h2c->conn, h2c->conn->target);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001580 if (!cs)
1581 goto out_close;
1582
Olivier Houchard746fb772018-12-15 19:42:00 +01001583 cs->flags |= CS_FL_NOT_FIRST;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001584 h2s->cs = cs;
1585 cs->ctx = h2s;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001586 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001587
Amaury Denoyelleee7fcd52021-10-18 14:45:49 +02001588 /* FIXME wrong analogy between ext-connect and websocket, this need to
1589 * be refine.
1590 */
1591 if (flags & H2_SF_EXT_CONNECT_RCVD)
1592 cs->flags |= CS_FL_WEBSOCKET;
1593
Willy Tarreaua217df92022-02-04 09:05:37 +01001594 /* The stream will record the request's accept date (which is either the
1595 * end of the connection's or the date immediately after the previous
1596 * request) and the idle time, which is the delay since the previous
1597 * request. We can set the value now, it will be copied by stream_new().
1598 */
1599 sess->t_idle = tv_ms_elapsed(&sess->tv_accept, &now) - sess->t_handshake;
Christopher Faulet7d013e72020-12-15 16:56:50 +01001600 if (stream_create_from_cs(cs, input) < 0)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001601 goto out_free_cs;
1602
Willy Tarreau590a0512018-09-05 11:56:48 +02001603 /* We want the accept date presented to the next stream to be the one
1604 * we have now, the handshake time to be null (since the next stream
1605 * is not delayed by a handshake), and the idle time to count since
1606 * right now.
1607 */
1608 sess->accept_date = date;
1609 sess->tv_accept = now;
1610 sess->t_handshake = 0;
Willy Tarreaua217df92022-02-04 09:05:37 +01001611 sess->t_idle = 0;
Willy Tarreau590a0512018-09-05 11:56:48 +02001612
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001613 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001614 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001615 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001616 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001617 return h2s;
1618
1619 out_free_cs:
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001620 h2c->nb_cs--;
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +01001621 if (!h2c->nb_cs)
1622 h2c->idle_start = now_ms;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001623 cs_free(cs);
Olivier Houchard58d87f32019-05-29 16:44:17 +02001624 h2s->cs = NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001625 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001626 h2s_destroy(h2s);
Willy Tarreau715c8fc2022-05-12 09:24:41 +02001627 out_alloc:
1628 TRACE_ERROR("Failed to allocate a new stream", H2_EV_H2S_NEW|H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001629 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001630 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001631 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001632 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001633}
1634
Willy Tarreau751f2d02018-10-05 09:35:00 +02001635/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1636 * and returns it, or NULL in case of memory allocation error or if the highest
1637 * possible stream ID was reached.
1638 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001639static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001640{
1641 struct h2s *h2s = NULL;
1642
Willy Tarreau7838a792019-08-12 18:42:03 +02001643 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1644
Willy Tarreau715c8fc2022-05-12 09:24:41 +02001645 if (h2c->nb_streams >= h2c->streams_limit) {
1646 TRACE_ERROR("Aborting stream since negotiated limit is too low", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001647 goto out;
Willy Tarreau715c8fc2022-05-12 09:24:41 +02001648 }
Willy Tarreau751f2d02018-10-05 09:35:00 +02001649
Willy Tarreau715c8fc2022-05-12 09:24:41 +02001650 if (h2_streams_left(h2c) < 1) {
1651 TRACE_ERROR("Aborting stream since no more streams left", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreaua80dca82019-01-24 17:08:28 +01001652 goto out;
Willy Tarreau715c8fc2022-05-12 09:24:41 +02001653 }
Willy Tarreaua80dca82019-01-24 17:08:28 +01001654
Willy Tarreau751f2d02018-10-05 09:35:00 +02001655 /* Defer choosing the ID until we send the first message to create the stream */
1656 h2s = h2s_new(h2c, 0);
Willy Tarreau715c8fc2022-05-12 09:24:41 +02001657 if (!h2s) {
1658 TRACE_ERROR("Failed to allocate a new stream", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001659 goto out;
Willy Tarreau715c8fc2022-05-12 09:24:41 +02001660 }
Willy Tarreau751f2d02018-10-05 09:35:00 +02001661
1662 h2s->cs = cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001663 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001664 cs->ctx = h2s;
1665 h2c->nb_cs++;
1666
Willy Tarreau751f2d02018-10-05 09:35:00 +02001667 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001668 if (likely(h2s))
1669 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1670 else
1671 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001672 return h2s;
1673}
1674
Willy Tarreaube5b7152017-09-25 16:25:39 +02001675/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1676 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1677 * the various settings codes.
1678 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001679static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001680{
1681 struct buffer *res;
1682 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001683 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001684 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001685 int ret = 0;
1686
1687 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001688
1689 if (h2c_mux_busy(h2c, NULL)) {
1690 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001691 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001692 }
1693
Willy Tarreaube5b7152017-09-25 16:25:39 +02001694 chunk_init(&buf, buf_data, sizeof(buf_data));
1695 chunk_memcpy(&buf,
1696 "\x00\x00\x00" /* length : 0 for now */
1697 "\x04\x00" /* type : 4 (settings), flags : 0 */
1698 "\x00\x00\x00\x00", /* stream ID : 0 */
1699 9);
1700
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001701 if (h2c->flags & H2_CF_IS_BACK) {
1702 /* send settings_enable_push=0 */
1703 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1704 }
1705
Amaury Denoyelle0ea2c4f2021-07-09 17:14:30 +02001706 /* rfc 8441 #3 SETTINGS_ENABLE_CONNECT_PROTOCOL=1,
1707 * sent automatically unless disabled in the global config */
1708 if (!(global.tune.options & GTUNE_DISABLE_H2_WEBSOCKET))
1709 chunk_memcat(&buf, "\x00\x08\x00\x00\x00\x01", 6);
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01001710
Willy Tarreaube5b7152017-09-25 16:25:39 +02001711 if (h2_settings_header_table_size != 4096) {
1712 char str[6] = "\x00\x01"; /* header_table_size */
1713
1714 write_n32(str + 2, h2_settings_header_table_size);
1715 chunk_memcat(&buf, str, 6);
1716 }
1717
1718 if (h2_settings_initial_window_size != 65535) {
1719 char str[6] = "\x00\x04"; /* initial_window_size */
1720
1721 write_n32(str + 2, h2_settings_initial_window_size);
1722 chunk_memcat(&buf, str, 6);
1723 }
1724
1725 if (h2_settings_max_concurrent_streams != 0) {
1726 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1727
1728 /* Note: 0 means "unlimited" for haproxy's config but not for
1729 * the protocol, so never send this value!
1730 */
1731 write_n32(str + 2, h2_settings_max_concurrent_streams);
1732 chunk_memcat(&buf, str, 6);
1733 }
1734
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001735 mfs = h2_settings_max_frame_size;
1736 if (mfs > global.tune.bufsize)
1737 mfs = global.tune.bufsize;
1738
1739 if (!mfs)
1740 mfs = global.tune.bufsize;
1741
1742 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001743 char str[6] = "\x00\x05"; /* max_frame_size */
1744
1745 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1746 * match bufsize - rewrite size, but at the moment it seems
1747 * that clients don't take care of it.
1748 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001749 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001750 chunk_memcat(&buf, str, 6);
1751 }
1752
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001753 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001754
1755 res = br_tail(h2c->mbuf);
1756 retry:
1757 if (!h2_get_buf(h2c, res)) {
1758 h2c->flags |= H2_CF_MUX_MALLOC;
1759 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001760 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001761 }
1762
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001763 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001764 if (unlikely(ret <= 0)) {
1765 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001766 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1767 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001768 h2c->flags |= H2_CF_MUX_MFULL;
1769 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001770 }
1771 else {
1772 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001773 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001774 }
1775 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001776 out:
1777 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001778 return ret;
1779}
1780
Willy Tarreau52eed752017-09-22 15:05:09 +02001781/* Try to receive a connection preface, then upon success try to send our
1782 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1783 * missing data. It may return an error in h2c.
1784 */
1785static int h2c_frt_recv_preface(struct h2c *h2c)
1786{
1787 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001788 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001789
Willy Tarreau7838a792019-08-12 18:42:03 +02001790 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1791
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001792 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001793
1794 if (unlikely(ret1 <= 0)) {
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02001795 if (!ret1)
1796 h2c->flags |= H2_CF_DEM_SHORT_READ;
Amaury Denoyellea8879232020-10-27 17:16:03 +01001797 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001798 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 +02001799 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc23d6d12021-06-17 08:08:48 +02001800 if (b_data(&h2c->dbuf) ||
1801 !(((const struct session *)h2c->conn->owner)->fe->options & PR_O_IGNORE_PRB))
1802 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001803 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001804 ret2 = 0;
1805 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001806 }
1807
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001808 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001809 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001810 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001811 out:
1812 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001813 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001814}
1815
Willy Tarreau01b44822018-10-03 14:26:37 +02001816/* Try to send a connection preface, then upon success try to send our
1817 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1818 * missing data. It may return an error in h2c.
1819 */
1820static int h2c_bck_send_preface(struct h2c *h2c)
1821{
1822 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001823 int ret = 0;
1824
1825 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001826
1827 if (h2c_mux_busy(h2c, NULL)) {
1828 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001829 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001830 }
1831
Willy Tarreaubcc45952019-05-26 10:05:50 +02001832 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001833 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001834 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001835 h2c->flags |= H2_CF_MUX_MALLOC;
1836 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001837 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001838 }
1839
1840 if (!b_data(res)) {
1841 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001842 ret = b_istput(res, ist(H2_CONN_PREFACE));
1843 if (unlikely(ret <= 0)) {
1844 if (!ret) {
1845 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1846 goto retry;
1847 h2c->flags |= H2_CF_MUX_MFULL;
1848 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001849 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001850 }
1851 else {
1852 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001853 ret = 0;
1854 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001855 }
1856 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001857 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001858 ret = h2c_send_settings(h2c);
1859 out:
1860 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1861 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001862}
1863
Willy Tarreau081d4722017-05-16 21:51:05 +02001864/* try to send a GOAWAY frame on the connection to report an error or a graceful
1865 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1866 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1867 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1868 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1869 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1870 * on unrecoverable failure. It will not attempt to send one again in this last
Willy Tarreauec26f622022-04-13 09:40:52 +02001871 * case, nor will it send one if settings were not sent (e.g. still waiting for
1872 * a preface) so that it is safe to use h2c_error() to report such errors.
Willy Tarreau081d4722017-05-16 21:51:05 +02001873 */
1874static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1875{
1876 struct buffer *res;
1877 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001878 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001879
Willy Tarreau7838a792019-08-12 18:42:03 +02001880 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1881
Willy Tarreauec26f622022-04-13 09:40:52 +02001882 if ((h2c->flags & H2_CF_GOAWAY_FAILED) || h2c->st0 < H2_CS_SETTINGS1) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001883 ret = 1; // claim that it worked
1884 goto out;
1885 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001886
1887 if (h2c_mux_busy(h2c, h2s)) {
1888 if (h2s)
1889 h2s->flags |= H2_SF_BLK_MBUSY;
1890 else
1891 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001892 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001893 }
1894
Willy Tarreau9c218e72019-05-26 10:08:28 +02001895 /* len: 8, type: 7, flags: none, sid: 0 */
1896 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1897
1898 if (h2c->last_sid < 0)
1899 h2c->last_sid = h2c->max_id;
1900
1901 write_n32(str + 9, h2c->last_sid);
1902 write_n32(str + 13, h2c->errcode);
1903
Willy Tarreaubcc45952019-05-26 10:05:50 +02001904 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001905 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001906 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001907 h2c->flags |= H2_CF_MUX_MALLOC;
1908 if (h2s)
1909 h2s->flags |= H2_SF_BLK_MROOM;
1910 else
1911 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001912 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001913 }
1914
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001915 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001916 if (unlikely(ret <= 0)) {
1917 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001918 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1919 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001920 h2c->flags |= H2_CF_MUX_MFULL;
1921 if (h2s)
1922 h2s->flags |= H2_SF_BLK_MROOM;
1923 else
1924 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001925 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001926 }
1927 else {
1928 /* we cannot report this error using GOAWAY, so we mark
1929 * it and claim a success.
1930 */
1931 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1932 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001933 ret = 1;
1934 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001935 }
1936 }
1937 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001938
1939 /* some codes are not for real errors, just attempts to close cleanly */
1940 switch (h2c->errcode) {
1941 case H2_ERR_NO_ERROR:
1942 case H2_ERR_ENHANCE_YOUR_CALM:
1943 case H2_ERR_REFUSED_STREAM:
1944 case H2_ERR_CANCEL:
1945 break;
1946 default:
Willy Tarreau4781b152021-04-06 13:53:36 +02001947 HA_ATOMIC_INC(&h2c->px_counters->goaway_resp);
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001948 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001949 out:
1950 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001951 return ret;
1952}
1953
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001954/* Try to send an RST_STREAM frame on the connection for the indicated stream
1955 * during mux operations. This stream must be valid and cannot be closed
1956 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1957 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1958 * not yet.
1959 *
1960 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1961 * to write the message, it subscribes the stream to future notifications.
1962 */
1963static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1964{
1965 struct buffer *res;
1966 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001967 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001968
Willy Tarreau7838a792019-08-12 18:42:03 +02001969 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1970
1971 if (!h2s || h2s->st == H2_SS_CLOSED) {
1972 ret = 1;
1973 goto out;
1974 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001975
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001976 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1977 * RST_STREAM in response to a RST_STREAM frame.
1978 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001979 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001980 ret = 1;
1981 goto ignore;
1982 }
1983
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001984 if (h2c_mux_busy(h2c, h2s)) {
1985 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001986 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001987 }
1988
Willy Tarreau9c218e72019-05-26 10:08:28 +02001989 /* len: 4, type: 3, flags: none */
1990 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1991 write_n32(str + 5, h2s->id);
1992 write_n32(str + 9, h2s->errcode);
1993
Willy Tarreaubcc45952019-05-26 10:05:50 +02001994 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001995 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001996 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001997 h2c->flags |= H2_CF_MUX_MALLOC;
1998 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001999 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002000 }
2001
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002002 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002003 if (unlikely(ret <= 0)) {
2004 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002005 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2006 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002007 h2c->flags |= H2_CF_MUX_MFULL;
2008 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002009 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002010 }
2011 else {
2012 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002013 ret = 0;
2014 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002015 }
2016 }
2017
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002018 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002019 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002020 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002021 out:
2022 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002023 return ret;
2024}
2025
2026/* Try to send an RST_STREAM frame on the connection for the stream being
2027 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01002028 * error code, even if the stream is one of the dummy ones, and will update
2029 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002030 *
2031 * Returns > 0 on success or zero if nothing was done. In case of lack of room
2032 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08002033 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002034 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02002035 */
2036static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
2037{
2038 struct buffer *res;
2039 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002040 int ret = 0;
2041
2042 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002043
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002044 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
2045 * RST_STREAM in response to a RST_STREAM frame.
2046 */
2047 if (h2c->dft == H2_FT_RST_STREAM) {
2048 ret = 1;
2049 goto ignore;
2050 }
2051
Willy Tarreau27a84c92017-10-17 08:10:17 +02002052 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002053 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002054 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002055 }
2056
Willy Tarreau9c218e72019-05-26 10:08:28 +02002057 /* len: 4, type: 3, flags: none */
2058 memcpy(str, "\x00\x00\x04\x03\x00", 5);
2059
2060 write_n32(str + 5, h2c->dsi);
2061 write_n32(str + 9, h2s->errcode);
2062
Willy Tarreaubcc45952019-05-26 10:05:50 +02002063 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002064 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002065 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002066 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002067 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002068 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002069 }
2070
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002071 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02002072 if (unlikely(ret <= 0)) {
2073 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002074 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2075 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002076 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002077 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002078 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002079 }
2080 else {
2081 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002082 ret = 0;
2083 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002084 }
2085 }
2086
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002087 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02002088 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002089 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002090 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002091 }
2092
Willy Tarreau7838a792019-08-12 18:42:03 +02002093 out:
Willy Tarreau4781b152021-04-06 13:53:36 +02002094 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_resp);
Willy Tarreau7838a792019-08-12 18:42:03 +02002095 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002096 return ret;
2097}
2098
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002099/* try to send an empty DATA frame with the ES flag set to notify about the
2100 * end of stream and match a shutdown(write). If an ES was already sent as
2101 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
2102 * on success or zero if nothing was done. In case of lack of room to write the
2103 * message, it subscribes the requesting stream to future notifications.
2104 */
2105static int h2_send_empty_data_es(struct h2s *h2s)
2106{
2107 struct h2c *h2c = h2s->h2c;
2108 struct buffer *res;
2109 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002110 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002111
Willy Tarreau7838a792019-08-12 18:42:03 +02002112 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
2113
2114 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
2115 ret = 1;
2116 goto out;
2117 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002118
2119 if (h2c_mux_busy(h2c, h2s)) {
2120 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002121 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002122 }
2123
Willy Tarreau9c218e72019-05-26 10:08:28 +02002124 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
2125 memcpy(str, "\x00\x00\x00\x00\x01", 5);
2126 write_n32(str + 5, h2s->id);
2127
Willy Tarreaubcc45952019-05-26 10:05:50 +02002128 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002129 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002130 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002131 h2c->flags |= H2_CF_MUX_MALLOC;
2132 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002133 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002134 }
2135
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002136 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002137 if (likely(ret > 0)) {
2138 h2s->flags |= H2_SF_ES_SENT;
2139 }
2140 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002141 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2142 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002143 h2c->flags |= H2_CF_MUX_MFULL;
2144 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002145 }
2146 else {
2147 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002148 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002149 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002150 out:
2151 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002152 return ret;
2153}
2154
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002155/* wake a specific stream and assign its conn_stream some CS_FL_* flags among
Willy Tarreau99ad1b32019-05-14 11:46:28 +02002156 * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002157 * is automatically updated accordingly. If the stream is orphaned, it is
2158 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002159 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002160static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002161{
Willy Tarreau7838a792019-08-12 18:42:03 +02002162 struct h2c *h2c = h2s->h2c;
2163
2164 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2165
Christopher Fauletf02ca002019-03-07 16:21:34 +01002166 if (!h2s->cs) {
2167 /* this stream was already orphaned */
2168 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002169 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002170 return;
2171 }
2172
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002173 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002174 if (h2s->st == H2_SS_OPEN)
2175 h2s->st = H2_SS_HREM;
2176 else if (h2s->st == H2_SS_HLOC)
2177 h2s_close(h2s);
2178 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002179
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002180 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
2181 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
2182 h2s->cs->flags |= CS_FL_ERR_PENDING;
2183 if (h2s->cs->flags & CS_FL_EOS)
2184 h2s->cs->flags |= CS_FL_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02002185
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002186 if (h2s->st < H2_SS_ERROR)
2187 h2s->st = H2_SS_ERROR;
2188 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002189
2190 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002191 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002192}
2193
2194/* wake the streams attached to the connection, whose id is greater than <last>
2195 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002196 */
Willy Tarreau23482912019-05-07 15:23:14 +02002197static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002198{
2199 struct eb32_node *node;
2200 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002201
Willy Tarreau7838a792019-08-12 18:42:03 +02002202 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2203
Christopher Fauletf02ca002019-03-07 16:21:34 +01002204 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002205 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2206 while (node) {
2207 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002208 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002209 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002210 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002211
Christopher Fauletf02ca002019-03-07 16:21:34 +01002212 /* Wake all streams with unassigned ID (ID == 0) */
2213 node = eb32_lookup(&h2c->streams_by_id, 0);
2214 while (node) {
2215 h2s = container_of(node, struct h2s, by_id);
2216 if (h2s->id > 0)
2217 break;
2218 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002219 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002220 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002221
2222 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002223}
2224
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002225/* Wake up all blocked streams whose window size has become positive after the
2226 * mux's initial window was adjusted. This should be done after having processed
2227 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002228 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002229static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002230{
2231 struct h2s *h2s;
2232 struct eb32_node *node;
2233
Willy Tarreau7838a792019-08-12 18:42:03 +02002234 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2235
Willy Tarreau3421aba2017-07-27 15:41:03 +02002236 node = eb32_first(&h2c->streams_by_id);
2237 while (node) {
2238 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002239 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002240 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002241 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002242 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2243 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002244 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002245 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002246 node = eb32_next(node);
2247 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002248
2249 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002250}
2251
2252/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2253 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002254 * return an error in h2c. The caller must have already verified frame length
2255 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002256 */
2257static int h2c_handle_settings(struct h2c *h2c)
2258{
2259 unsigned int offset;
2260 int error;
2261
Willy Tarreau7838a792019-08-12 18:42:03 +02002262 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2263
Willy Tarreau3421aba2017-07-27 15:41:03 +02002264 if (h2c->dff & H2_F_SETTINGS_ACK) {
2265 if (h2c->dfl) {
2266 error = H2_ERR_FRAME_SIZE_ERROR;
2267 goto fail;
2268 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002269 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002270 }
2271
Willy Tarreau3421aba2017-07-27 15:41:03 +02002272 /* process full frame only */
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002273 if (b_data(&h2c->dbuf) < h2c->dfl) {
2274 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002275 goto out0;
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002276 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002277
2278 /* parse the frame */
2279 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002280 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2281 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002282
2283 switch (type) {
2284 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2285 /* we need to update all existing streams with the
2286 * difference from the previous iws.
2287 */
2288 if (arg < 0) { // RFC7540#6.5.2
2289 error = H2_ERR_FLOW_CONTROL_ERROR;
2290 goto fail;
2291 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002292 h2c->miw = arg;
2293 break;
2294 case H2_SETTINGS_MAX_FRAME_SIZE:
2295 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002296 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 +02002297 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002298 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002299 goto fail;
2300 }
2301 h2c->mfs = arg;
2302 break;
Willy Tarreau8a4dca02022-01-13 16:00:12 +01002303 case H2_SETTINGS_HEADER_TABLE_SIZE:
2304 h2c->flags |= H2_CF_SHTS_UPDATED;
2305 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002306 case H2_SETTINGS_ENABLE_PUSH:
2307 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002308 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002309 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002310 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002311 goto fail;
2312 }
2313 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002314 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2315 if (h2c->flags & H2_CF_IS_BACK) {
2316 /* the limit is only for the backend; for the frontend it is our limit */
2317 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2318 arg = h2_settings_max_concurrent_streams;
2319 h2c->streams_limit = arg;
2320 }
2321 break;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002322 case H2_SETTINGS_ENABLE_CONNECT_PROTOCOL:
Amaury Denoyelle68993a12021-10-18 09:43:29 +02002323 if (arg == 1)
2324 h2c->flags |= H2_CF_RCVD_RFC8441;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002325 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002326 }
2327 }
2328
2329 /* need to ACK this frame now */
2330 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002331 done:
2332 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002333 return 1;
2334 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002335 if (!(h2c->flags & H2_CF_IS_BACK))
2336 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002337 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002338 out0:
2339 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 +02002340 return 0;
2341}
2342
2343/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2344 * success or one of the h2_status values.
2345 */
2346static int h2c_ack_settings(struct h2c *h2c)
2347{
2348 struct buffer *res;
2349 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002350 int ret = 0;
2351
2352 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002353
2354 if (h2c_mux_busy(h2c, NULL)) {
2355 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002356 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002357 }
2358
Willy Tarreau9c218e72019-05-26 10:08:28 +02002359 memcpy(str,
2360 "\x00\x00\x00" /* length : 0 (no data) */
2361 "\x04" "\x01" /* type : 4, flags : ACK */
2362 "\x00\x00\x00\x00" /* stream ID */, 9);
2363
Willy Tarreaubcc45952019-05-26 10:05:50 +02002364 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002365 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002366 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002367 h2c->flags |= H2_CF_MUX_MALLOC;
2368 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002369 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002370 }
2371
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002372 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002373 if (unlikely(ret <= 0)) {
2374 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002375 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2376 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002377 h2c->flags |= H2_CF_MUX_MFULL;
2378 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002379 }
2380 else {
2381 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002382 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002383 }
2384 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002385 out:
2386 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002387 return ret;
2388}
2389
Willy Tarreaucf68c782017-10-10 17:11:41 +02002390/* processes a PING frame and schedules an ACK if needed. The caller must pass
2391 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002392 * missing data. The caller must have already verified frame length
2393 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002394 */
2395static int h2c_handle_ping(struct h2c *h2c)
2396{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002397 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002398 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002399 h2c->st0 = H2_CS_FRAME_A;
2400 return 1;
2401}
2402
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002403/* Try to send a window update for stream id <sid> and value <increment>.
2404 * Returns > 0 on success or zero on missing room or failure. It may return an
2405 * error in h2c.
2406 */
2407static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2408{
2409 struct buffer *res;
2410 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002411 int ret = 0;
2412
2413 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002414
2415 if (h2c_mux_busy(h2c, NULL)) {
2416 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002417 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002418 }
2419
Willy Tarreau9c218e72019-05-26 10:08:28 +02002420 /* length: 4, type: 8, flags: none */
2421 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2422 write_n32(str + 5, sid);
2423 write_n32(str + 9, increment);
2424
Willy Tarreaubcc45952019-05-26 10:05:50 +02002425 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002426 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002427 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002428 h2c->flags |= H2_CF_MUX_MALLOC;
2429 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002430 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002431 }
2432
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002433 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002434 if (unlikely(ret <= 0)) {
2435 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002436 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2437 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002438 h2c->flags |= H2_CF_MUX_MFULL;
2439 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002440 }
2441 else {
2442 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002443 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002444 }
2445 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002446 out:
2447 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002448 return ret;
2449}
2450
2451/* try to send pending window update for the connection. It's safe to call it
2452 * with no pending updates. Returns > 0 on success or zero on missing room or
2453 * failure. It may return an error in h2c.
2454 */
2455static int h2c_send_conn_wu(struct h2c *h2c)
2456{
2457 int ret = 1;
2458
Willy Tarreau7838a792019-08-12 18:42:03 +02002459 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2460
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002461 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002462 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002463
Willy Tarreau97aaa672018-12-23 09:49:04 +01002464 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2465 /* increase the advertised connection window to 2G on
2466 * first update.
2467 */
2468 h2c->flags |= H2_CF_WINDOW_OPENED;
2469 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2470 }
2471
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002472 /* send WU for the connection */
2473 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2474 if (ret > 0)
2475 h2c->rcvd_c = 0;
2476
Willy Tarreau7838a792019-08-12 18:42:03 +02002477 out:
2478 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002479 return ret;
2480}
2481
2482/* try to send pending window update for the current dmux stream. It's safe to
2483 * call it with no pending updates. Returns > 0 on success or zero on missing
2484 * room or failure. It may return an error in h2c.
2485 */
2486static int h2c_send_strm_wu(struct h2c *h2c)
2487{
2488 int ret = 1;
2489
Willy Tarreau7838a792019-08-12 18:42:03 +02002490 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2491
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002492 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002493 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002494
2495 /* send WU for the stream */
2496 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2497 if (ret > 0)
2498 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002499 out:
2500 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002501 return ret;
2502}
2503
Willy Tarreaucf68c782017-10-10 17:11:41 +02002504/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2505 * success, 0 on missing data or one of the h2_status values.
2506 */
2507static int h2c_ack_ping(struct h2c *h2c)
2508{
2509 struct buffer *res;
2510 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002511 int ret = 0;
2512
2513 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002514
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002515 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002516 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002517
2518 if (h2c_mux_busy(h2c, NULL)) {
2519 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002520 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002521 }
2522
Willy Tarreaucf68c782017-10-10 17:11:41 +02002523 memcpy(str,
2524 "\x00\x00\x08" /* length : 8 (same payload) */
2525 "\x06" "\x01" /* type : 6, flags : ACK */
2526 "\x00\x00\x00\x00" /* stream ID */, 9);
2527
2528 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002529 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002530
Willy Tarreau9c218e72019-05-26 10:08:28 +02002531 res = br_tail(h2c->mbuf);
2532 retry:
2533 if (!h2_get_buf(h2c, res)) {
2534 h2c->flags |= H2_CF_MUX_MALLOC;
2535 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002536 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002537 }
2538
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002539 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002540 if (unlikely(ret <= 0)) {
2541 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002542 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2543 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002544 h2c->flags |= H2_CF_MUX_MFULL;
2545 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002546 }
2547 else {
2548 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002549 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002550 }
2551 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002552 out:
2553 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002554 return ret;
2555}
2556
Willy Tarreau26f95952017-07-27 17:18:30 +02002557/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2558 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002559 * h2c or h2s. The caller must have already verified frame length and stream ID
2560 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002561 */
2562static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2563{
2564 int32_t inc;
2565 int error;
2566
Willy Tarreau7838a792019-08-12 18:42:03 +02002567 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2568
Willy Tarreau26f95952017-07-27 17:18:30 +02002569 /* process full frame only */
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002570 if (b_data(&h2c->dbuf) < h2c->dfl) {
2571 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002572 goto out0;
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002573 }
Willy Tarreau26f95952017-07-27 17:18:30 +02002574
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002575 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002576
2577 if (h2c->dsi != 0) {
2578 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002579
2580 /* it's not an error to receive WU on a closed stream */
2581 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002582 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002583
2584 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002585 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 +02002586 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002587 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002588 goto strm_err;
2589 }
2590
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002591 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002592 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 +02002593 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002594 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002595 goto strm_err;
2596 }
2597
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002598 h2s->sws += inc;
2599 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002600 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002601 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002602 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2603 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002604 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002605 }
2606 }
2607 else {
2608 /* connection window update */
2609 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002610 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002611 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002612 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002613 goto conn_err;
2614 }
2615
2616 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2617 error = H2_ERR_FLOW_CONTROL_ERROR;
2618 goto conn_err;
2619 }
2620
2621 h2c->mws += inc;
2622 }
2623
Willy Tarreau7838a792019-08-12 18:42:03 +02002624 done:
2625 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002626 return 1;
2627
2628 conn_err:
2629 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002630 out0:
2631 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 +02002632 return 0;
2633
2634 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002635 h2s_error(h2s, error);
2636 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002637 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002638 return 0;
2639}
2640
Willy Tarreaue96b0922017-10-30 00:28:29 +01002641/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002642 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2643 * have already verified frame length and stream ID validity. Described in
2644 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002645 */
2646static int h2c_handle_goaway(struct h2c *h2c)
2647{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002648 int last;
2649
Willy Tarreau7838a792019-08-12 18:42:03 +02002650 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002651 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002652 if (b_data(&h2c->dbuf) < h2c->dfl) {
2653 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002654 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002655 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002656 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002657
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002658 last = h2_get_n32(&h2c->dbuf, 0);
2659 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002660 if (h2c->last_sid < 0)
2661 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002662 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002663 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002664 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002665}
2666
Willy Tarreau92153fc2017-12-03 19:46:19 +01002667/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002668 * invalid. Returns > 0 on success or zero on missing data. It may return an
2669 * error in h2c. The caller must have already verified frame length and stream
2670 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002671 */
2672static int h2c_handle_priority(struct h2c *h2c)
2673{
Willy Tarreau7838a792019-08-12 18:42:03 +02002674 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2675
Willy Tarreau92153fc2017-12-03 19:46:19 +01002676 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002677 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002678 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002679 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002680 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002681 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002682
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002683 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002684 /* 7540#5.3 : can't depend on itself */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002685 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002686 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02002687 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002688 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002689 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002690 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002691 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002692 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002693}
2694
Willy Tarreaucd234e92017-08-18 10:59:39 +02002695/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002696 * Returns > 0 on success or zero on missing data. The caller must have already
2697 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002698 */
2699static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2700{
Willy Tarreau7838a792019-08-12 18:42:03 +02002701 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2702
Willy Tarreaucd234e92017-08-18 10:59:39 +02002703 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002704 if (b_data(&h2c->dbuf) < h2c->dfl) {
2705 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 +02002706 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002707 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002708 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002709
2710 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002711 if (h2s->st == H2_SS_CLOSED) {
2712 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 +02002713 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002714 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002715
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002716 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002717 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002718
2719 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01002720 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01002721 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002722 }
2723
2724 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002725 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002726 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002727}
2728
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002729/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2730 * It may return an error in h2c or h2s. The caller must consider that the
2731 * return value is the new h2s in case one was allocated (most common case).
2732 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002733 * errors here are reported as connection errors since it's impossible to
2734 * recover from such errors after the compression context has been altered.
2735 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002736static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002737{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002738 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002739 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002740 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002741 int error;
2742
Willy Tarreau7838a792019-08-12 18:42:03 +02002743 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2744
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002745 if (!b_size(&h2c->dbuf)) {
2746 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002747 goto out; // empty buffer
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002748 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002749
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002750 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2751 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002752 goto out; // incomplete frame
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002753 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002754
2755 /* now either the frame is complete or the buffer is complete */
2756 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002757 /* The stream exists/existed, this must be a trailers frame */
2758 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002759 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len, NULL);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002760 /* unrecoverable error ? */
Willy Tarreau8c05c692023-01-19 23:58:11 +01002761 if (h2c->st0 >= H2_CS_ERROR) {
2762 TRACE_USER("Unrecoverable error decoding H2 trailers", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW|H2_EV_STRM_END, h2c->conn, 0, &rxbuf);
Willy Tarreau3f9e0402023-01-19 23:22:03 +01002763 sess_log(h2c->conn->owner);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002764 goto out;
Willy Tarreau8c05c692023-01-19 23:58:11 +01002765 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002766
Christopher Faulet0de3f552021-10-08 08:56:00 +02002767 if (error == 0) {
2768 /* Demux not blocked because of the stream, it is an incomplete frame */
2769 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2770 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002771 goto out; // missing data
Christopher Faulet0de3f552021-10-08 08:56:00 +02002772 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002773
2774 if (error < 0) {
2775 /* Failed to decode this frame (e.g. too large request)
2776 * but the HPACK decompressor is still synchronized.
2777 */
Willy Tarreau3f9e0402023-01-19 23:22:03 +01002778 sess_log(h2c->conn->owner);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002779 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
Willy Tarreau8c05c692023-01-19 23:58:11 +01002780 TRACE_USER("Stream error decoding H2 trailers", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW|H2_EV_STRM_END, h2c->conn, 0, &rxbuf);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002781 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002782 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002783 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002784 goto done;
2785 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002786 /* the connection was already killed by an RST, let's consume
2787 * the data and send another RST.
2788 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002789 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau3f9e0402023-01-19 23:22:03 +01002790 sess_log(h2c->conn->owner);
Willy Tarreau1f035502019-01-30 11:44:07 +01002791 h2s = (struct h2s*)h2_error_stream;
2792 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002793 }
2794 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2795 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2796 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002797 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau4781b152021-04-06 13:53:36 +02002798 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002799 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002800 goto conn_err;
2801 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002802 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2803 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002804
Amaury Denoyelle74162742020-12-11 17:53:05 +01002805 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002806
Willy Tarreau25919232019-01-03 14:48:18 +01002807 /* unrecoverable error ? */
Willy Tarreau8c05c692023-01-19 23:58:11 +01002808 if (h2c->st0 >= H2_CS_ERROR) {
2809 TRACE_USER("Unrecoverable error decoding H2 request", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW|H2_EV_STRM_END, h2c->conn, 0, &rxbuf);
Willy Tarreau3f9e0402023-01-19 23:22:03 +01002810 sess_log(h2c->conn->owner);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002811 goto out;
Willy Tarreau8c05c692023-01-19 23:58:11 +01002812 }
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002813
Willy Tarreau25919232019-01-03 14:48:18 +01002814 if (error <= 0) {
Christopher Faulet0de3f552021-10-08 08:56:00 +02002815 if (error == 0) {
2816 /* Demux not blocked because of the stream, it is an incomplete frame */
2817 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2818 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau25919232019-01-03 14:48:18 +01002819 goto out; // missing data
Christopher Faulet0de3f552021-10-08 08:56:00 +02002820 }
Willy Tarreau25919232019-01-03 14:48:18 +01002821
2822 /* Failed to decode this stream (e.g. too large request)
2823 * but the HPACK decompressor is still synchronized.
2824 */
Willy Tarreau3f9e0402023-01-19 23:22:03 +01002825 sess_log(h2c->conn->owner);
Willy Tarreau25919232019-01-03 14:48:18 +01002826 h2s = (struct h2s*)h2_error_stream;
2827 goto send_rst;
2828 }
2829
Willy Tarreau3c10d512021-06-17 08:29:14 +02002830 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn, 0, &rxbuf);
2831
Willy Tarreauca45e442022-05-12 09:08:51 +02002832 /* Now we cannot roll back and we won't come back here anymore for this
2833 * stream, this stream ID is open.
2834 */
2835 if (h2c->dsi > h2c->max_id)
2836 h2c->max_id = h2c->dsi;
2837
Willy Tarreau22de8d32018-09-05 19:55:58 +02002838 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002839 * positively from h2c_frt_stream_new(), the stream will report the error,
2840 * and if we return in error, h2c_frt_stream_new() will emit the error.
Christopher Faulet7d013e72020-12-15 16:56:50 +01002841 *
2842 * Xfer the rxbuf to the stream. On success, the new stream owns the
2843 * rxbuf. On error, it is released here.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002844 */
Amaury Denoyelleee7fcd52021-10-18 14:45:49 +02002845 h2s = h2c_frt_stream_new(h2c, h2c->dsi, &rxbuf, flags);
Willy Tarreau13278b42017-10-13 19:23:14 +02002846 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002847 h2s = (struct h2s*)h2_refused_stream;
2848 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002849 }
2850
2851 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002852 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002853 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002854
Willy Tarreau88d138e2019-01-02 19:38:14 +01002855 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002856 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002857 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002858
2859 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002860 if (h2s->st == H2_SS_OPEN)
2861 h2s->st = H2_SS_HREM;
2862 else
2863 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002864 }
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002865 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002866
2867 conn_err:
2868 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002869 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002870
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002871 out:
2872 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002873 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 +01002874 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002875
2876 send_rst:
2877 /* make the demux send an RST for the current stream. We may only
2878 * do this if we're certain that the HEADERS frame was properly
2879 * decompressed so that the HPACK decoder is still kept up to date.
2880 */
2881 h2_release_buf(h2c, &rxbuf);
2882 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002883
Willy Tarreau022e5e52020-09-10 09:33:15 +02002884 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 +02002885 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002886 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002887}
2888
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002889/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2890 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2891 * errors here are reported as connection errors since it's impossible to
2892 * recover from such errors after the compression context has been altered.
2893 */
2894static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2895{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002896 struct buffer rxbuf = BUF_NULL;
2897 unsigned long long body_len = 0;
2898 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002899 int error;
2900
Willy Tarreau7838a792019-08-12 18:42:03 +02002901 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2902
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002903 if (!b_size(&h2c->dbuf)) {
2904 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002905 goto fail; // empty buffer
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002906 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002907
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002908 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2909 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002910 goto fail; // incomplete frame
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02002911 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002912
Christopher Faulet6884aa32019-09-23 15:28:20 +02002913 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002914 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len, h2s->upgrade_protocol);
Christopher Faulet6884aa32019-09-23 15:28:20 +02002915 }
2916 else {
2917 /* the connection was already killed by an RST, let's consume
2918 * the data and send another RST.
2919 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002920 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002921 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002922 h2c->st0 = H2_CS_FRAME_E;
2923 goto send_rst;
2924 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002925
Willy Tarreau25919232019-01-03 14:48:18 +01002926 /* unrecoverable error ? */
Willy Tarreau8c05c692023-01-19 23:58:11 +01002927 if (h2c->st0 >= H2_CS_ERROR) {
2928 TRACE_USER("Unrecoverable error decoding H2 HEADERS", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002929 goto fail;
Willy Tarreau8c05c692023-01-19 23:58:11 +01002930 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002931
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002932 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2933 /* RFC7540#5.1 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002934 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 +01002935 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2936 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002937 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002938 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002939 }
2940
Willy Tarreau25919232019-01-03 14:48:18 +01002941 if (error <= 0) {
Christopher Faulet0de3f552021-10-08 08:56:00 +02002942 if (error == 0) {
2943 /* Demux not blocked because of the stream, it is an incomplete frame */
2944 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2945 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002946 goto fail; // missing data
Christopher Faulet0de3f552021-10-08 08:56:00 +02002947 }
Willy Tarreau25919232019-01-03 14:48:18 +01002948
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002949 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002950 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 +01002951 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002952 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002953 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002954 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002955 }
2956
Christopher Fauletfa922f02019-05-07 10:55:17 +02002957 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002958 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002959
Willy Tarreau927b88b2019-03-04 08:03:25 +01002960 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002961 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002962 else if (h2s->flags & H2_SF_ES_RCVD) {
2963 if (h2s->st == H2_SS_OPEN)
2964 h2s->st = H2_SS_HREM;
2965 else if (h2s->st == H2_SS_HLOC)
2966 h2s_close(h2s);
2967 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002968
Christopher Fauletf95f8762021-01-22 11:59:07 +01002969 /* Unblock busy server h2s waiting for the response headers to validate
2970 * the tunnel establishment or the end of the response of an oborted
2971 * tunnel
2972 */
2973 if ((h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY)) == (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY) ||
2974 (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)) {
2975 TRACE_STATE("Unblock h2s blocked on tunnel establishment/abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2976 h2s->flags &= ~H2_SF_BLK_MBUSY;
2977 }
2978
Willy Tarreaucbd37e02021-06-16 18:32:42 +02002979 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 +02002980 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002981 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002982 fail:
2983 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2984 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002985
2986 send_rst:
2987 /* make the demux send an RST for the current stream. We may only
2988 * do this if we're certain that the HEADERS frame was properly
2989 * decompressed so that the HPACK decoder is still kept up to date.
2990 */
2991 h2_release_buf(h2c, &rxbuf);
2992 h2c->st0 = H2_CS_FRAME_E;
2993
Willy Tarreau022e5e52020-09-10 09:33:15 +02002994 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 +02002995 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2996 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002997}
2998
Willy Tarreau454f9052017-10-26 19:40:35 +02002999/* processes a DATA frame. Returns > 0 on success or zero on missing data.
3000 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
3001 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003002static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02003003{
3004 int error;
3005
Willy Tarreau7838a792019-08-12 18:42:03 +02003006 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3007
Willy Tarreau454f9052017-10-26 19:40:35 +02003008 /* note that empty DATA frames are perfectly valid and sometimes used
3009 * to signal an end of stream (with the ES flag).
3010 */
3011
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003012 if (!b_size(&h2c->dbuf) && h2c->dfl) {
3013 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02003014 goto fail; // empty buffer
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003015 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003016
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003017 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
3018 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02003019 goto fail; // incomplete frame
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003020 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003021
3022 /* now either the frame is complete or the buffer is complete */
3023
Willy Tarreau454f9052017-10-26 19:40:35 +02003024 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
3025 /* RFC7540#6.1 */
3026 error = H2_ERR_STREAM_CLOSED;
3027 goto strm_err;
3028 }
3029
Christopher Faulet4f09ec82019-06-19 09:25:58 +02003030 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01003031 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003032 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 +01003033 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02003034 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01003035 goto strm_err;
3036 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01003037 if (!(h2c->flags & H2_CF_IS_BACK) &&
3038 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT) &&
3039 ((h2c->dfl - h2c->dpl) || !(h2c->dff & H2_F_DATA_END_STREAM))) {
3040 /* a tunnel attempt was aborted but the client still try to send some raw data.
3041 * Thus the stream is closed with the CANCEL error. Here we take care it is not
3042 * an empty DATA Frame with the ES flag. The error is only handled if ES was
3043 * already sent to the client because depending on the scheduling, these data may
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003044 * have been sent before the server response but not handle here.
Christopher Faulet91b21dc2021-01-22 12:13:15 +01003045 */
3046 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3047 error = H2_ERR_CANCEL;
3048 goto strm_err;
3049 }
Willy Tarreau1915ca22019-01-24 11:49:37 +01003050
Willy Tarreaua56a6de2018-02-26 15:59:07 +01003051 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02003052 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01003053
Willy Tarreau454f9052017-10-26 19:40:35 +02003054 /* call the upper layers to process the frame, then let the upper layer
3055 * notify the stream about any change.
3056 */
3057 if (!h2s->cs) {
Willy Tarreau082c4572019-08-06 10:11:02 +02003058 /* The upper layer has already closed, this may happen on
3059 * 4xx/redirects during POST, or when receiving a response
3060 * from an H2 server after the client has aborted.
3061 */
3062 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02003063 goto strm_err;
3064 }
3065
Willy Tarreau8f650c32017-11-21 19:36:21 +01003066 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003067 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01003068
Willy Tarreau721c9742017-11-07 11:05:42 +01003069 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02003070 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01003071 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02003072 }
3073
3074 /* check for completion : the callee will change this to FRAME_A or
3075 * FRAME_H once done.
3076 */
3077 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02003078 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02003079
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003080 /* last frame */
3081 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02003082 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01003083 if (h2s->st == H2_SS_OPEN)
3084 h2s->st = H2_SS_HREM;
3085 else
3086 h2s_close(h2s);
3087
Willy Tarreau1915ca22019-01-24 11:49:37 +01003088 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
3089 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003090 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 +01003091 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02003092 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01003093 goto strm_err;
3094 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003095 }
3096
Christopher Fauletf95f8762021-01-22 11:59:07 +01003097 /* Unblock busy server h2s waiting for the end of the response for an
3098 * aborted tunnel
3099 */
3100 if ((h2c->flags & H2_CF_IS_BACK) &&
3101 (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)) {
3102 TRACE_STATE("Unblock h2s blocked on tunnel abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3103 h2s->flags &= ~H2_SF_BLK_MBUSY;
3104 }
3105
Willy Tarreau7838a792019-08-12 18:42:03 +02003106 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003107 return 1;
3108
Willy Tarreau454f9052017-10-26 19:40:35 +02003109 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01003110 h2s_error(h2s, error);
3111 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003112 fail:
3113 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 +02003114 return 0;
3115}
3116
Willy Tarreau63864812019-08-07 14:25:20 +02003117/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
3118 * valid for the current stream state. This is needed only after parsing the
3119 * frame header but in practice it can be performed at any time during
3120 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
3121 * or 0 in case of error, in which case either h2s or h2c will carry an error.
3122 */
3123static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
3124{
Willy Tarreau7838a792019-08-12 18:42:03 +02003125 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
3126
Willy Tarreau63864812019-08-07 14:25:20 +02003127 if (h2s->st == H2_SS_IDLE &&
3128 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
3129 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
3130 * this state MUST be treated as a connection error
3131 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003132 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 +02003133 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003134 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02003135 /* only log if no other stream can report the error */
3136 sess_log(h2c->conn->owner);
3137 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003138 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02003139 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 +02003140 return 0;
3141 }
3142
Willy Tarreau57a18162019-11-24 14:57:53 +01003143 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
3144 /* only PUSH_PROMISE would be permitted here */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003145 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 +01003146 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003147 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau57a18162019-11-24 14:57:53 +01003148 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
3149 return 0;
3150 }
3151
Willy Tarreau63864812019-08-07 14:25:20 +02003152 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
3153 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
3154 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
3155 * this state MUST be treated as a stream error.
3156 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
3157 * PUSH_PROMISE/CONTINUATION cause connection errors.
3158 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01003159 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003160 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 +02003161 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003162 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003163 }
3164 else {
Willy Tarreau63864812019-08-07 14:25:20 +02003165 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003166 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003167 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 +02003168 return 0;
3169 }
3170
3171 /* Below the management of frames received in closed state is a
3172 * bit hackish because the spec makes strong differences between
3173 * streams closed by receiving RST, sending RST, and seeing ES
3174 * in both directions. In addition to this, the creation of a
3175 * new stream reusing the identifier of a closed one will be
3176 * detected here. Given that we cannot keep track of all closed
3177 * streams forever, we consider that unknown closed streams were
3178 * closed on RST received, which allows us to respond with an
3179 * RST without breaking the connection (eg: to abort a transfer).
3180 * Some frames have to be silently ignored as well.
3181 */
3182 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
3183 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
3184 /* #5.1.1: The identifier of a newly
3185 * established stream MUST be numerically
3186 * greater than all streams that the initiating
3187 * endpoint has opened or reserved. This
3188 * governs streams that are opened using a
3189 * HEADERS frame and streams that are reserved
3190 * using PUSH_PROMISE. An endpoint that
3191 * receives an unexpected stream identifier
3192 * MUST respond with a connection error.
3193 */
3194 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003195 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 +02003196 return 0;
3197 }
3198
Willy Tarreau4c08f122019-09-26 08:47:15 +02003199 if (h2s->flags & H2_SF_RST_RCVD &&
3200 !(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 +02003201 /* RFC7540#5.1:closed: an endpoint that
3202 * receives any frame other than PRIORITY after
3203 * receiving a RST_STREAM MUST treat that as a
3204 * stream error of type STREAM_CLOSED.
3205 *
3206 * Note that old streams fall into this category
3207 * and will lead to an RST being sent.
3208 *
3209 * However, we cannot generalize this to all frame types. Those
3210 * carrying compression state must still be processed before
3211 * being dropped or we'll desynchronize the decoder. This can
3212 * happen with request trailers received after sending an
3213 * RST_STREAM, or with header/trailers responses received after
3214 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02003215 *
3216 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003217 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003218 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003219 */
3220 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3221 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003222 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 +02003223 return 0;
3224 }
3225
3226 /* RFC7540#5.1:closed: if this state is reached as a
3227 * result of sending a RST_STREAM frame, the peer that
3228 * receives the RST_STREAM might have already sent
3229 * frames on the stream that cannot be withdrawn. An
3230 * endpoint MUST ignore frames that it receives on
3231 * closed streams after it has sent a RST_STREAM
3232 * frame. An endpoint MAY choose to limit the period
3233 * over which it ignores frames and treat frames that
3234 * arrive after this time as being in error.
3235 */
3236 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3237 /* RFC7540#5.1:closed: any frame other than
3238 * PRIO/WU/RST in this state MUST be treated as
3239 * a connection error
3240 */
3241 if (h2c->dft != H2_FT_RST_STREAM &&
3242 h2c->dft != H2_FT_PRIORITY &&
3243 h2c->dft != H2_FT_WINDOW_UPDATE) {
3244 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003245 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 +02003246 return 0;
3247 }
3248 }
3249 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003250 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003251 return 1;
3252}
3253
Willy Tarreaubc933932017-10-09 16:21:43 +02003254/* process Rx frames to be demultiplexed */
3255static void h2_process_demux(struct h2c *h2c)
3256{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003257 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003258 struct h2_fh hdr;
3259 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003260 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003261
Willy Tarreau7838a792019-08-12 18:42:03 +02003262 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3263
Willy Tarreau081d4722017-05-16 21:51:05 +02003264 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003265 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003266
3267 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3268 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003269 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003270 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003271 goto out;
3272
Willy Tarreau52eed752017-09-22 15:05:09 +02003273 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3274 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003275 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003276 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003277 h2c->st0 = H2_CS_ERROR2;
Willy Tarreauc23d6d12021-06-17 08:08:48 +02003278 if (b_data(&h2c->dbuf) ||
Christopher Faulet79b347d2021-07-26 10:18:35 +02003279 !(((const struct session *)h2c->conn->owner)->fe->options & (PR_O_NULLNOLOG|PR_O_IGNORE_PRB)))
Willy Tarreauc23d6d12021-06-17 08:08:48 +02003280 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003281 }
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003282 goto done;
Willy Tarreau52eed752017-09-22 15:05:09 +02003283 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003284 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003285
3286 h2c->max_id = 0;
3287 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003288 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003289 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003290
3291 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003292 /* ensure that what is pending is a valid SETTINGS frame
3293 * without an ACK.
3294 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003295 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 +02003296 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003297 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003298 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003299 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003300 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 +02003301 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003302 if (!(h2c->flags & H2_CF_IS_BACK))
3303 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003304 }
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003305 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003306 }
3307
3308 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3309 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003310 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 +02003311 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3312 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003313 if (!(h2c->flags & H2_CF_IS_BACK))
3314 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003315 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003316 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003317 }
3318
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003319 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003320 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003321 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 +02003322 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3323 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003324 if (!(h2c->flags & H2_CF_IS_BACK))
3325 sess_log(h2c->conn->owner);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003326 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003327 }
3328
Willy Tarreau3bf69182018-12-21 15:34:50 +01003329 /* that's OK, switch to FRAME_P to process it. This is
3330 * a SETTINGS frame whose header has already been
3331 * deleted above.
3332 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003333 padlen = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +02003334 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003335 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003336 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003337 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003338
3339 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003340 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003341 int ret = 0;
3342
Willy Tarreau7838a792019-08-12 18:42:03 +02003343 if (!b_data(&h2c->dbuf)) {
3344 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003345 h2c->flags |= H2_CF_DEM_SHORT_READ;
3346 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003347 }
3348
3349 if (h2c->st0 >= H2_CS_ERROR) {
3350 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003351 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003352 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003353
3354 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003355 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003356 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr)) {
3357 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003358 break;
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003359 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003360
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003361 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003362 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 +02003363 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003364 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003365 /* only log if no other stream can report the error */
3366 sess_log(h2c->conn->owner);
3367 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003368 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003369 break;
3370 }
3371
Willy Tarreau1d7138e2022-06-08 16:32:22 +02003372 if (h2c->rcvd_s && h2c->dsi != hdr.sid) {
3373 /* changed stream with a pending WU, need to
3374 * send it now.
3375 */
3376 TRACE_PROTO("sending stream WINDOW_UPDATE frame on stream switch", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
3377 ret = h2c_send_strm_wu(h2c);
3378 if (ret <= 0)
3379 break;
3380 }
3381
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003382 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003383 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3384 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3385 * we read the pad length and drop it from the remaining
3386 * payload (one byte + the 9 remaining ones = 10 total
3387 * removed), so we have a frame payload starting after the
3388 * pad len. Flow controlled frames (DATA) also count the
3389 * padlen in the flow control, so it must be adjusted.
3390 */
3391 if (hdr.len < 1) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003392 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 +01003393 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003394 if (!(h2c->flags & H2_CF_IS_BACK))
3395 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003396 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003397 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003398 }
3399 hdr.len--;
3400
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003401 if (b_data(&h2c->dbuf) < 10) {
3402 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003403 break; // missing padlen
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003404 }
Willy Tarreau3bf69182018-12-21 15:34:50 +01003405
3406 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3407
3408 if (padlen > hdr.len) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003409 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 +01003410 /* RFC7540#6.1 : pad length = length of
3411 * frame payload or greater => error.
3412 */
3413 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003414 if (!(h2c->flags & H2_CF_IS_BACK))
3415 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003416 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003417 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003418 }
3419
3420 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3421 h2c->rcvd_c++;
3422 h2c->rcvd_s++;
3423 }
3424 b_del(&h2c->dbuf, 1);
3425 }
3426 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003427
3428 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003429 h2c->dfl = hdr.len;
3430 h2c->dsi = hdr.sid;
3431 h2c->dft = hdr.ft;
3432 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003433 h2c->dpl = padlen;
Willy Tarreau6c3eeca2022-08-18 11:19:57 +02003434 h2c->flags |= H2_CF_DEM_IN_PROGRESS;
Willy Tarreau73db4342019-09-25 07:28:44 +02003435 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 +02003436 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003437
3438 /* check for minimum basic frame format validity */
3439 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3440 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003441 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 +01003442 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003443 if (!(h2c->flags & H2_CF_IS_BACK))
3444 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003445 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003446 goto done;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003447 }
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +01003448
3449 /* transition to HEADERS frame ends the keep-alive idle
3450 * timer and starts the http-request idle delay.
3451 */
3452 if (hdr.ft == H2_FT_HEADERS)
3453 h2c->idle_start = now_ms;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003454 }
3455
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003456 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3457 * H2_CS_FRAME_P indicates an incomplete previous operation
3458 * (most often the first attempt) and requires some validity
3459 * checks for the frame and the current state. The two other
3460 * ones are set after completion (or abortion) and must skip
3461 * validity checks.
3462 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003463 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3464
Willy Tarreau567beb82018-12-18 16:52:44 +01003465 if (tmp_h2s != h2s && h2s && h2s->cs &&
3466 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003467 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003468 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003469 (h2s->flags & H2_SF_ES_RCVD) ||
3470 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003471 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003472 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 +01003473 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003474 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003475 }
3476 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003477
Willy Tarreau63864812019-08-07 14:25:20 +02003478 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003479 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3480 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003481 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003482 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003483
Willy Tarreau7e98c052017-10-10 15:56:59 +02003484 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003485 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003486 if (h2c->st0 == H2_CS_FRAME_P) {
3487 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003488 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003489 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003490 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003491
Willy Tarreau7838a792019-08-12 18:42:03 +02003492 if (h2c->st0 == H2_CS_FRAME_A) {
3493 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 +02003494 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003495 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003496 break;
3497
Willy Tarreaucf68c782017-10-10 17:11:41 +02003498 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003499 if (h2c->st0 == H2_CS_FRAME_P) {
3500 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003501 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003502 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003503
Willy Tarreau7838a792019-08-12 18:42:03 +02003504 if (h2c->st0 == H2_CS_FRAME_A) {
3505 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 +02003506 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003507 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003508 break;
3509
Willy Tarreau26f95952017-07-27 17:18:30 +02003510 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003511 if (h2c->st0 == H2_CS_FRAME_P) {
3512 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 +02003513 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003514 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003515 break;
3516
Willy Tarreau61290ec2017-10-17 08:19:21 +02003517 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003518 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003519 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3520 * frames' parsers consume all following CONTINUATION
3521 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003522 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003523 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 +01003524 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003525 if (!(h2c->flags & H2_CF_IS_BACK))
3526 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003527 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003528 goto done;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003529
Willy Tarreau13278b42017-10-13 19:23:14 +02003530 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003531 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003532 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003533 if (h2c->flags & H2_CF_IS_BACK)
3534 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3535 else
3536 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003537 if (tmp_h2s) {
3538 h2s = tmp_h2s;
3539 ret = 1;
3540 }
3541 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003542 HA_ATOMIC_INC(&h2c->px_counters->headers_rcvd);
Willy Tarreau13278b42017-10-13 19:23:14 +02003543 break;
3544
Willy Tarreau454f9052017-10-26 19:40:35 +02003545 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003546 if (h2c->st0 == H2_CS_FRAME_P) {
3547 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003548 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003549 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003550 HA_ATOMIC_INC(&h2c->px_counters->data_rcvd);
Willy Tarreau454f9052017-10-26 19:40:35 +02003551
Willy Tarreau7838a792019-08-12 18:42:03 +02003552 if (h2c->st0 == H2_CS_FRAME_A) {
Willy Tarreau1d7138e2022-06-08 16:32:22 +02003553 /* rcvd_s will suffice to trigger the sending of a WU */
3554 h2c->st0 = H2_CS_FRAME_H;
Willy Tarreau7838a792019-08-12 18:42:03 +02003555 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003556 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003557
Willy Tarreau92153fc2017-12-03 19:46:19 +01003558 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003559 if (h2c->st0 == H2_CS_FRAME_P) {
3560 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003561 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003562 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003563 break;
3564
Willy Tarreaucd234e92017-08-18 10:59:39 +02003565 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003566 if (h2c->st0 == H2_CS_FRAME_P) {
3567 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 +02003568 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003569 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003570 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_rcvd);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003571 break;
3572
Willy Tarreaue96b0922017-10-30 00:28:29 +01003573 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003574 if (h2c->st0 == H2_CS_FRAME_P) {
3575 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003576 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003577 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003578 HA_ATOMIC_INC(&h2c->px_counters->goaway_rcvd);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003579 break;
3580
Willy Tarreau1c661982017-10-30 13:52:01 +01003581 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003582 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003583 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003584 /* drop frames that we ignore. They may be larger than
3585 * the buffer so we drain all of their contents until
3586 * we reach the end.
3587 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003588 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3589 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003590 h2c->dfl -= ret;
3591 ret = h2c->dfl == 0;
3592 }
3593
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003594 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003595 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003596 if (h2s->st == H2_SS_ERROR) {
3597 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 +01003598 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003599 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003600
Willy Tarreau7838a792019-08-12 18:42:03 +02003601 if (h2c->st0 == H2_CS_FRAME_E) {
3602 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 +01003603 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003604 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003605
Willy Tarreau7e98c052017-10-10 15:56:59 +02003606 /* error or missing data condition met above ? */
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003607 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02003608 break;
3609
3610 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003611 if (h2c->dfl)
3612 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003613 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3614 b_del(&h2c->dbuf, ret);
3615 h2c->dfl -= ret;
3616 if (!h2c->dfl) {
Willy Tarreau6c3eeca2022-08-18 11:19:57 +02003617 h2c->flags &= ~H2_CF_DEM_IN_PROGRESS;
Christopher Faulet5112a602019-09-26 16:38:28 +02003618 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3619 h2c->st0 = H2_CS_FRAME_H;
Christopher Faulet5112a602019-09-26 16:38:28 +02003620 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003621 }
3622 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003623
Willy Tarreau1d7138e2022-06-08 16:32:22 +02003624 if (h2c->rcvd_s > 0 &&
3625 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3626 TRACE_PROTO("sending stream WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn, h2s);
3627 h2c_send_strm_wu(h2c);
3628 }
3629
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003630 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003631 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3632 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003633 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003634 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003635
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003636 done:
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003637 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_DEM_SHORT_READ)) {
3638 if (h2c->flags & H2_CF_RCVD_SHUT)
3639 h2c->flags |= H2_CF_END_REACHED;
3640 }
3641
Willy Tarreau567beb82018-12-18 16:52:44 +01003642 if (h2s && h2s->cs &&
3643 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003644 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003645 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003646 (h2s->flags & H2_SF_ES_RCVD) ||
3647 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003648 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003649 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 +01003650 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003651 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003652 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003653
Willy Tarreau7838a792019-08-12 18:42:03 +02003654 if (old_iw != h2c->miw) {
3655 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003656 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003657 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003658
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003659 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003660 out:
3661 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003662 return;
Willy Tarreaubc933932017-10-09 16:21:43 +02003663}
3664
Willy Tarreau989539b2020-01-10 17:01:29 +01003665/* resume each h2s eligible for sending in list head <head> */
3666static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3667{
3668 struct h2s *h2s, *h2s_back;
3669
3670 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3671
3672 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3673 if (h2c->mws <= 0 ||
3674 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3675 h2c->st0 >= H2_CS_ERROR)
3676 break;
3677
3678 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003679
Willy Tarreaud9464162020-01-10 18:25:07 +01003680 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003681 continue;
3682
Willy Tarreau5723f292020-01-10 15:16:57 +01003683 /* If the sender changed his mind and unsubscribed, let's just
3684 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003685 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003686 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3687 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003688 LIST_DEL_INIT(&h2s->list);
3689 continue;
3690 }
3691
Willy Tarreauf96508a2020-01-10 11:12:48 +01003692 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003693 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003694 tasklet_wakeup(h2s->subs->tasklet);
3695 h2s->subs->events &= ~SUB_RETRY_SEND;
3696 if (!h2s->subs->events)
3697 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003698 }
3699 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3700 tasklet_wakeup(h2s->shut_tl);
3701 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003702 }
3703
3704 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3705}
3706
Willy Tarreaubc933932017-10-09 16:21:43 +02003707/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3708 * the end.
3709 */
3710static int h2_process_mux(struct h2c *h2c)
3711{
Willy Tarreau7838a792019-08-12 18:42:03 +02003712 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3713
Willy Tarreau01b44822018-10-03 14:26:37 +02003714 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3715 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3716 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3717 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003718 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003719 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003720 goto fail;
3721 }
3722 h2c->st0 = H2_CS_SETTINGS1;
3723 }
3724 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003725 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003726 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003727 }
3728
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003729 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003730 if (h2c->rcvd_s > 0 &&
3731 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3732 h2c_send_strm_wu(h2c) < 0)
3733 goto fail;
3734
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003735 if (h2c->rcvd_c > 0 &&
3736 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3737 h2c_send_conn_wu(h2c) < 0)
3738 goto fail;
3739
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003740 /* First we always process the flow control list because the streams
3741 * waiting there were already elected for immediate emission but were
3742 * blocked just on this.
3743 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003744 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3745 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003746
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003747 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003748 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003749 if (h2c->st0 == H2_CS_ERROR) {
3750 if (h2c->max_id >= 0) {
3751 h2c_send_goaway_error(h2c, NULL);
3752 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003753 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003754 }
3755
3756 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3757 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003758 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003759 done:
3760 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3761 return 1;
3762 out0:
3763 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3764 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003765}
3766
Willy Tarreau62f52692017-10-08 23:01:42 +02003767
Willy Tarreau479998a2018-11-18 06:30:59 +01003768/* Attempt to read data, and subscribe if none available.
3769 * The function returns 1 if data has been received, otherwise zero.
3770 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003771static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003772{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003773 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003774 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003775 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003776 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003777
Willy Tarreau7838a792019-08-12 18:42:03 +02003778 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3779
3780 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3781 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003782 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003783 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003784
Willy Tarreau7838a792019-08-12 18:42:03 +02003785 if (!h2_recv_allowed(h2c)) {
3786 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003787 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003788 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003789
Willy Tarreau44e973f2018-03-01 17:49:30 +01003790 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003791 if (!buf) {
3792 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003793 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003794 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003795 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003796
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003797 if (h2c->flags & H2_CF_RCVD_SHUT) {
3798 TRACE_DEVEL("leaving on rcvd_shut", H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau49acac02021-11-19 11:41:10 +01003799 return 1;
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003800 }
3801
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003802 if (!b_data(buf)) {
3803 /* try to pre-align the buffer like the
3804 * rxbufs will be to optimize memory copies. We'll make
3805 * sure that the frame header lands at the end of the
3806 * HTX block to alias it upon recv. We cannot use the
3807 * head because rcv_buf() will realign the buffer if
3808 * it's empty. Thus we cheat and pretend we already
3809 * have a few bytes there.
3810 */
3811 max = buf_room_for_htx_data(buf) + 9;
3812 buf->head = sizeof(struct htx) - 9;
3813 }
3814 else
3815 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003816
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003817 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003818
Christopher Fauletde9d6052021-04-23 12:25:18 +02003819 if (max && !ret && h2_recv_allowed(h2c)) {
3820 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
3821 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003822 } else if (ret) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02003823 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Christopher Fauleta9cc1e82021-07-26 12:06:53 +02003824 h2c->flags &= ~H2_CF_DEM_SHORT_READ;
3825 }
Olivier Houchard81a15af2018-10-19 17:26:49 +02003826
Christopher Fauletde9d6052021-04-23 12:25:18 +02003827 if (conn_xprt_read0_pending(h2c->conn)) {
3828 TRACE_DATA("received read0", H2_EV_H2C_RECV, h2c->conn);
3829 h2c->flags |= H2_CF_RCVD_SHUT;
3830 }
3831
Olivier Houcharda1411e62018-08-17 18:42:48 +02003832 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003833 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003834 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003835 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003836 }
3837
Willy Tarreau7838a792019-08-12 18:42:03 +02003838 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003839 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003840 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003841 }
3842
3843 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003844 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003845}
3846
Willy Tarreau479998a2018-11-18 06:30:59 +01003847/* Try to send data if possible.
3848 * The function returns 1 if data have been sent, otherwise zero.
3849 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003850static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003851{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003852 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003853 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003854 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003855
Willy Tarreau7838a792019-08-12 18:42:03 +02003856 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003857
Willy Tarreau7838a792019-08-12 18:42:03 +02003858 if (conn->flags & CO_FL_ERROR) {
3859 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3860 return 1;
3861 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003862
Willy Tarreau911db9b2020-01-23 16:27:54 +01003863 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003864 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003865 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003866 }
3867
Willy Tarreaubc933932017-10-09 16:21:43 +02003868 /* This loop is quite simple : it tries to fill as much as it can from
3869 * pending streams into the existing buffer until it's reportedly full
3870 * or the end of send requests is reached. Then it tries to send this
3871 * buffer's contents out, marks it not full if at least one byte could
3872 * be sent, and tries again.
3873 *
3874 * The snd_buf() function normally takes a "flags" argument which may
3875 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3876 * data immediately comes and CO_SFL_STREAMER to indicate that the
3877 * connection is streaming lots of data (used to increase TLS record
3878 * size at the expense of latency). The former can be sent any time
3879 * there's a buffer full flag, as it indicates at least one stream
3880 * attempted to send and failed so there are pending data. An
3881 * alternative would be to set it as long as there's an active stream
3882 * but that would be problematic for ACKs until we have an absolute
3883 * guarantee that all waiters have at least one byte to send. The
3884 * latter should possibly not be set for now.
3885 */
3886
3887 done = 0;
3888 while (!done) {
3889 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003890 unsigned int released = 0;
3891 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003892
3893 /* fill as much as we can into the current buffer */
3894 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3895 done = h2_process_mux(h2c);
3896
Olivier Houchard2b094432019-01-29 18:28:36 +01003897 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003898 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003899
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003900 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
Willy Tarreaue90653b2021-10-21 17:30:06 +02003901 (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003902 break;
3903
3904 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3905 flags |= CO_SFL_MSG_MORE;
3906
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003907 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3908 if (b_data(buf)) {
3909 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003910 if (!ret) {
3911 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003912 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003913 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003914 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003915 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003916 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003917 if (b_data(buf)) {
3918 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003919 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003920 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003921 }
3922 b_free(buf);
3923 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003924 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003925
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003926 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01003927 offer_buffers(NULL, released);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003928
Willy Tarreaubc933932017-10-09 16:21:43 +02003929 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003930 if (sent)
3931 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003932 }
3933
Willy Tarreaua2af5122017-10-09 11:56:46 +02003934 if (conn->flags & CO_FL_SOCK_WR_SH) {
3935 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003936 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003937 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003938 /* We're not full anymore, so we can wake any task that are waiting
3939 * for us.
3940 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003941 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3942 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003943
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003944 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003945 if (!br_data(h2c->mbuf)) {
3946 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003947 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003948 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003949schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003950 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3951 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003952 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003953 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003954
Willy Tarreau7838a792019-08-12 18:42:03 +02003955 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003956 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003957}
3958
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003959/* this is the tasklet referenced in h2c->wait_event.tasklet */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003960struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state)
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003961{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003962 struct connection *conn;
3963 struct tasklet *tl = (struct tasklet *)t;
3964 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003965 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003966 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003967
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003968 if (state & TASK_F_USR1) {
3969 /* the tasklet was idling on an idle connection, it might have
3970 * been stolen, let's be careful!
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003971 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003972 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3973 if (t->context == NULL) {
3974 /* The connection has been taken over by another thread,
3975 * we're no longer responsible for it, so just free the
3976 * tasklet, and do nothing.
3977 */
3978 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3979 tasklet_free(tl);
Willy Tarreau74163142021-03-13 11:30:19 +01003980 t = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003981 goto leave;
3982 }
3983 conn = h2c->conn;
3984 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003985
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003986 /* Remove the connection from the list, to be sure nobody attempts
3987 * to use it while we handle the I/O events
3988 */
Christopher Fauletc5fd15d2023-03-16 11:43:05 +01003989 conn_in_list = conn_get_idle_flag(conn);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003990 if (conn_in_list)
3991 conn_delete_from_tree(&conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003992
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003993 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3994 } else {
3995 /* we're certain the connection was not in an idle list */
3996 conn = h2c->conn;
3997 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3998 conn_in_list = 0;
3999 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004000
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004001 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02004002 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004003 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02004004 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01004005 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004006 ret = h2_process(h2c);
4007
4008 /* If we were in an idle list, we want to add it back into it,
4009 * unless h2_process() returned -1, which mean it has destroyed
4010 * the connection (testing !ret is enough, if h2_process() wasn't
4011 * called then ret will be 0 anyway.
4012 */
Willy Tarreau74163142021-03-13 11:30:19 +01004013 if (ret < 0)
4014 t = NULL;
4015
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004016 if (!ret && conn_in_list) {
4017 struct server *srv = objt_server(conn->target);
4018
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004019 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004020 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004021 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004022 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004023 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004024 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004025 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004026
Willy Tarreau38468772020-06-28 00:31:13 +02004027leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02004028 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreau74163142021-03-13 11:30:19 +01004029 return t;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004030}
Willy Tarreaua2af5122017-10-09 11:56:46 +02004031
Willy Tarreau62f52692017-10-08 23:01:42 +02004032/* callback called on any event by the connection handler.
4033 * It applies changes and returns zero, or < 0 if it wants immediate
4034 * destruction of the connection (which normally doesn not happen in h2).
4035 */
Olivier Houchard7505f942018-08-21 18:10:44 +02004036static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02004037{
Olivier Houchard7505f942018-08-21 18:10:44 +02004038 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02004039
Willy Tarreau7838a792019-08-12 18:42:03 +02004040 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4041
Willy Tarreauf0961222021-02-05 11:41:46 +01004042 if (!(h2c->flags & H2_CF_DEM_BLOCK_ANY) &&
4043 (b_data(&h2c->dbuf) || (h2c->flags & H2_CF_RCVD_SHUT))) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01004044 h2_process_demux(h2c);
4045
4046 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004047 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01004048
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004049 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01004050 h2c->flags &= ~H2_CF_DEM_DFULL;
4051 }
Olivier Houchard7505f942018-08-21 18:10:44 +02004052 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01004053
Willy Tarreaub1e600c2020-10-13 18:09:15 +02004054 if (unlikely(h2c->proxy->disabled) && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01004055 /* frontend is stopping, reload likely in progress, let's try
4056 * to announce a graceful shutdown if not yet done. We don't
4057 * care if it fails, it will be tried again later.
4058 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004059 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
Willy Tarreau8ec14062017-12-30 18:08:13 +01004060 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
4061 if (h2c->last_sid < 0)
4062 h2c->last_sid = (1U << 31) - 1;
4063 h2c_send_goaway_error(h2c, NULL);
4064 }
4065 }
4066
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004067 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004068 * If we received early data, and the handshake is done, wake
4069 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004070 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004071 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01004072 (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 +01004073 struct eb32_node *node;
4074 struct h2s *h2s;
4075
4076 h2c->flags |= H2_CF_WAIT_FOR_HS;
4077 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
4078
4079 while (node) {
4080 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01004081 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01004082 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004083 node = eb32_next(node);
4084 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004085 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004086
Christopher Fauletaade4ed2020-10-08 15:38:41 +02004087 if (conn->flags & CO_FL_ERROR || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01004088 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
4089 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
4090 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02004091 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004092
4093 if (eb_is_empty(&h2c->streams_by_id)) {
4094 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02004095 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004096 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004097 return -1;
4098 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004099
4100 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004101 if (conn->flags & CO_FL_LIST_MASK) {
4102 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004103 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004104 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4105 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004106 }
4107 else if (h2c->st0 == H2_CS_ERROR) {
4108 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004109 if (conn->flags & CO_FL_LIST_MASK) {
4110 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004111 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004112 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4113 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004114 }
4115
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004116 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01004117 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004118
Olivier Houchard53216e72018-10-10 15:46:36 +02004119 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
4120 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
4121 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02004122 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02004123 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
4124 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02004125 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02004126
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +01004127 h2c_update_timeout(h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +02004128 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004129 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004130 return 0;
4131}
4132
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004133/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004134static int h2_wake(struct connection *conn)
4135{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004136 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02004137 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004138
Willy Tarreau7838a792019-08-12 18:42:03 +02004139 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4140 ret = h2_process(h2c);
Willy Tarreau508f9892020-02-11 04:38:56 +01004141 if (ret >= 0)
4142 h2_wake_some_streams(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02004143 TRACE_LEAVE(H2_EV_H2C_WAKE);
4144 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004145}
4146
Willy Tarreauea392822017-10-31 10:02:25 +01004147/* Connection timeout management. The principle is that if there's no receipt
4148 * nor sending for a certain amount of time, the connection is closed. If the
4149 * MUX buffer still has lying data or is not allocatable, the connection is
4150 * immediately killed. If it's allocatable and empty, we attempt to send a
4151 * GOAWAY frame.
4152 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004153struct task *h2_timeout_task(struct task *t, void *context, unsigned int state)
Willy Tarreauea392822017-10-31 10:02:25 +01004154{
Olivier Houchard9f6af332018-05-25 14:04:04 +02004155 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01004156 int expired = tick_is_expired(t->expire, now_ms);
4157
Willy Tarreau7838a792019-08-12 18:42:03 +02004158 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
4159
Willy Tarreaubd42e922020-06-30 11:19:23 +02004160 if (h2c) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004161 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004162 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004163
4164 /* Somebody already stole the connection from us, so we should not
4165 * free it, we just have to free the task.
4166 */
4167 if (!t->context) {
4168 h2c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004169 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004170 goto do_leave;
4171 }
4172
4173
Willy Tarreaubd42e922020-06-30 11:19:23 +02004174 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004175 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004176 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
4177 return t;
4178 }
Willy Tarreauea392822017-10-31 10:02:25 +01004179
Willy Tarreaubd42e922020-06-30 11:19:23 +02004180 if (!h2c_may_expire(h2c)) {
4181 /* we do still have streams but all of them are idle, waiting
4182 * for the data layer, so we must not enforce the timeout here.
4183 */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004184 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004185 t->expire = TICK_ETERNITY;
4186 return t;
4187 }
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004188
Willy Tarreaubd42e922020-06-30 11:19:23 +02004189 /* We're about to destroy the connection, so make sure nobody attempts
4190 * to steal it from us.
4191 */
Christopher Fauletc5fd15d2023-03-16 11:43:05 +01004192 if (h2c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004193 conn_delete_from_tree(&h2c->conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004194
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004195 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004196 }
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004197
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004198do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02004199 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02004200
4201 if (!h2c) {
4202 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02004203 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02004204 return NULL;
4205 }
4206
4207 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01004208 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02004209 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01004210
Willy Tarreau662fafc2019-05-26 09:43:07 +02004211 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01004212 /* don't even try to send a GOAWAY, the buffer is stuck */
4213 h2c->flags |= H2_CF_GOAWAY_FAILED;
4214 }
4215
4216 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01004217 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01004218 if (h2c_send_goaway_error(h2c, NULL) <= 0)
4219 h2c->flags |= H2_CF_GOAWAY_FAILED;
4220
Willy Tarreau662fafc2019-05-26 09:43:07 +02004221 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004222 unsigned int released = 0;
4223 struct buffer *buf;
4224
4225 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
4226 if (b_data(buf)) {
4227 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
4228 if (!ret)
4229 break;
4230 b_del(buf, ret);
4231 if (b_data(buf))
4232 break;
4233 b_free(buf);
4234 released++;
4235 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02004236 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004237
4238 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01004239 offer_buffers(NULL, released);
Willy Tarreau787db9a2018-06-14 18:31:46 +02004240 }
Willy Tarreauea392822017-10-31 10:02:25 +01004241
Willy Tarreau4481e262019-10-31 15:36:30 +01004242 /* in any case this connection must not be considered idle anymore */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004243 if (h2c->conn->flags & CO_FL_LIST_MASK) {
4244 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004245 conn_delete_from_tree(&h2c->conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004246 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4247 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004248
Willy Tarreau0975f112018-03-29 15:22:59 +02004249 /* either we can release everything now or it will be done later once
4250 * the last stream closes.
4251 */
4252 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02004253 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01004254
Willy Tarreau7838a792019-08-12 18:42:03 +02004255 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01004256 return NULL;
4257}
4258
4259
Willy Tarreau62f52692017-10-08 23:01:42 +02004260/*******************************************/
4261/* functions below are used by the streams */
4262/*******************************************/
4263
4264/*
4265 * Attach a new stream to a connection
4266 * (Used for outgoing connections)
4267 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01004268static struct conn_stream *h2_attach(struct connection *conn, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02004269{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004270 struct conn_stream *cs;
4271 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004272 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004273
Willy Tarreau7838a792019-08-12 18:42:03 +02004274 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Christopher Faulet236c93b2020-07-02 09:19:54 +02004275 cs = cs_new(conn, conn->target);
Willy Tarreau7838a792019-08-12 18:42:03 +02004276 if (!cs) {
4277 TRACE_DEVEL("leaving on CS allocation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004278 return NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004279 }
Olivier Houchardf502aca2018-12-14 19:42:40 +01004280 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004281 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004282 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004283 cs_free(cs);
4284 return NULL;
4285 }
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004286
4287 /* the connection is not idle anymore, let's mark this */
4288 HA_ATOMIC_AND(&h2c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004289 xprt_set_used(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004290
Willy Tarreau7838a792019-08-12 18:42:03 +02004291 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004292 return cs;
Willy Tarreau62f52692017-10-08 23:01:42 +02004293}
4294
Willy Tarreaufafd3982018-11-18 21:29:20 +01004295/* Retrieves the first valid conn_stream from this connection, or returns NULL.
4296 * We have to scan because we may have some orphan streams. It might be
4297 * beneficial to scan backwards from the end to reduce the likeliness to find
4298 * orphans.
4299 */
4300static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
4301{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004302 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004303 struct h2s *h2s;
4304 struct eb32_node *node;
4305
4306 node = eb32_first(&h2c->streams_by_id);
4307 while (node) {
4308 h2s = container_of(node, struct h2s, by_id);
4309 if (h2s->cs)
4310 return h2s->cs;
4311 node = eb32_next(node);
4312 }
4313 return NULL;
4314}
4315
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004316static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4317{
4318 int ret = 0;
4319 struct h2c *h2c = conn->ctx;
4320
4321 switch (mux_ctl) {
4322 case MUX_STATUS:
4323 /* Only consider the mux to be ready if we're done with
4324 * the preface and settings, and we had no error.
4325 */
4326 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4327 ret |= MUX_STATUS_READY;
4328 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02004329 case MUX_EXIT_STATUS:
4330 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004331 default:
4332 return -1;
4333 }
4334}
4335
Willy Tarreau62f52692017-10-08 23:01:42 +02004336/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004337 * Destroy the mux and the associated connection, if it is no longer used
4338 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004339static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004340{
Christopher Faulet73c12072019-04-08 11:23:22 +02004341 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004342
Willy Tarreau7838a792019-08-12 18:42:03 +02004343 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02004344 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02004345 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004346 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004347}
4348
4349/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004350 * Detach the stream from the connection and possibly release the connection.
4351 */
4352static void h2_detach(struct conn_stream *cs)
4353{
Willy Tarreau60935142017-10-16 18:11:19 +02004354 struct h2s *h2s = cs->ctx;
4355 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004356 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004357
Willy Tarreau7838a792019-08-12 18:42:03 +02004358 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4359
Willy Tarreau60935142017-10-16 18:11:19 +02004360 cs->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004361 if (!h2s) {
4362 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004363 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004364 }
Willy Tarreau60935142017-10-16 18:11:19 +02004365
Willy Tarreaud9464162020-01-10 18:25:07 +01004366 /* there's no txbuf so we're certain not to be able to send anything */
4367 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004368
Olivier Houchardf502aca2018-12-14 19:42:40 +01004369 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004370 h2c = h2s->h2c;
4371 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02004372 h2c->nb_cs--;
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +01004373 if (!h2c->nb_cs)
4374 h2c->idle_start = now_ms;
4375
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004376 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
4377 !h2_frt_has_too_many_cs(h2c)) {
4378 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004379 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004380 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004381 }
Willy Tarreau60935142017-10-16 18:11:19 +02004382
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004383 /* this stream may be blocked waiting for some data to leave (possibly
4384 * an ES or RST frame), so orphan it in this case.
4385 */
Willy Tarreau3041fcc2018-03-29 15:41:32 +02004386 if (!(cs->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004387 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004388 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004389 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004390 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +01004391 /* refresh the timeout if none was active, so that the last
4392 * leaving stream may arm it.
4393 */
Willy Tarreau4e91ddb2023-03-16 18:06:19 +01004394 if (h2c->task && !tick_isset(h2c->task->expire))
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +01004395 h2c_update_timeout(h2c);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004396 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004397 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004398
Willy Tarreau45f752e2017-10-30 15:44:59 +01004399 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
4400 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
4401 /* unblock the connection if it was blocked on this
4402 * stream.
4403 */
4404 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4405 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004406 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004407 }
4408
Willy Tarreau71049cc2018-03-28 13:56:39 +02004409 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004410
Christopher Faulet9b79a102019-07-15 11:22:56 +02004411 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01004412 if (!(h2c->conn->flags &
4413 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004414 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004415 /* Add the connection in the session server list, if not already done */
4416 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4417 h2c->conn->owner = NULL;
4418 if (eb_is_empty(&h2c->streams_by_id)) {
4419 h2c->conn->mux->destroy(h2c);
4420 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4421 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004422 }
4423 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004424 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004425 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4426 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4427 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004428 return;
4429 }
4430 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004431 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004432 else {
4433 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004434 /* If the connection is owned by the session, first remove it
4435 * from its list
4436 */
4437 if (h2c->conn->owner) {
4438 session_unown_conn(h2c->conn->owner, h2c->conn);
4439 h2c->conn->owner = NULL;
4440 }
4441
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004442 /* mark that the tasklet may lose its context to another thread and
4443 * that the handler needs to check it under the idle conns lock.
4444 */
4445 HA_ATOMIC_OR(&h2c->wait_event.tasklet->state, TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004446 xprt_set_idle(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
4447
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004448 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004449 /* The server doesn't want it, let's kill the connection right away */
4450 h2c->conn->mux->destroy(h2c);
4451 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4452 return;
4453 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004454 /* At this point, the connection has been added to the
4455 * server idle list, so another thread may already have
4456 * hijacked it, so we can't do anything with it.
4457 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004458 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4459 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004460
Olivier Houchard8a786902018-12-15 16:05:40 +01004461 }
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004462 else if (!h2c->conn->hash_node->node.node.leaf_p &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004463 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02004464 !LIST_INLIST(&h2c->conn->session_list)) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004465 ebmb_insert(&__objt_server(h2c->conn->target)->per_thr[tid].avail_conns,
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004466 &h2c->conn->hash_node->node,
4467 sizeof(h2c->conn->hash_node->hash));
Christopher Fauletc5579d12020-07-01 15:45:41 +02004468 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004469 }
4470 }
4471 }
4472
Willy Tarreaue323f342018-03-28 13:51:45 +02004473 /* We don't want to close right now unless we're removing the
4474 * last stream, and either the connection is in error, or it
4475 * reached the ID already specified in a GOAWAY frame received
4476 * or sent (as seen by last_sid >= 0).
4477 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004478 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004479 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004480 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004481 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004482 }
4483 else if (h2c->task) {
Willy Tarreauf5b2c3f2022-03-18 15:57:34 +01004484 h2c_update_timeout(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004485 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004486 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004487 else
4488 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004489}
4490
Willy Tarreau88bdba32019-05-13 18:17:53 +02004491/* Performs a synchronous or asynchronous shutr(). */
4492static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004493{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004494 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004495
Willy Tarreauf983d002019-05-14 10:40:21 +02004496 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004497 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004498
Willy Tarreau7838a792019-08-12 18:42:03 +02004499 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4500
Willy Tarreau18059042019-01-31 19:12:48 +01004501 /* a connstream may require us to immediately kill the whole connection
4502 * for example because of a "tcp-request content reject" rule that is
4503 * normally used to limit abuse. In this case we schedule a goaway to
4504 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004505 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004506 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004507 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004508 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004509 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4510 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4511 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004512 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4513 /* Nothing was never sent for this stream, so reset with
4514 * REFUSED_STREAM error to let the client retry the
4515 * request.
4516 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004517 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004518 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4519 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004520 else {
4521 /* a final response was already provided, we don't want this
4522 * stream anymore. This may happen when the server responds
4523 * before the end of an upload and closes quickly (redirect,
4524 * deny, ...)
4525 */
4526 h2s_error(h2s, H2_ERR_CANCEL);
4527 }
Willy Tarreau18059042019-01-31 19:12:48 +01004528
Willy Tarreau90c32322017-11-24 08:00:30 +01004529 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004530 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004531 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004532
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004533 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004534 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004535 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004536 done:
4537 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004538 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004539 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004540add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004541 /* Let the handler know we want to shutr, and add ourselves to the
4542 * most relevant list if not yet done. h2_deferred_shut() will be
4543 * automatically called via the shut_tl tasklet when there's room
4544 * again.
4545 */
4546 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau2b718102021-04-21 07:32:39 +02004547 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004548 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004549 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004550 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004551 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004552 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004553 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004554 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004555}
4556
Willy Tarreau88bdba32019-05-13 18:17:53 +02004557/* Performs a synchronous or asynchronous shutw(). */
4558static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004559{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004560 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004561
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004562 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004563 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004564
Willy Tarreau7838a792019-08-12 18:42:03 +02004565 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4566
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004567 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01004568 /* we can cleanly close using an empty data frame only after headers */
4569
4570 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4571 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004572 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004573
4574 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004575 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004576 else
4577 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004578 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004579 /* a connstream may require us to immediately kill the whole connection
4580 * for example because of a "tcp-request content reject" rule that is
4581 * normally used to limit abuse. In this case we schedule a goaway to
4582 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004583 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004584 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004585 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004586 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004587 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4588 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4589 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004590 else {
4591 /* Nothing was never sent for this stream, so reset with
4592 * REFUSED_STREAM error to let the client retry the
4593 * request.
4594 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004595 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004596 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4597 }
Willy Tarreau18059042019-01-31 19:12:48 +01004598
Willy Tarreau90c32322017-11-24 08:00:30 +01004599 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004600 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004601 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004602
Willy Tarreau00dd0782018-03-01 16:31:34 +01004603 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004604 }
4605
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004606 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004607 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004608
4609 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4610
Willy Tarreau88bdba32019-05-13 18:17:53 +02004611 done:
4612 h2s->flags &= ~H2_SF_WANT_SHUTW;
4613 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004614
4615 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004616 /* Let the handler know we want to shutw, and add ourselves to the
4617 * most relevant list if not yet done. h2_deferred_shut() will be
4618 * automatically called via the shut_tl tasklet when there's room
4619 * again.
4620 */
4621 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau2b718102021-04-21 07:32:39 +02004622 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004623 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004624 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004625 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004626 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004627 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004628 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004629 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004630}
4631
Willy Tarreau5723f292020-01-10 15:16:57 +01004632/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004633 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4634 * and prevented the last frame from being emitted.
4635 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004636struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004637{
4638 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004639 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004640
Willy Tarreau7838a792019-08-12 18:42:03 +02004641 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4642
Willy Tarreau5723f292020-01-10 15:16:57 +01004643 if (h2s->flags & H2_SF_NOTIFIED) {
4644 /* some data processing remains to be done first */
4645 goto end;
4646 }
4647
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004648 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004649 h2_do_shutw(h2s);
4650
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004651 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004652 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004653
Willy Tarreau88bdba32019-05-13 18:17:53 +02004654 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004655 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004656 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004657
Willy Tarreau88bdba32019-05-13 18:17:53 +02004658 if (!h2s->cs) {
4659 h2s_destroy(h2s);
Willy Tarreau74163142021-03-13 11:30:19 +01004660 if (h2c_is_dead(h2c)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004661 h2_release(h2c);
Willy Tarreau74163142021-03-13 11:30:19 +01004662 t = NULL;
4663 }
Willy Tarreau88bdba32019-05-13 18:17:53 +02004664 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004665 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004666 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004667 TRACE_LEAVE(H2_EV_STRM_SHUT);
Willy Tarreau74163142021-03-13 11:30:19 +01004668 return t;
Willy Tarreau62f52692017-10-08 23:01:42 +02004669}
4670
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004671/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004672static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
4673{
4674 struct h2s *h2s = cs->ctx;
4675
Willy Tarreau7838a792019-08-12 18:42:03 +02004676 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004677 if (cs->flags & CS_FL_KILL_CONN)
4678 h2s->flags |= H2_SF_KILL_CONN;
4679
Willy Tarreau7838a792019-08-12 18:42:03 +02004680 if (mode)
4681 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004682
Willy Tarreau7838a792019-08-12 18:42:03 +02004683 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004684}
4685
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004686/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004687static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
4688{
4689 struct h2s *h2s = cs->ctx;
4690
Willy Tarreau7838a792019-08-12 18:42:03 +02004691 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004692 if (cs->flags & CS_FL_KILL_CONN)
4693 h2s->flags |= H2_SF_KILL_CONN;
4694
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004695 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004696 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004697}
4698
Christopher Faulet9b79a102019-07-15 11:22:56 +02004699/* Decode the payload of a HEADERS frame and produce the HTX request or response
4700 * depending on the connection's side. Returns a positive value on success, a
4701 * negative value on failure, or 0 if it couldn't proceed. May report connection
4702 * errors in h2c->errcode if the frame is non-decodable and the connection
4703 * unrecoverable. In absence of connection error when a failure is reported, the
4704 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004705 *
4706 * The function may fold CONTINUATION frames into the initial HEADERS frame
4707 * by removing padding and next frame header, then moving the CONTINUATION
4708 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4709 * leaving a hole between the main frame and the beginning of the next one.
4710 * The possibly remaining incomplete or next frame at the end may be moved
4711 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4712 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4713 *
4714 * A buffer at the beginning of processing may look like this :
4715 *
4716 * ,---.---------.-----.--------------.--------------.------.---.
4717 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4718 * `---^---------^-----^--------------^--------------^------^---'
4719 * | | <-----> | |
4720 * area | dpl | wrap
4721 * |<--------------> |
4722 * | dfl |
4723 * |<-------------------------------------------------->|
4724 * head data
4725 *
4726 * Padding is automatically overwritten when folding, participating to the
4727 * hole size after dfl :
4728 *
4729 * ,---.------------------------.-----.--------------.------.---.
4730 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4731 * `---^------------------------^-----^--------------^------^---'
4732 * | | <-----> | |
4733 * area | hole | wrap
4734 * |<-----------------------> |
4735 * | dfl |
4736 * |<-------------------------------------------------->|
4737 * head data
4738 *
4739 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4740 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4741 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004742 *
4743 * The <flags> field must point to either the stream's flags or to a copy of it
4744 * so that the function can update the following flags :
4745 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004746 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004747 *
4748 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4749 * decoding, in order to detect if we're dealing with a headers or a trailers
4750 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004751 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004752static 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 +02004753{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004754 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004755 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004756 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004757 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004758 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004759 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004760 int flen; // header frame len
4761 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004762 int ret = 0;
4763 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004764 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004765
Willy Tarreau7838a792019-08-12 18:42:03 +02004766 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4767
Willy Tarreauea18f862018-12-22 20:19:26 +01004768next_frame:
4769 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4770 goto leave; // incomplete input frame
4771
4772 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4773 * this case, we'll try to paste it immediately after the initial
4774 * HEADERS frame payload and kill any possible padding. The initial
4775 * frame's length will be increased to represent the concatenation
4776 * of the two frames. The next frame is read from position <tlen>
4777 * and written at position <flen> (minus padding if some is present).
4778 */
4779 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4780 struct h2_fh hdr;
4781 int clen; // CONTINUATION frame's payload length
4782
Willy Tarreau7838a792019-08-12 18:42:03 +02004783 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 +01004784 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4785 /* no more data, the buffer may be full, either due to
4786 * too large a frame or because of too large a hole that
4787 * we're going to compact at the end.
4788 */
4789 goto leave;
4790 }
4791
4792 if (hdr.ft != H2_FT_CONTINUATION) {
4793 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004794 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 +01004795 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004796 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004797 goto fail;
4798 }
4799
4800 if (hdr.sid != h2c->dsi) {
4801 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004802 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 +01004803 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004804 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004805 goto fail;
4806 }
4807
4808 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4809 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004810 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 +01004811 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4812 goto fail;
4813 }
4814
4815 /* detect when we must stop aggragating frames */
4816 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4817
4818 /* Take as much as we can of the CONTINUATION frame's payload */
4819 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4820 if (clen > hdr.len)
4821 clen = hdr.len;
4822
4823 /* Move the frame's payload over the padding, hole and frame
4824 * header. At least one of hole or dpl is null (see diagrams
4825 * above). The hole moves after the new aggragated frame.
4826 */
4827 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 +02004828 h2c->dfl += hdr.len - h2c->dpl;
Willy Tarreauea18f862018-12-22 20:19:26 +01004829 hole += h2c->dpl + 9;
4830 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004831 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 +01004832 goto next_frame;
4833 }
4834
4835 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004836
Willy Tarreau13278b42017-10-13 19:23:14 +02004837 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004838 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004839 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004840 copy = alloc_trash_chunk();
4841 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004842 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 +02004843 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4844 goto fail;
4845 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004846 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4847 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4848 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004849 }
4850
Willy Tarreau13278b42017-10-13 19:23:14 +02004851 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4852 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004853 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004854 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004855 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 +01004856 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004857 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004858 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004859 }
4860
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004861 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004862 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 +01004863 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4864 goto fail;
4865 }
4866
Willy Tarreau13278b42017-10-13 19:23:14 +02004867 hdrs += 5; // stream dep = 4, weight = 1
4868 flen -= 5;
4869 }
4870
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004871 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004872 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 +01004873 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004874 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004875 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004876
Willy Tarreau937f7602018-02-26 15:22:17 +01004877 /* we can't retry a failed decompression operation so we must be very
4878 * careful not to take any risks. In practice the output buffer is
4879 * always empty except maybe for trailers, in which case we simply have
4880 * to wait for the upper layer to finish consuming what is available.
4881 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004882 htx = htx_from_buf(rxbuf);
4883 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004884 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 +02004885 h2c->flags |= H2_CF_DEM_SFULL;
4886 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004887 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004888
Willy Tarreau25919232019-01-03 14:48:18 +01004889 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004890 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4891 sizeof(list)/sizeof(list[0]), tmp);
4892 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004893 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 +01004894 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4895 goto fail;
4896 }
4897
Willy Tarreau25919232019-01-03 14:48:18 +01004898 /* The PACK decompressor was updated, let's update the input buffer and
4899 * the parser's state to commit these changes and allow us to later
4900 * fail solely on the stream if needed.
4901 */
4902 b_del(&h2c->dbuf, h2c->dfl + hole);
4903 h2c->dfl = hole = 0;
4904 h2c->st0 = H2_CS_FRAME_H;
4905
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004906 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004907 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Christopher Fauletd0db4232021-01-22 11:46:30 +01004908 msgf |= (*flags & H2_SF_BODY_TUNNEL) ? H2_MSGF_BODY_TUNNEL: 0;
Amaury Denoyelle74162742020-12-11 17:53:05 +01004909 /* If an Extended CONNECT has been sent on this stream, set message flag
Ilya Shipitsinacf84592021-02-06 22:29:08 +05004910 * to convert 200 response to 101 htx response */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004911 msgf |= (*flags & H2_SF_EXT_CONNECT_SENT) ? H2_MSGF_EXT_CONNECT: 0;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004912
Willy Tarreau88d138e2019-01-02 19:38:14 +01004913 if (*flags & H2_SF_HEADERS_RCVD)
4914 goto trailers;
4915
4916 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004917 if (h2c->flags & H2_CF_IS_BACK)
Amaury Denoyelle74162742020-12-11 17:53:05 +01004918 outlen = h2_make_htx_response(list, htx, &msgf, body_len, upgrade_protocol);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004919 else
Willy Tarreauf86e9942023-08-08 15:38:28 +02004920 outlen = h2_make_htx_request(list, htx, &msgf, body_len,
4921 !!(((const struct session *)h2c->conn->owner)->fe->options2 & PR_O2_REQBUG_OK));
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004922
Christopher Faulet3d875582021-04-26 17:46:13 +02004923 if (outlen < 0 || htx_free_space(htx) < global.tune.maxrewrite) {
Willy Tarreau25919232019-01-03 14:48:18 +01004924 /* too large headers? this is a stream error only */
Christopher Faulet3d875582021-04-26 17:46:13 +02004925 TRACE_STATE("message headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
4926 htx->flags |= HTX_FL_PARSING_ERROR;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004927 goto fail;
4928 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004929
Willy Tarreau174b06a2018-04-25 18:13:58 +02004930 if (msgf & H2_MSGF_BODY) {
4931 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004932 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004933 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004934 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004935 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004936 }
Christopher Faulet7d247f02020-12-02 14:26:36 +01004937 if (msgf & H2_MSGF_BODYLESS_RSP)
4938 *flags |= H2_SF_BODYLESS_RESP;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004939
Christopher Fauletd0db4232021-01-22 11:46:30 +01004940 if (msgf & H2_MSGF_BODY_TUNNEL)
4941 *flags |= H2_SF_BODY_TUNNEL;
4942 else {
4943 /* Abort the tunnel attempt, if any */
4944 if (*flags & H2_SF_BODY_TUNNEL)
4945 *flags |= H2_SF_TUNNEL_ABRT;
4946 *flags &= ~H2_SF_BODY_TUNNEL;
4947 }
4948
Willy Tarreau88d138e2019-01-02 19:38:14 +01004949 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004950 /* indicate that a HEADERS frame was received for this stream, except
4951 * for 1xx responses. For 1xx responses, another HEADERS frame is
4952 * expected.
4953 */
4954 if (!(msgf & H2_MSGF_RSP_1XX))
4955 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004956
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004957 if (h2c->dff & H2_F_HEADERS_END_STREAM) {
Christopher Faulet2c681c62022-12-22 09:47:01 +01004958 if (msgf & H2_MSGF_RSP_1XX) {
4959 /* RFC9113#8.1 : HEADERS frame with the ES flag set that carries an informational status code is malformed */
4960 TRACE_STATE("invalid interim response with ES flag!", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2C_ERR|H2_EV_PROTO_ERR, h2c->conn);
4961 goto fail;
4962 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004963 /* no more data are expected for this message */
4964 htx->flags |= HTX_FL_EOM;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004965 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004966
Amaury Denoyelleefe22762020-12-11 17:53:08 +01004967 if (msgf & H2_MSGF_EXT_CONNECT)
4968 *flags |= H2_SF_EXT_CONNECT_RCVD;
4969
Willy Tarreau86277d42019-01-02 15:36:11 +01004970 /* success */
4971 ret = 1;
4972
Willy Tarreau68dd9852017-07-03 14:44:26 +02004973 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004974 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004975 * move the remaining data over it.
4976 */
4977 if (hole) {
4978 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4979 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4980 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4981 b_sub(&h2c->dbuf, hole);
4982 }
4983
Christopher Faulet07f88d72021-04-21 10:39:53 +02004984 if (b_full(&h2c->dbuf) && h2c->dfl) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004985 /* too large frames */
4986 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004987 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004988 }
4989
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004990 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004991 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004992 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004993 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004994 return ret;
4995
Willy Tarreau68dd9852017-07-03 14:44:26 +02004996 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004997 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004998 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004999
5000 trailers:
5001 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01005002 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
5003 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02005004 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 +01005005 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02005006 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau88d138e2019-01-02 19:38:14 +01005007 goto fail;
5008 }
5009
Christopher Faulet9b79a102019-07-15 11:22:56 +02005010 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02005011 if (h2_make_htx_trailers(list, htx) <= 0) {
5012 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 +02005013 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005014 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01005015 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02005016}
5017
Christopher Faulet9b79a102019-07-15 11:22:56 +02005018/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005019 * parser state is automatically updated. Returns > 0 if it could completely
5020 * send the current frame, 0 if it couldn't complete, in which case
5021 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
5022 * DATA frame can return 0 as a valid result). Stream errors are reported in
5023 * h2s->errcode and connection errors in h2c->errcode. The caller must already
5024 * have checked the frame header and ensured that the frame was complete or the
5025 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02005026 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01005027static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02005028{
5029 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02005030 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005031 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005032 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005033 struct buffer *csbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02005034 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02005035
Willy Tarreau7838a792019-08-12 18:42:03 +02005036 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5037
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005038 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02005039
Olivier Houchard638b7992018-08-16 15:41:52 +02005040 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01005041 if (!csbuf) {
5042 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02005043 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 +01005044 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005045 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005046 htx = htx_from_buf(csbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01005047
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005048try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005049 flen = h2c->dfl - h2c->dpl;
5050 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01005051 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005052
Willy Tarreauc9fa0482018-07-10 17:43:27 +02005053 if (flen > b_data(&h2c->dbuf)) {
5054 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005055 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01005056 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005057 }
5058
Christopher Faulet9b79a102019-07-15 11:22:56 +02005059 block = htx_free_data_space(htx);
5060 if (!block) {
5061 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005062 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 +02005063 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005064 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005065 if (flen > block)
5066 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005067
Christopher Faulet9b79a102019-07-15 11:22:56 +02005068 /* here, flen is the max we can copy into the output buffer */
5069 block = b_contig_data(&h2c->dbuf, 0);
5070 if (flen > block)
5071 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005072
Christopher Faulet9b79a102019-07-15 11:22:56 +02005073 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02005074 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 +02005075
Christopher Faulet9b79a102019-07-15 11:22:56 +02005076 b_del(&h2c->dbuf, sent);
5077 h2c->dfl -= sent;
5078 h2c->rcvd_c += sent;
5079 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02005080
Christopher Faulet9b79a102019-07-15 11:22:56 +02005081 if (h2s->flags & H2_SF_DATA_CLEN) {
5082 h2s->body_len -= sent;
5083 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005084 }
5085
Christopher Faulet9b79a102019-07-15 11:22:56 +02005086 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01005087 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005088 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 +01005089 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005090 }
5091
Christopher Faulet9b79a102019-07-15 11:22:56 +02005092 goto try_again;
5093
Willy Tarreau4a28da12018-01-04 14:41:00 +01005094 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005095 /* here we're done with the frame, all the payload (except padding) was
5096 * transferred.
5097 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02005098
Christopher Faulet5be651d2021-01-22 15:28:03 +01005099 if (!(h2s->flags & H2_SF_BODY_TUNNEL) && (h2c->dff & H2_F_DATA_END_STREAM)) {
5100 /* no more data are expected for this message. This add the EOM
5101 * flag but only on the response path or if no tunnel attempt
5102 * was aborted. Otherwise (request path + tunnel abrted), the
5103 * EOM was already reported.
5104 */
Christopher Faulet33724322021-02-10 09:04:59 +01005105 if ((h2c->flags & H2_CF_IS_BACK) || !(h2s->flags & H2_SF_TUNNEL_ABRT)) {
5106 /* If we receive an empty DATA frame with ES flag while the HTX
5107 * message is empty, we must be sure to push a block to be sure
5108 * the HTX EOM flag will be handled on the other side. It is a
5109 * workaround because for now it is not possible to push empty
5110 * HTX DATA block. And without this block, there is no way to
5111 * "commit" the end of the message.
5112 */
5113 if (htx_is_empty(htx)) {
5114 if (!htx_add_endof(htx, HTX_BLK_EOT))
5115 goto fail;
5116 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005117 htx->flags |= HTX_FL_EOM;
Christopher Faulet33724322021-02-10 09:04:59 +01005118 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02005119 }
5120
Willy Tarreaud1023bb2018-03-22 16:53:12 +01005121 h2c->rcvd_c += h2c->dpl;
5122 h2c->rcvd_s += h2c->dpl;
5123 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005124 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet9b79a102019-07-15 11:22:56 +02005125 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005126 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005127 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01005128 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005129 if (htx)
5130 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005131 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01005132 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005133}
5134
Willy Tarreau115e83b2018-12-01 19:17:53 +01005135/* Try to send a HEADERS frame matching HTX response present in HTX message
5136 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5137 * must check the stream's status to detect any error which might have happened
5138 * subsequently to a successful send. The htx blocks are automatically removed
5139 * from the message. The htx message is assumed to be valid since produced from
5140 * the internal code, hence it contains a start line, an optional series of
5141 * header blocks and an end of header, otherwise an invalid frame could be
5142 * emitted and the resulting htx message could be left in an inconsistent state.
5143 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005144static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005145{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005146 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01005147 struct h2c *h2c = h2s->h2c;
5148 struct htx_blk *blk;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005149 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005150 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005151 struct htx_sl *sl;
5152 enum htx_blk_type type;
5153 int es_now = 0;
5154 int ret = 0;
5155 int hdr;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005156
Willy Tarreau7838a792019-08-12 18:42:03 +02005157 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5158
Willy Tarreau115e83b2018-12-01 19:17:53 +01005159 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005160 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005161 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005162 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005163 return 0;
5164 }
5165
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005166 /* get the start line (we do have one) and the rest of the headers,
5167 * that we dump starting at header 0 */
5168 sl = NULL;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005169 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005170 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005171 type = htx_get_blk_type(blk);
5172
5173 if (type == HTX_BLK_UNUSED)
5174 continue;
5175
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005176 if (type == HTX_BLK_EOH)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005177 break;
5178
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005179 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005180 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005181 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5182 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5183 goto fail;
5184 }
5185
5186 list[hdr].n = htx_get_blk_name(htx, blk);
5187 list[hdr].v = htx_get_blk_value(htx, blk);
5188 hdr++;
5189 }
5190 else if (type == HTX_BLK_RES_SL) {
Christopher Faulet56498132021-01-29 11:39:43 +01005191 BUG_ON(sl); /* Only one start-line expected */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005192 sl = htx_get_blk_ptr(htx, blk);
5193 h2s->status = sl->info.res.status;
Christopher Faulet7d247f02020-12-02 14:26:36 +01005194 if (h2s->status == 204 || h2s->status == 304)
5195 h2s->flags |= H2_SF_BODYLESS_RESP;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005196 if (h2s->status < 100 || h2s->status > 999) {
5197 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5198 goto fail;
5199 }
5200 else if (h2s->status == 101) {
Amaury Denoyelleefe22762020-12-11 17:53:08 +01005201 if (unlikely(h2s->flags & H2_SF_EXT_CONNECT_RCVD)) {
5202 /* If an Extended CONNECT has been received, we need to convert 101 to 200 */
5203 h2s->status = 200;
5204 h2s->flags &= ~H2_SF_EXT_CONNECT_RCVD;
5205 }
5206 else {
5207 /* Otherwise, 101 responses are not supported in H2, so return a error (RFC7540#8.1.1) */
5208 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5209 goto fail;
5210 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005211 }
5212 else if ((h2s->flags & H2_SF_BODY_TUNNEL) && h2s->status >= 300) {
5213 /* Abort the tunnel attempt */
5214 h2s->flags &= ~H2_SF_BODY_TUNNEL;
5215 h2s->flags |= H2_SF_TUNNEL_ABRT;
5216 }
5217 }
5218 else {
5219 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 +01005220 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005221 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005222 }
5223
Christopher Faulet56498132021-01-29 11:39:43 +01005224 /* The start-line me be defined */
5225 BUG_ON(!sl);
5226
Willy Tarreau115e83b2018-12-01 19:17:53 +01005227 /* marker for end of headers */
5228 list[hdr].n = ist("");
5229
Willy Tarreau9c218e72019-05-26 10:08:28 +02005230 mbuf = br_tail(h2c->mbuf);
5231 retry:
5232 if (!h2_get_buf(h2c, mbuf)) {
5233 h2c->flags |= H2_CF_MUX_MALLOC;
5234 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005235 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 +02005236 return 0;
5237 }
5238
Willy Tarreau115e83b2018-12-01 19:17:53 +01005239 chunk_reset(&outbuf);
5240
5241 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005242 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5243 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005244 break;
5245 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005246 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01005247 }
5248
5249 if (outbuf.size < 9)
5250 goto full;
5251
5252 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5253 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5254 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5255 outbuf.data = 9;
5256
Willy Tarreau8a4dca02022-01-13 16:00:12 +01005257 if ((h2c->flags & (H2_CF_SHTS_UPDATED|H2_CF_DTSU_EMITTED)) == H2_CF_SHTS_UPDATED) {
5258 /* SETTINGS_HEADER_TABLE_SIZE changed, we must send an HPACK
5259 * dynamic table size update so that some clients are not
5260 * confused. In practice we only need to send the DTSU when the
5261 * advertised size is lower than the current one, and since we
5262 * don't use it and don't care about the default 4096 bytes,
5263 * we only ack it with a zero size thus we at most have to deal
5264 * with this once. See RFC7541#4.2 and #6.3 for the spec, and
5265 * below for the whole context and interoperability risks:
5266 * https://lists.w3.org/Archives/Public/ietf-http-wg/2021OctDec/0235.html
5267 */
5268 if (b_room(&outbuf) < 1)
5269 goto full;
5270 outbuf.area[outbuf.data++] = 0x20; // HPACK DTSU 0 bytes
5271
5272 /* let's not update the flags now but only once the buffer is
5273 * really committed.
5274 */
5275 }
5276
Willy Tarreau115e83b2018-12-01 19:17:53 +01005277 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01005278 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005279 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005280 goto realign_again;
5281 goto full;
5282 }
5283
5284 /* encode all headers, stop at empty name */
5285 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5286 /* these ones do not exist in H2 and must be dropped. */
5287 if (isteq(list[hdr].n, ist("connection")) ||
5288 isteq(list[hdr].n, ist("proxy-connection")) ||
5289 isteq(list[hdr].n, ist("keep-alive")) ||
5290 isteq(list[hdr].n, ist("upgrade")) ||
5291 isteq(list[hdr].n, ist("transfer-encoding")))
5292 continue;
5293
Christopher Faulet86d144c2019-08-14 16:32:25 +02005294 /* Skip all pseudo-headers */
5295 if (*(list[hdr].n.ptr) == ':')
5296 continue;
5297
Willy Tarreau115e83b2018-12-01 19:17:53 +01005298 if (isteq(list[hdr].n, ist("")))
5299 break; // end
5300
5301 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
5302 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005303 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005304 goto realign_again;
5305 goto full;
5306 }
5307 }
5308
Willy Tarreaucb985a42019-10-07 16:56:34 +02005309 /* update the frame's size */
5310 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5311
5312 if (outbuf.data > h2c->mfs + 9) {
5313 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5314 /* output full */
5315 if (b_space_wraps(mbuf))
5316 goto realign_again;
5317 goto full;
5318 }
5319 }
5320
Willy Tarreau38b5bec2021-06-17 08:40:04 +02005321 TRACE_USER("sent H2 response ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5322
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005323 /* remove all header blocks including the EOH and compute the
5324 * corresponding size.
Willy Tarreau115e83b2018-12-01 19:17:53 +01005325 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005326 ret = 0;
5327 blk = htx_get_head_blk(htx);
5328 while (blk) {
5329 type = htx_get_blk_type(blk);
5330 ret += htx_get_blksz(blk);
5331 blk = htx_remove_blk(htx, blk);
5332 /* The removed block is the EOH */
5333 if (type == HTX_BLK_EOH)
5334 break;
Christopher Faulet5be651d2021-01-22 15:28:03 +01005335 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005336
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005337 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) {
5338 /* Response already closed: add END_STREAM */
5339 es_now = 1;
5340 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005341 else if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && h2s->status >= 200) {
5342 /* EOM+empty: we may need to add END_STREAM except for 1xx
Christopher Faulet991febd2020-12-02 15:17:31 +01005343 * responses and tunneled response.
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005344 */
Christopher Faulet991febd2020-12-02 15:17:31 +01005345 if (!(h2s->flags & H2_SF_BODY_TUNNEL) || h2s->status >= 300)
5346 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005347 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005348
Willy Tarreau115e83b2018-12-01 19:17:53 +01005349 if (es_now)
5350 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5351
5352 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005353 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01005354
5355 /* indicates the HEADERS frame was sent, except for 1xx responses. For
5356 * 1xx responses, another HEADERS frame is expected.
5357 */
Christopher Faulet89899422020-12-07 18:24:43 +01005358 if (h2s->status >= 200)
Christopher Faulet0b465482019-02-19 15:14:23 +01005359 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005360
Willy Tarreau8a4dca02022-01-13 16:00:12 +01005361 if (h2c->flags & H2_CF_SHTS_UPDATED) {
5362 /* was sent above */
5363 h2c->flags |= H2_CF_DTSU_EMITTED;
Willy Tarreaub05f4dd2022-02-16 14:28:14 +01005364 h2c->flags &= ~H2_CF_SHTS_UPDATED;
Willy Tarreau8a4dca02022-01-13 16:00:12 +01005365 }
5366
Willy Tarreau115e83b2018-12-01 19:17:53 +01005367 if (es_now) {
5368 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005369 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 +01005370 if (h2s->st == H2_SS_OPEN)
5371 h2s->st = H2_SS_HLOC;
5372 else
5373 h2s_close(h2s);
5374 }
5375
5376 /* OK we could properly deliver the response */
Willy Tarreau115e83b2018-12-01 19:17:53 +01005377 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005378 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005379 return ret;
5380 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005381 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5382 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005383 h2c->flags |= H2_CF_MUX_MFULL;
5384 h2s->flags |= H2_SF_BLK_MROOM;
5385 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005386 TRACE_STATE("mux buffer full", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005387 goto end;
5388 fail:
5389 /* unparsable HTX messages, too large ones to be produced in the local
5390 * list etc go here (unrecoverable errors).
5391 */
5392 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5393 ret = 0;
5394 goto end;
5395}
5396
Willy Tarreau80739692018-10-05 11:35:57 +02005397/* Try to send a HEADERS frame matching HTX request present in HTX message
5398 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5399 * must check the stream's status to detect any error which might have happened
5400 * subsequently to a successful send. The htx blocks are automatically removed
5401 * from the message. The htx message is assumed to be valid since produced from
5402 * the internal code, hence it contains a start line, an optional series of
5403 * header blocks and an end of header, otherwise an invalid frame could be
5404 * emitted and the resulting htx message could be left in an inconsistent state.
5405 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005406static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005407{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005408 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005409 struct h2c *h2c = h2s->h2c;
5410 struct htx_blk *blk;
Willy Tarreau80739692018-10-05 11:35:57 +02005411 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005412 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005413 struct htx_sl *sl;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005414 struct ist meth, uri, auth, host = IST_NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005415 enum htx_blk_type type;
5416 int es_now = 0;
5417 int ret = 0;
5418 int hdr;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005419 int extended_connect = 0;
Willy Tarreau80739692018-10-05 11:35:57 +02005420
Willy Tarreau7838a792019-08-12 18:42:03 +02005421 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5422
Willy Tarreau80739692018-10-05 11:35:57 +02005423 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005424 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005425 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005426 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005427 return 0;
5428 }
5429
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005430 /* get the start line (we do have one) and the rest of the headers,
5431 * that we dump starting at header 0 */
5432 sl = NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005433 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005434 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005435 type = htx_get_blk_type(blk);
5436
5437 if (type == HTX_BLK_UNUSED)
5438 continue;
5439
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005440 if (type == HTX_BLK_EOH)
Willy Tarreau80739692018-10-05 11:35:57 +02005441 break;
5442
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005443 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005444 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005445 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5446 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5447 goto fail;
5448 }
Willy Tarreau80739692018-10-05 11:35:57 +02005449
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005450 list[hdr].n = htx_get_blk_name(htx, blk);
5451 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005452
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005453 /* Skip header if same name is used to add the server name */
5454 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name &&
5455 isteq(list[hdr].n, ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len)))
5456 continue;
Christopher Faulet67d58092019-10-02 10:51:38 +02005457
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005458 /* Convert connection: upgrade to Extended connect from rfc 8441 */
Christopher Faulet673504a2021-09-09 09:52:51 +02005459 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteqi(list[hdr].n, ist("connection"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005460 /* rfc 7230 #6.1 Connection = list of tokens */
5461 struct ist connection_ist = list[hdr].v;
5462 do {
5463 if (isteqi(iststop(connection_ist, ','),
5464 ist("upgrade"))) {
Amaury Denoyelle68993a12021-10-18 09:43:29 +02005465 if (!(h2c->flags & H2_CF_RCVD_RFC8441)) {
5466 TRACE_STATE("reject upgrade because of no RFC8441 support", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5467 goto fail;
5468 }
5469
Amaury Denoyellea1fa1542021-10-18 10:05:16 +02005470 TRACE_STATE("convert upgrade to extended connect method", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005471 h2s->flags |= (H2_SF_BODY_TUNNEL|H2_SF_EXT_CONNECT_SENT);
5472 sl->info.req.meth = HTTP_METH_CONNECT;
5473 meth = ist("CONNECT");
5474
5475 extended_connect = 1;
5476 break;
5477 }
5478
5479 connection_ist = istadv(istfind(connection_ist, ','), 1);
5480 } while (istlen(connection_ist));
5481 }
5482
Christopher Faulet673504a2021-09-09 09:52:51 +02005483 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteq(list[hdr].n, ist("upgrade"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005484 /* rfc 7230 #6.7 Upgrade = list of protocols
5485 * rfc 8441 #4 Extended connect = :protocol is single-valued
5486 *
5487 * only first HTTP/1 protocol is preserved
5488 */
5489 const struct ist protocol = iststop(list[hdr].v, ',');
5490 /* upgrade_protocol field is 16 bytes long in h2s */
5491 istpad(h2s->upgrade_protocol, isttrim(protocol, 15));
5492 }
5493
5494 if (isteq(list[hdr].n, ist("host")))
5495 host = list[hdr].v;
5496
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005497 hdr++;
5498 }
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005499 else if (type == HTX_BLK_REQ_SL) {
5500 BUG_ON(sl); /* Only one start-line expected */
5501 sl = htx_get_blk_ptr(htx, blk);
5502 meth = htx_sl_req_meth(sl);
5503 uri = htx_sl_req_uri(sl);
5504 if (sl->info.req.meth == HTTP_METH_HEAD)
5505 h2s->flags |= H2_SF_BODYLESS_RESP;
5506 if (unlikely(uri.len == 0)) {
5507 TRACE_ERROR("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5508 goto fail;
5509 }
5510 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005511 else {
5512 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5513 goto fail;
5514 }
Willy Tarreau80739692018-10-05 11:35:57 +02005515 }
5516
Christopher Faulet56498132021-01-29 11:39:43 +01005517 /* The start-line me be defined */
5518 BUG_ON(!sl);
5519
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005520 /* Now add the server name to a header (if requested) */
5521 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name) {
5522 struct server *srv = objt_server(h2c->conn->target);
5523
5524 if (srv) {
5525 list[hdr].n = ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len);
5526 list[hdr].v = ist(srv->id);
5527 hdr++;
5528 }
5529 }
5530
Willy Tarreau80739692018-10-05 11:35:57 +02005531 /* marker for end of headers */
5532 list[hdr].n = ist("");
5533
Willy Tarreau9c218e72019-05-26 10:08:28 +02005534 mbuf = br_tail(h2c->mbuf);
5535 retry:
5536 if (!h2_get_buf(h2c, mbuf)) {
5537 h2c->flags |= H2_CF_MUX_MALLOC;
5538 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005539 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 +02005540 return 0;
5541 }
5542
Willy Tarreau80739692018-10-05 11:35:57 +02005543 chunk_reset(&outbuf);
5544
5545 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005546 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5547 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005548 break;
5549 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005550 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005551 }
5552
5553 if (outbuf.size < 9)
5554 goto full;
5555
5556 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5557 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5558 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5559 outbuf.data = 9;
5560
5561 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005562 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005563 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005564 goto realign_again;
5565 goto full;
5566 }
5567
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005568 auth = ist(NULL);
5569
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005570 /* RFC7540 #8.3: the CONNECT method must have :
5571 * - :authority set to the URI part (host:port)
5572 * - :method set to CONNECT
5573 * - :scheme and :path omitted
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005574 *
5575 * Note that this is not applicable in case of the Extended CONNECT
5576 * protocol from rfc 8441.
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005577 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005578 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT) && !extended_connect) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005579 auth = uri;
5580
5581 if (!hpack_encode_header(&outbuf, ist(":authority"), auth)) {
5582 /* output full */
5583 if (b_space_wraps(mbuf))
5584 goto realign_again;
5585 goto full;
5586 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005587 h2s->flags |= H2_SF_BODY_TUNNEL;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005588 } else {
5589 /* other methods need a :scheme. If an authority is known from
5590 * the request line, it must be sent, otherwise only host is
5591 * sent. Host is never sent as the authority.
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005592 *
5593 * This code is also applicable for Extended CONNECT protocol
5594 * from rfc 8441.
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005595 */
5596 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005597
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005598 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5599 /* the URI seems to start with a scheme */
5600 int len = 1;
5601
5602 while (len < uri.len && uri.ptr[len] != ':')
5603 len++;
5604
5605 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5606 /* make the uri start at the authority now */
Tim Duesterhus9f75ed12021-03-02 18:57:26 +01005607 scheme = ist2(uri.ptr, len);
Tim Duesterhus154374c2021-03-02 18:57:27 +01005608 uri = istadv(uri, len + 3);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005609
5610 /* find the auth part of the URI */
Tim Duesterhus92c696e2021-02-28 16:11:36 +01005611 auth = ist2(uri.ptr, 0);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005612 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5613 auth.len++;
5614
Tim Duesterhus154374c2021-03-02 18:57:27 +01005615 uri = istadv(uri, auth.len);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005616 }
5617 }
5618
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005619 /* For Extended CONNECT, the :authority must be present.
5620 * Use host value for it.
5621 */
5622 if (unlikely(extended_connect) && isttest(host))
5623 auth = host;
5624
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005625 if (!scheme.len) {
5626 /* no explicit scheme, we're using an origin-form URI,
5627 * probably from an H1 request transcoded to H2 via an
5628 * external layer, then received as H2 without authority.
5629 * So we have to look up the scheme from the HTX flags.
5630 * In such a case only http and https are possible, and
5631 * https is the default (sent by browsers).
5632 */
5633 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5634 scheme = ist("http");
5635 else
5636 scheme = ist("https");
5637 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005638
5639 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005640 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005641 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005642 goto realign_again;
5643 goto full;
5644 }
Willy Tarreau80739692018-10-05 11:35:57 +02005645
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005646 if (auth.len && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005647 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005648 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005649 goto realign_again;
5650 goto full;
5651 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005652
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005653 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5654 * be sent as '/' or '*'.
5655 */
5656 if (unlikely(!uri.len)) {
5657 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5658 uri = ist("*");
5659 else
5660 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005661 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005662
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005663 if (!hpack_encode_path(&outbuf, uri)) {
5664 /* output full */
5665 if (b_space_wraps(mbuf))
5666 goto realign_again;
5667 goto full;
5668 }
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005669
5670 /* encode the pseudo-header protocol from rfc8441 if using
5671 * Extended CONNECT method.
5672 */
5673 if (unlikely(extended_connect)) {
5674 const struct ist protocol = ist(h2s->upgrade_protocol);
5675 if (isttest(protocol)) {
5676 if (!hpack_encode_header(&outbuf,
5677 ist(":protocol"),
5678 protocol)) {
5679 /* output full */
5680 if (b_space_wraps(mbuf))
5681 goto realign_again;
5682 goto full;
5683 }
5684 }
5685 }
Willy Tarreau80739692018-10-05 11:35:57 +02005686 }
5687
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005688 /* encode all headers, stop at empty name. Host is only sent if we
5689 * do not provide an authority.
5690 */
Willy Tarreau80739692018-10-05 11:35:57 +02005691 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005692 struct ist n = list[hdr].n;
5693 struct ist v = list[hdr].v;
5694
Willy Tarreau80739692018-10-05 11:35:57 +02005695 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005696 if (isteq(n, ist("connection")) ||
5697 (auth.len && isteq(n, ist("host"))) ||
5698 isteq(n, ist("proxy-connection")) ||
5699 isteq(n, ist("keep-alive")) ||
5700 isteq(n, ist("upgrade")) ||
5701 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005702 continue;
5703
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005704 if (isteq(n, ist("te"))) {
5705 /* "te" may only be sent with "trailers" if this value
5706 * is present, otherwise it must be deleted.
5707 */
5708 v = istist(v, ist("trailers"));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01005709 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005710 continue;
5711 v = ist("trailers");
5712 }
5713
Christopher Faulet86d144c2019-08-14 16:32:25 +02005714 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005715 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005716 continue;
5717
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005718 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005719 break; // end
5720
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005721 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005722 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005723 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005724 goto realign_again;
5725 goto full;
5726 }
5727 }
5728
Willy Tarreaucb985a42019-10-07 16:56:34 +02005729 /* update the frame's size */
5730 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5731
5732 if (outbuf.data > h2c->mfs + 9) {
5733 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5734 /* output full */
5735 if (b_space_wraps(mbuf))
5736 goto realign_again;
5737 goto full;
5738 }
5739 }
5740
Willy Tarreau38b5bec2021-06-17 08:40:04 +02005741 TRACE_USER("sent H2 request ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5742
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005743 /* remove all header blocks including the EOH and compute the
5744 * corresponding size.
Willy Tarreau80739692018-10-05 11:35:57 +02005745 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005746 ret = 0;
5747 blk = htx_get_head_blk(htx);
5748 while (blk) {
5749 type = htx_get_blk_type(blk);
5750 ret += htx_get_blksz(blk);
5751 blk = htx_remove_blk(htx, blk);
5752 /* The removed block is the EOH */
5753 if (type == HTX_BLK_EOH)
5754 break;
Christopher Fauletd0db4232021-01-22 11:46:30 +01005755 }
Willy Tarreau80739692018-10-05 11:35:57 +02005756
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005757 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) {
5758 /* Request already closed: add END_STREAM */
Willy Tarreau80739692018-10-05 11:35:57 +02005759 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005760 }
5761 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5762 /* EOM+empty: we may need to add END_STREAM (except for CONNECT
5763 * request)
5764 */
5765 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5766 es_now = 1;
5767 }
Willy Tarreau80739692018-10-05 11:35:57 +02005768
Willy Tarreau80739692018-10-05 11:35:57 +02005769 if (es_now)
5770 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5771
5772 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005773 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005774 h2s->flags |= H2_SF_HEADERS_SENT;
5775 h2s->st = H2_SS_OPEN;
5776
Willy Tarreau80739692018-10-05 11:35:57 +02005777 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005778 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 +02005779 // trim any possibly pending data (eg: inconsistent content-length)
5780 h2s->flags |= H2_SF_ES_SENT;
5781 h2s->st = H2_SS_HLOC;
5782 }
5783
Willy Tarreau80739692018-10-05 11:35:57 +02005784 end:
5785 return ret;
5786 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005787 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5788 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005789 h2c->flags |= H2_CF_MUX_MFULL;
5790 h2s->flags |= H2_SF_BLK_MROOM;
5791 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005792 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 +02005793 goto end;
5794 fail:
5795 /* unparsable HTX messages, too large ones to be produced in the local
5796 * list etc go here (unrecoverable errors).
5797 */
5798 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5799 ret = 0;
5800 goto end;
5801}
5802
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005803/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005804 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5805 * caller must check the stream's status to detect any error which might have
5806 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005807 * consumed, or zero if nothing done.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005808 */
Christopher Faulet142854b2020-12-02 15:12:40 +01005809static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005810{
5811 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005812 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005813 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005814 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005815 size_t total = 0;
5816 int es_now = 0;
5817 int bsize; /* htx block size */
5818 int fsize; /* h2 frame size */
5819 struct htx_blk *blk;
5820 enum htx_blk_type type;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005821 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005822
Willy Tarreau7838a792019-08-12 18:42:03 +02005823 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5824
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005825 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005826 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005827 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005828 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005829 goto end;
5830 }
5831
Willy Tarreau98de12a2018-12-12 07:03:00 +01005832 htx = htx_from_buf(buf);
5833
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005834 /* We only come here with HTX_BLK_DATA blocks */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005835
5836 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005837 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005838 goto end;
5839
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005840 if ((h2c->flags & H2_CF_IS_BACK) &&
Christopher Fauletf95f8762021-01-22 11:59:07 +01005841 (h2s->flags & (H2_SF_HEADERS_RCVD|H2_SF_BODY_TUNNEL)) == H2_SF_BODY_TUNNEL) {
5842 /* The response HEADERS frame not received yet. Thus the tunnel
5843 * is not fully established yet. In this situation, we block
5844 * data sending.
5845 */
5846 h2s->flags |= H2_SF_BLK_MBUSY;
5847 TRACE_STATE("Request DATA frame blocked waiting for tunnel establishment", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5848 goto end;
5849 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01005850 else if ((h2c->flags & H2_CF_IS_BACK) && (h2s->flags & H2_SF_TUNNEL_ABRT)) {
5851 /* a tunnel attempt was aborted but the is pending raw data to xfer to the server.
5852 * Thus the stream is closed with the CANCEL error. The error will be reported to
5853 * the upper layer as aserver abort. But at this stage there is nothing more we can
5854 * do. We just wait for the end of the response to be sure to not truncate it.
5855 */
5856 if (!(h2s->flags & H2_SF_ES_RCVD)) {
5857 TRACE_STATE("Request DATA frame blocked waiting end of aborted tunnel", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5858 h2s->flags |= H2_SF_BLK_MBUSY;
5859 }
5860 else {
5861 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5862 h2s_error(h2s, H2_ERR_CANCEL);
5863 }
5864 goto end;
5865 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005866
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005867 blk = htx_get_head_blk(htx);
5868 type = htx_get_blk_type(blk);
5869 bsize = htx_get_blksz(blk);
5870 fsize = bsize;
5871 trunc_out = 0;
5872 if (type != HTX_BLK_DATA)
5873 goto end;
5874
Willy Tarreau9c218e72019-05-26 10:08:28 +02005875 mbuf = br_tail(h2c->mbuf);
5876 retry:
5877 if (!h2_get_buf(h2c, mbuf)) {
5878 h2c->flags |= H2_CF_MUX_MALLOC;
5879 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005880 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 +02005881 goto end;
5882 }
5883
Willy Tarreau98de12a2018-12-12 07:03:00 +01005884 /* Perform some optimizations to reduce the number of buffer copies.
5885 * First, if the mux's buffer is empty and the htx area contains
5886 * exactly one data block of the same size as the requested count, and
5887 * this count fits within the frame size, the stream's window size, and
5888 * the connection's window size, then it's possible to simply swap the
5889 * caller's buffer with the mux's output buffer and adjust offsets and
5890 * length to match the entire DATA HTX block in the middle. In this
5891 * case we perform a true zero-copy operation from end-to-end. This is
5892 * the situation that happens all the time with large files. Second, if
5893 * this is not possible, but the mux's output buffer is empty, we still
5894 * have an opportunity to avoid the copy to the intermediary buffer, by
5895 * making the intermediary buffer's area point to the output buffer's
5896 * area. In this case we want to skip the HTX header to make sure that
5897 * copies remain aligned and that this operation remains possible all
5898 * the time. This goes for headers, data blocks and any data extracted
5899 * from the HTX blocks.
5900 */
5901 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005902 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005903 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005904 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005905
Willy Tarreaubcc45952019-05-26 10:05:50 +02005906 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005907 /* Too bad there are data left there. We're willing to memcpy/memmove
5908 * up to 1/4 of the buffer, which means that it's OK to copy a large
5909 * frame into a buffer containing few data if it needs to be realigned,
5910 * and that it's also OK to copy few data without realigning. Otherwise
5911 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005912 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005913 if (fsize + 9 <= b_room(mbuf) &&
5914 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005915 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5916 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 +01005917 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005918 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005919
Willy Tarreau9c218e72019-05-26 10:08:28 +02005920 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5921 goto retry;
5922
Willy Tarreau98de12a2018-12-12 07:03:00 +01005923 h2c->flags |= H2_CF_MUX_MFULL;
5924 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005925 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 +01005926 goto end;
5927 }
5928
Christopher Faulet925abdf2021-04-27 22:51:07 +02005929 if (htx->flags & HTX_FL_EOM) {
5930 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5931 * message)
5932 */
5933 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5934 es_now = 1;
5935 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005936 /* map an H2 frame to the HTX block so that we can put the
5937 * frame header there.
5938 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005939 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5940 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005941
5942 /* prepend an H2 DATA frame header just before the DATA block */
5943 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5944 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
Christopher Faulet925abdf2021-04-27 22:51:07 +02005945 if (es_now)
5946 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005947 h2_set_frame_size(outbuf.area, fsize);
5948
5949 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005950 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005951 h2c->mws -= fsize;
5952
5953 /* and exchange with our old area */
5954 buf->area = old_area;
5955 buf->data = buf->head = 0;
5956 total += fsize;
Christopher Faulet925abdf2021-04-27 22:51:07 +02005957 fsize = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005958
5959 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 +02005960 goto out;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005961 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005962
Willy Tarreau98de12a2018-12-12 07:03:00 +01005963 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005964 /* for DATA and EOM we'll have to emit a frame, even if empty */
5965
5966 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005967 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5968 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005969 break;
5970 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005971 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005972 }
5973
5974 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005975 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5976 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005977 h2c->flags |= H2_CF_MUX_MFULL;
5978 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005979 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005980 goto end;
5981 }
5982
5983 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5984 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5985 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5986 outbuf.data = 9;
5987
5988 /* we have in <fsize> the exact number of bytes we need to copy from
5989 * the HTX buffer. We need to check this against the connection's and
5990 * the stream's send windows, and to ensure that this fits in the max
5991 * frame size and in the buffer's available space minus 9 bytes (for
5992 * the frame header). The connection's flow control is applied last so
5993 * that we can use a separate list of streams which are immediately
5994 * unblocked on window opening. Note: we don't implement padding.
5995 */
5996
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005997 if (!fsize)
5998 goto send_empty;
5999
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02006000 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006001 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreau2b718102021-04-21 07:32:39 +02006002 if (LIST_INLIST(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02006003 LIST_DEL_INIT(&h2s->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02006004 LIST_APPEND(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02006005 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 +01006006 goto end;
6007 }
6008
Willy Tarreauee573762018-12-04 15:25:57 +01006009 if (fsize > count)
6010 fsize = count;
6011
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02006012 if (fsize > h2s_mws(h2s))
6013 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006014
6015 if (h2c->mfs && fsize > h2c->mfs)
6016 fsize = h2c->mfs; // >0
6017
6018 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02006019 /* It doesn't fit at once. If it at least fits once split and
6020 * the amount of data to move is low, let's defragment the
6021 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006022 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006023 if (b_space_wraps(mbuf) &&
6024 (fsize + 9 <= b_room(mbuf)) &&
6025 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006026 goto realign_again;
6027 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01006028 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006029
6030 if (fsize <= 0) {
6031 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02006032 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6033 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006034 h2c->flags |= H2_CF_MUX_MFULL;
6035 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006036 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006037 goto end;
6038 }
6039 }
6040
6041 if (h2c->mws <= 0) {
6042 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02006043 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 +01006044 goto end;
6045 }
6046
6047 if (fsize > h2c->mws)
6048 fsize = h2c->mws;
6049
6050 /* now let's copy this this into the output buffer */
6051 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02006052 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01006053 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01006054 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006055
6056 send_empty:
6057 /* update the frame's size */
6058 h2_set_frame_size(outbuf.area, fsize);
6059
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006060 /* consume incoming HTX block */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006061 total += fsize;
6062 if (fsize == bsize) {
6063 htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006064 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
6065 /* EOM+empty: we may need to add END_STREAM (except for tunneled
6066 * message)
6067 */
6068 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
6069 es_now = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02006070 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006071 }
6072 else {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006073 /* we've truncated this block */
6074 htx_cut_data_blk(htx, blk, fsize);
6075 }
6076
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006077 if (es_now)
6078 outbuf.area[4] |= H2_F_DATA_END_STREAM;
6079
6080 /* commit the H2 response */
6081 b_add(mbuf, fsize + 9);
6082
Christopher Faulet925abdf2021-04-27 22:51:07 +02006083 out:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006084 if (es_now) {
6085 if (h2s->st == H2_SS_OPEN)
6086 h2s->st = H2_SS_HLOC;
6087 else
6088 h2s_close(h2s);
6089
6090 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02006091 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 +01006092 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006093 else if (fsize) {
6094 if (fsize == bsize) {
6095 TRACE_DEVEL("more data may be available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6096 goto new_frame;
6097 }
6098 else if (trunc_out) {
6099 /* we've truncated this block */
6100 goto new_frame;
6101 }
6102 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006103
6104 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006105 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006106 return total;
6107}
6108
Christopher Faulet991febd2020-12-02 15:17:31 +01006109/* Skip the message payload (DATA blocks) and emit an empty DATA frame with the
6110 * ES flag set for stream <h2s>. This function is called for response known to
6111 * have no payload. Only DATA blocks are skipped. This means the trailers are
Ilya Shipitsinacf84592021-02-06 22:29:08 +05006112 * still emitted. The caller must check the stream's status to detect any error
Christopher Faulet991febd2020-12-02 15:17:31 +01006113 * which might have happened subsequently to a successful send. Returns the
6114 * number of data bytes consumed, or zero if nothing done.
6115 */
6116static size_t h2s_skip_data(struct h2s *h2s, struct buffer *buf, size_t count)
6117{
6118 struct h2c *h2c = h2s->h2c;
6119 struct htx *htx;
6120 int bsize; /* htx block size */
6121 int fsize; /* h2 frame size */
6122 struct htx_blk *blk;
6123 enum htx_blk_type type;
6124 size_t total = 0;
6125
6126 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6127
6128 if (h2c_mux_busy(h2c, h2s)) {
6129 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6130 h2s->flags |= H2_SF_BLK_MBUSY;
6131 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6132 goto end;
6133 }
6134
6135 htx = htx_from_buf(buf);
6136
6137 next_data:
6138 if (!count || htx_is_empty(htx))
6139 goto end;
6140 blk = htx_get_head_blk(htx);
6141 type = htx_get_blk_type(blk);
6142 bsize = htx_get_blksz(blk);
6143 fsize = bsize;
6144 if (type != HTX_BLK_DATA)
6145 goto end;
6146
6147 if (fsize > count)
6148 fsize = count;
6149
6150 if (fsize != bsize)
6151 goto skip_data;
6152
6153 if (!(htx->flags & HTX_FL_EOM) || !htx_is_unique_blk(htx, blk))
6154 goto skip_data;
6155
6156 /* Here, it is the last block and it is also the end of the message. So
6157 * we can emit an empty DATA frame with the ES flag set
6158 */
6159 if (h2_send_empty_data_es(h2s) <= 0)
6160 goto end;
6161
6162 if (h2s->st == H2_SS_OPEN)
6163 h2s->st = H2_SS_HLOC;
6164 else
6165 h2s_close(h2s);
6166
6167 skip_data:
6168 /* consume incoming HTX block */
6169 total += fsize;
6170 if (fsize == bsize) {
6171 TRACE_DEVEL("more data may be available, trying to skip another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6172 htx_remove_blk(htx, blk);
6173 goto next_data;
6174 }
6175 else {
6176 /* we've truncated this block */
6177 htx_cut_data_blk(htx, blk, fsize);
6178 }
6179
6180 end:
6181 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6182 return total;
6183}
6184
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006185/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
6186 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
6187 * processed. The caller must check the stream's status to detect any error
6188 * which might have happened subsequently to a successful send. The htx blocks
6189 * are automatically removed from the message. The htx message is assumed to be
6190 * valid since produced from the internal code. Processing stops when meeting
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006191 * the EOT, which *is* removed. All trailers are processed at once and sent as a
6192 * single frame. The ES flag is always set.
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006193 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006194static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006195{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02006196 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006197 struct h2c *h2c = h2s->h2c;
6198 struct htx_blk *blk;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006199 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02006200 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006201 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006202 int ret = 0;
6203 int hdr;
6204 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006205
Willy Tarreau7838a792019-08-12 18:42:03 +02006206 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
6207
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006208 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006209 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006210 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02006211 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006212 goto end;
6213 }
6214
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006215 /* get trailers. */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006216 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006217 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006218 type = htx_get_blk_type(blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006219
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006220 if (type == HTX_BLK_UNUSED)
6221 continue;
6222
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006223 if (type == HTX_BLK_EOT)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006224 break;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006225 if (type == HTX_BLK_TLR) {
6226 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
6227 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
6228 goto fail;
6229 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006230
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006231 list[hdr].n = htx_get_blk_name(htx, blk);
6232 list[hdr].v = htx_get_blk_value(htx, blk);
6233 hdr++;
6234 }
6235 else {
6236 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 +01006237 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02006238 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006239 }
6240
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006241 /* marker for end of trailers */
6242 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006243
Willy Tarreau9c218e72019-05-26 10:08:28 +02006244 mbuf = br_tail(h2c->mbuf);
6245 retry:
6246 if (!h2_get_buf(h2c, mbuf)) {
6247 h2c->flags |= H2_CF_MUX_MALLOC;
6248 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006249 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 +02006250 goto end;
6251 }
6252
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006253 chunk_reset(&outbuf);
6254
6255 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006256 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6257 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006258 break;
6259 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006260 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006261 }
6262
6263 if (outbuf.size < 9)
6264 goto full;
6265
6266 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
6267 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
6268 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6269 outbuf.data = 9;
6270
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006271 /* encode all headers */
6272 for (idx = 0; idx < hdr; idx++) {
6273 /* these ones do not exist in H2 or must not appear in
6274 * trailers and must be dropped.
6275 */
6276 if (isteq(list[idx].n, ist("host")) ||
6277 isteq(list[idx].n, ist("content-length")) ||
6278 isteq(list[idx].n, ist("connection")) ||
6279 isteq(list[idx].n, ist("proxy-connection")) ||
6280 isteq(list[idx].n, ist("keep-alive")) ||
6281 isteq(list[idx].n, ist("upgrade")) ||
6282 isteq(list[idx].n, ist("te")) ||
6283 isteq(list[idx].n, ist("transfer-encoding")))
6284 continue;
6285
Christopher Faulet86d144c2019-08-14 16:32:25 +02006286 /* Skip all pseudo-headers */
6287 if (*(list[idx].n.ptr) == ':')
6288 continue;
6289
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006290 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
6291 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006292 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006293 goto realign_again;
6294 goto full;
6295 }
6296 }
6297
Willy Tarreau5121e5d2019-05-06 15:13:41 +02006298 if (outbuf.data == 9) {
6299 /* here we have a problem, we have nothing to emit (either we
6300 * received an empty trailers block followed or we removed its
6301 * contents above). Because of this we can't send a HEADERS
6302 * frame, so we have to cheat and instead send an empty DATA
6303 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01006304 */
6305 outbuf.area[3] = H2_FT_DATA;
6306 outbuf.area[4] = H2_F_DATA_END_STREAM;
6307 }
6308
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006309 /* update the frame's size */
6310 h2_set_frame_size(outbuf.area, outbuf.data - 9);
6311
Willy Tarreau572d9f52019-10-11 16:58:37 +02006312 if (outbuf.data > h2c->mfs + 9) {
6313 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
6314 /* output full */
6315 if (b_space_wraps(mbuf))
6316 goto realign_again;
6317 goto full;
6318 }
6319 }
6320
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006321 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02006322 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 +02006323 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006324 h2s->flags |= H2_SF_ES_SENT;
6325
6326 if (h2s->st == H2_SS_OPEN)
6327 h2s->st = H2_SS_HLOC;
6328 else
6329 h2s_close(h2s);
6330
6331 /* OK we could properly deliver the response */
6332 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02006333 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006334 ret = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006335 blk = htx_get_head_blk(htx);
6336 while (blk) {
6337 type = htx_get_blk_type(blk);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006338 ret += htx_get_blksz(blk);
6339 blk = htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006340 /* The removed block is the EOT */
6341 if (type == HTX_BLK_EOT)
6342 break;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006343 }
6344
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006345 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006346 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006347 return ret;
6348 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02006349 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6350 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006351 h2c->flags |= H2_CF_MUX_MFULL;
6352 h2s->flags |= H2_SF_BLK_MROOM;
6353 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006354 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 +01006355 goto end;
6356 fail:
6357 /* unparsable HTX messages, too large ones to be produced in the local
6358 * list etc go here (unrecoverable errors).
6359 */
6360 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
6361 ret = 0;
6362 goto end;
6363}
6364
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006365/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6366 * event subscriber <es> is not allowed to change from a previous call as long
6367 * as at least one event is still subscribed. The <event_type> must only be a
6368 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006369 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006370static int h2_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02006371{
Olivier Houchard6ff20392018-07-17 18:46:31 +02006372 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02006373 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006374
Willy Tarreau7838a792019-08-12 18:42:03 +02006375 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006376
6377 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006378 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006379
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006380 es->events |= event_type;
6381 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006382
6383 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006384 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006385
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006386 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006387 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02006388 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02006389 !LIST_INLIST(&h2s->list)) {
Olivier Houchardf8338152019-05-14 17:50:32 +02006390 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02006391 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Olivier Houchardf8338152019-05-14 17:50:32 +02006392 else
Willy Tarreau2b718102021-04-21 07:32:39 +02006393 LIST_APPEND(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02006394 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02006395 }
Willy Tarreau7838a792019-08-12 18:42:03 +02006396 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006397 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006398}
6399
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006400/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6401 * The <es> pointer is not allowed to differ from the one passed to the
6402 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006403 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006404static int h2_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006405{
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006406 struct h2s *h2s = cs->ctx;
6407
Willy Tarreau7838a792019-08-12 18:42:03 +02006408 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006409
6410 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006411 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006412
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006413 es->events &= ~event_type;
6414 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01006415 h2s->subs = NULL;
6416
6417 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006418 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006419
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006420 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006421 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006422 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006423 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
6424 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02006425 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01006426
Willy Tarreau7838a792019-08-12 18:42:03 +02006427 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006428 return 0;
6429}
6430
6431
Christopher Faulet93a466b2021-09-21 15:50:55 +02006432/* Called from the upper layer, to receive data
6433 *
6434 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
6435 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
6436 * means the caller wants to flush input data (from the mux buffer and the
6437 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
6438 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
6439 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
6440 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
6441 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
6442 * copy as much data as possible.
6443 */
Olivier Houchard511efea2018-08-16 15:30:32 +02006444static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
6445{
Olivier Houchard638b7992018-08-16 15:41:52 +02006446 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01006447 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01006448 struct htx *h2s_htx = NULL;
6449 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02006450 size_t ret = 0;
6451
Willy Tarreau7838a792019-08-12 18:42:03 +02006452 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
6453
Olivier Houchard511efea2018-08-16 15:30:32 +02006454 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006455 h2s_htx = htx_from_buf(&h2s->rxbuf);
Christopher Faulet83f3d3d2022-02-21 15:12:54 +01006456 if (htx_is_empty(h2s_htx) && !(h2s_htx->flags & HTX_FL_PARSING_ERROR)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02006457 /* Here htx_to_buf() will set buffer data to 0 because
6458 * the HTX is empty.
6459 */
6460 htx_to_buf(h2s_htx, &h2s->rxbuf);
6461 goto end;
6462 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01006463
Christopher Faulet9b79a102019-07-15 11:22:56 +02006464 ret = h2s_htx->data;
6465 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01006466
Christopher Faulet9b79a102019-07-15 11:22:56 +02006467 /* <buf> is empty and the message is small enough, swap the
6468 * buffers. */
6469 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01006470 htx_to_buf(buf_htx, buf);
6471 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006472 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
6473 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01006474 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02006475
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006476 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_UNUSED);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006477
6478 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
6479 buf_htx->flags |= HTX_FL_PARSING_ERROR;
6480 if (htx_is_empty(buf_htx))
6481 cs->flags |= CS_FL_EOI;
Willy Tarreau86724e22018-12-01 23:19:43 +01006482 }
Christopher Faulet810df062020-07-22 16:20:34 +02006483 else if (htx_is_empty(h2s_htx))
Christopher Faulet42432f32020-11-20 17:43:16 +01006484 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006485
Christopher Faulet9b79a102019-07-15 11:22:56 +02006486 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
6487 htx_to_buf(buf_htx, buf);
6488 htx_to_buf(h2s_htx, &h2s->rxbuf);
6489 ret -= h2s_htx->data;
6490
Christopher Faulet37070b22019-02-14 15:12:14 +01006491 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02006492 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01006493 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006494 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01006495 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006496 if (h2s->flags & H2_SF_ES_RCVD) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02006497 cs->flags |= CS_FL_EOI;
Christopher Fauletd0db4232021-01-22 11:46:30 +01006498 /* Add EOS flag for tunnel */
6499 if (h2s->flags & H2_SF_BODY_TUNNEL)
6500 cs->flags |= CS_FL_EOS;
6501 }
Christopher Fauletaade4ed2020-10-08 15:38:41 +02006502 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02006503 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01006504 if (cs->flags & CS_FL_ERR_PENDING)
6505 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02006506 if (b_size(&h2s->rxbuf)) {
6507 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01006508 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02006509 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006510 }
6511
Willy Tarreau082f5592018-11-25 08:03:32 +01006512 if (ret && h2c->dsi == h2s->id) {
6513 /* demux is blocking on this stream's buffer */
6514 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006515 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006516 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006517
Willy Tarreau7838a792019-08-12 18:42:03 +02006518 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006519 return ret;
6520}
6521
Olivier Houchardd846c262018-10-19 17:24:29 +02006522
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006523/* Called from the upper layer, to send data from buffer <buf> for no more than
6524 * <count> bytes. Returns the number of bytes effectively sent. Some status
6525 * flags may be updated on the conn_stream.
6526 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02006527static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006528{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006529 struct h2s *h2s = cs->ctx;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006530 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006531 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006532 struct htx *htx;
6533 struct htx_blk *blk;
6534 enum htx_blk_type btype;
6535 uint32_t bsize;
6536 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006537
Willy Tarreau7838a792019-08-12 18:42:03 +02006538 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6539
Olivier Houchardd360ac62019-03-22 17:37:16 +01006540 /* If we were not just woken because we wanted to send but couldn't,
6541 * and there's somebody else that is waiting to send, do nothing,
6542 * we will subscribe later and be put at the end of the list
6543 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006544 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006545 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6546 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 +01006547 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006548 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006549 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006550
Willy Tarreau7838a792019-08-12 18:42:03 +02006551 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6552 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 +02006553 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006554 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006555
Willy Tarreaucab22952019-10-31 15:48:18 +01006556 if (h2s->h2c->st0 >= H2_CS_ERROR) {
6557 cs->flags |= CS_FL_ERROR;
6558 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);
6559 return 0;
6560 }
6561
Christopher Faulet9b79a102019-07-15 11:22:56 +02006562 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006563
Willy Tarreau0bad0432018-06-14 16:54:01 +02006564 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006565 h2s->flags |= H2_SF_OUTGOING_DATA;
6566
Willy Tarreau751f2d02018-10-05 09:35:00 +02006567 if (h2s->id == 0) {
6568 int32_t id = h2c_get_next_sid(h2s->h2c);
6569
6570 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02006571 cs->flags |= CS_FL_ERROR;
Willy Tarreau7838a792019-08-12 18:42:03 +02006572 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 +02006573 return 0;
6574 }
6575
6576 eb32_delete(&h2s->by_id);
6577 h2s->by_id.key = h2s->id = id;
6578 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006579 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006580 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6581 }
6582
Christopher Faulet9b79a102019-07-15 11:22:56 +02006583 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6584 count && !htx_is_empty(htx)) {
6585 idx = htx_get_head(htx);
6586 blk = htx_get_blk(htx, idx);
6587 btype = htx_get_blk_type(blk);
6588 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006589
Christopher Faulet9b79a102019-07-15 11:22:56 +02006590 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006591 case HTX_BLK_REQ_SL:
6592 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006593 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006594 if (ret > 0) {
6595 total += ret;
6596 count -= ret;
6597 if (ret < bsize)
6598 goto done;
6599 }
6600 break;
6601
Willy Tarreau115e83b2018-12-01 19:17:53 +01006602 case HTX_BLK_RES_SL:
6603 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006604 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006605 if (ret > 0) {
6606 total += ret;
6607 count -= ret;
6608 if (ret < bsize)
6609 goto done;
6610 }
6611 break;
6612
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006613 case HTX_BLK_DATA:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006614 /* all these cause the emission of a DATA frame (possibly empty) */
Christopher Faulet991febd2020-12-02 15:17:31 +01006615 if (!(h2s->h2c->flags & H2_CF_IS_BACK) &&
6616 (h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BODYLESS_RESP)) == H2_SF_BODYLESS_RESP)
6617 ret = h2s_skip_data(h2s, buf, count);
6618 else
6619 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006620 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006621 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006622 total += ret;
6623 count -= ret;
6624 if (ret < bsize)
6625 goto done;
6626 }
6627 break;
6628
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006629 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006630 case HTX_BLK_EOT:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006631 /* This is the first trailers block, all the subsequent ones */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006632 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006633 if (ret > 0) {
6634 total += ret;
6635 count -= ret;
6636 if (ret < bsize)
6637 goto done;
6638 }
6639 break;
6640
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006641 default:
6642 htx_remove_blk(htx, blk);
6643 total += bsize;
6644 count -= bsize;
6645 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006646 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006647 }
6648
Christopher Faulet9b79a102019-07-15 11:22:56 +02006649 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006650 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006651 /* trim any possibly pending data after we close (extra CR-LF,
6652 * unprocessed trailers, abnormal extra data, ...)
6653 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006654 total += count;
6655 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006656 }
6657
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006658 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006659 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006660 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 +01006661 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006662 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006663 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006664 }
6665
Christopher Faulet9b79a102019-07-15 11:22:56 +02006666 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006667
Olivier Houchard7505f942018-08-21 18:10:44 +02006668 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006669 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006670 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 +02006671 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006672 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006673
Olivier Houchard7505f942018-08-21 18:10:44 +02006674 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006675 /* If we're waiting for flow control, and we got a shutr on the
6676 * connection, we will never be unlocked, so add an error on
6677 * the conn_stream.
6678 */
6679 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
6680 !b_data(&h2s->h2c->dbuf) &&
6681 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006682 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 +01006683 if (cs->flags & CS_FL_EOS)
6684 cs->flags |= CS_FL_ERROR;
6685 else
6686 cs->flags |= CS_FL_ERR_PENDING;
6687 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006688
Willy Tarreau5723f292020-01-10 15:16:57 +01006689 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6690 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006691 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006692 LIST_DEL_INIT(&h2s->list);
6693 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006694
Willy Tarreau7838a792019-08-12 18:42:03 +02006695 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006696 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006697}
6698
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006699/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01006700static int h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006701{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01006702 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01006703 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006704 struct eb32_node *node;
6705 int fctl_cnt = 0;
6706 int send_cnt = 0;
6707 int tree_cnt = 0;
6708 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02006709 struct buffer *hmbuf, *tmbuf;
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006710 int ret = 0;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006711
6712 if (!h2c)
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006713 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006714
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006715 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006716 fctl_cnt++;
6717
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006718 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006719 send_cnt++;
6720
Willy Tarreau3af37712018-12-18 14:34:41 +01006721 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006722 node = eb32_first(&h2c->streams_by_id);
6723 while (node) {
6724 h2s = container_of(node, struct h2s, by_id);
6725 tree_cnt++;
6726 if (!h2s->cs)
6727 orph_cnt++;
6728 node = eb32_next(node);
6729 }
6730
Willy Tarreau60f62682019-05-26 11:32:27 +02006731 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006732 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006733 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau987c0632018-12-18 10:32:05 +01006734 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02006735 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
6736 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006737 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau616ac812018-07-24 14:12:42 +02006738 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006739 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006740 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
6741 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
6742 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02006743 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6744 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6745 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006746 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6747 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006748
6749 if (h2s) {
Willy Tarreaued4464e2021-01-20 15:50:03 +01006750 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 +02006751 h2s, h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
Willy Tarreau987c0632018-12-18 10:32:05 +01006752 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
6753 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
6754 h2s->cs);
6755 if (h2s->cs)
Willy Tarreau98e40b92021-01-20 16:27:01 +01006756 chunk_appendf(msg, "(.flg=0x%08x .data=%p)",
Willy Tarreau987c0632018-12-18 10:32:05 +01006757 h2s->cs->flags, h2s->cs->data);
Willy Tarreau98e40b92021-01-20 16:27:01 +01006758
Willy Tarreaue972a432022-09-01 18:02:15 +02006759 chunk_appendf(msg, " .subs=%p", h2s->subs);
Willy Tarreau98e40b92021-01-20 16:27:01 +01006760 if (h2s->subs) {
Willy Tarreaue972a432022-09-01 18:02:15 +02006761 chunk_appendf(msg, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
6762 chunk_appendf(msg, " tl.calls=%d tl.ctx=%p tl.fct=",
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01006763 h2s->subs->tasklet->calls,
6764 h2s->subs->tasklet->context);
6765 if (h2s->subs->tasklet->calls >= 1000000)
6766 ret = 1;
Willy Tarreaue972a432022-09-01 18:02:15 +02006767 resolve_sym_name(msg, NULL, h2s->subs->tasklet->process);
6768 chunk_appendf(msg, ")");
Willy Tarreau98e40b92021-01-20 16:27:01 +01006769 }
Willy Tarreau987c0632018-12-18 10:32:05 +01006770 }
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006771 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006772}
Willy Tarreau62f52692017-10-08 23:01:42 +02006773
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006774/* Migrate the the connection to the current thread.
6775 * Return 0 if successful, non-zero otherwise.
6776 * Expected to be called with the old thread lock held.
6777 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006778static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006779{
6780 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006781 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006782
6783 if (fd_takeover(conn->handle.fd, conn) != 0)
6784 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006785
6786 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6787 /* We failed to takeover the xprt, even if the connection may
6788 * still be valid, flag it as error'd, as we have already
6789 * taken over the fd, and wake the tasklet, so that it will
6790 * destroy it.
6791 */
6792 conn->flags |= CO_FL_ERROR;
6793 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6794 return -1;
6795 }
6796
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006797 if (h2c->wait_event.events)
6798 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6799 h2c->wait_event.events, &h2c->wait_event);
6800 /* To let the tasklet know it should free itself, and do nothing else,
6801 * set its context to NULL.
6802 */
6803 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006804 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006805
6806 task = h2c->task;
6807 if (task) {
6808 task->context = NULL;
6809 h2c->task = NULL;
6810 __ha_barrier_store();
6811 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006812
6813 h2c->task = task_new(tid_bit);
6814 if (!h2c->task) {
6815 h2_release(h2c);
6816 return -1;
6817 }
6818 h2c->task->process = h2_timeout_task;
6819 h2c->task->context = h2c;
6820 }
6821 h2c->wait_event.tasklet = tasklet_new();
6822 if (!h2c->wait_event.tasklet) {
6823 h2_release(h2c);
6824 return -1;
6825 }
6826 h2c->wait_event.tasklet->process = h2_io_cb;
6827 h2c->wait_event.tasklet->context = h2c;
6828 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6829 SUB_RETRY_RECV, &h2c->wait_event);
6830
6831 return 0;
6832}
6833
Willy Tarreau62f52692017-10-08 23:01:42 +02006834/*******************************************************/
6835/* functions below are dedicated to the config parsers */
6836/*******************************************************/
6837
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006838/* config parser for global "tune.h2.header-table-size" */
6839static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006840 const struct proxy *defpx, const char *file, int line,
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006841 char **err)
6842{
6843 if (too_many_args(1, args, err, NULL))
6844 return -1;
6845
6846 h2_settings_header_table_size = atoi(args[1]);
6847 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6848 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6849 return -1;
6850 }
6851 return 0;
6852}
Willy Tarreau62f52692017-10-08 23:01:42 +02006853
Willy Tarreaue6baec02017-07-27 11:45:11 +02006854/* config parser for global "tune.h2.initial-window-size" */
6855static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006856 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue6baec02017-07-27 11:45:11 +02006857 char **err)
6858{
6859 if (too_many_args(1, args, err, NULL))
6860 return -1;
6861
6862 h2_settings_initial_window_size = atoi(args[1]);
6863 if (h2_settings_initial_window_size < 0) {
6864 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6865 return -1;
6866 }
6867 return 0;
6868}
6869
Willy Tarreau5242ef82017-07-27 11:47:28 +02006870/* config parser for global "tune.h2.max-concurrent-streams" */
6871static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006872 const struct proxy *defpx, const char *file, int line,
Willy Tarreau5242ef82017-07-27 11:47:28 +02006873 char **err)
6874{
6875 if (too_many_args(1, args, err, NULL))
6876 return -1;
6877
6878 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006879 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006880 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6881 return -1;
6882 }
6883 return 0;
6884}
6885
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006886/* config parser for global "tune.h2.max-frame-size" */
6887static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006888 const struct proxy *defpx, const char *file, int line,
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006889 char **err)
6890{
6891 if (too_many_args(1, args, err, NULL))
6892 return -1;
6893
6894 h2_settings_max_frame_size = atoi(args[1]);
6895 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6896 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6897 return -1;
6898 }
6899 return 0;
6900}
6901
Willy Tarreau62f52692017-10-08 23:01:42 +02006902
6903/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006904/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006905/***************************************/
6906
6907/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006908static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006909 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006910 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006911 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006912 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006913 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006914 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006915 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01006916 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02006917 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006918 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006919 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006920 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006921 .shutr = h2_shutr,
6922 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006923 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006924 .show_fd = h2_show_fd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006925 .takeover = h2_takeover,
Christopher Fauleta4600572021-03-08 15:28:28 +01006926 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX|MX_FL_HOL_RISK|MX_FL_NO_UPG,
Willy Tarreau62f52692017-10-08 23:01:42 +02006927 .name = "H2",
6928};
6929
Christopher Faulet32f61c02018-04-10 14:33:41 +02006930static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006931 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006932
Willy Tarreau0108d902018-11-25 19:14:37 +01006933INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6934
Willy Tarreau62f52692017-10-08 23:01:42 +02006935/* config keyword parsers */
6936static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006937 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006938 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006939 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006940 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006941 { 0, NULL, NULL }
6942}};
6943
Willy Tarreau0108d902018-11-25 19:14:37 +01006944INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006945
6946/* initialize internal structs after the config is parsed.
6947 * Returns zero on success, non-zero on error.
6948 */
6949static int init_h2()
6950{
6951 pool_head_hpack_tbl = create_pool("hpack_tbl",
6952 h2_settings_header_table_size,
6953 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01006954 if (!pool_head_hpack_tbl) {
6955 ha_alert("failed to allocate hpack_tbl memory pool\n");
6956 return (ERR_ALERT | ERR_FATAL);
6957 }
6958 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006959}
6960
6961REGISTER_POST_CHECK(init_h2);