blob: 2fca7ac7c6192ec875c66022bc3e861835e13f0c [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
13#include <common/cfgparse.h>
14#include <common/config.h>
Willy Tarreauafba57a2018-12-11 13:44:24 +010015#include <common/h1.h>
Willy Tarreau5ab6b572017-09-22 08:05:00 +020016#include <common/h2.h>
Willy Tarreau13278b42017-10-13 19:23:14 +020017#include <common/hpack-dec.h>
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +020018#include <common/hpack-enc.h>
Willy Tarreau5ab6b572017-09-22 08:05:00 +020019#include <common/hpack-tbl.h>
Willy Tarreaub96b77e2018-12-11 10:22:41 +010020#include <common/htx.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010021#include <common/initcall.h>
Willy Tarreaue4820742017-07-27 13:37:23 +020022#include <common/net_helper.h>
Willy Tarreau62f52692017-10-08 23:01:42 +020023#include <proto/connection.h>
Willy Tarreaubcd3bb32018-12-01 18:59:00 +010024#include <proto/http_htx.h>
Willy Tarreau12ae2122019-08-08 18:23:12 +020025#include <proto/trace.h>
Olivier Houchard44d59142018-12-13 18:46:22 +010026#include <proto/session.h>
Willy Tarreau62f52692017-10-08 23:01:42 +020027#include <proto/stream.h>
Olivier Houchard44d59142018-12-13 18:46:22 +010028#include <proto/stream_interface.h>
Willy Tarreauea392822017-10-31 10:02:25 +010029#include <types/session.h>
Willy Tarreau5ab6b572017-09-22 08:05:00 +020030#include <eb32tree.h>
Willy Tarreau62f52692017-10-08 23:01:42 +020031
32
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010033/* dummy streams returned for closed, error, refused, idle and states */
Willy Tarreau2a856182017-05-16 15:20:39 +020034static const struct h2s *h2_closed_stream;
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010035static const struct h2s *h2_error_stream;
Willy Tarreau8d0d58b2018-12-23 18:29:12 +010036static const struct h2s *h2_refused_stream;
Willy Tarreau2a856182017-05-16 15:20:39 +020037static const struct h2s *h2_idle_stream;
38
Willy Tarreau5ab6b572017-09-22 08:05:00 +020039/* Connection flags (32 bit), in h2c->flags */
40#define H2_CF_NONE 0x00000000
41
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020042/* Flags indicating why writing to the mux is blocked. */
43#define H2_CF_MUX_MALLOC 0x00000001 // mux blocked on lack of connection's mux buffer
44#define H2_CF_MUX_MFULL 0x00000002 // mux blocked on connection's mux buffer full
45#define H2_CF_MUX_BLOCK_ANY 0x00000003 // aggregate of the mux flags above
46
Willy Tarreau315d8072017-12-10 22:17:57 +010047/* Flags indicating why writing to the demux is blocked.
48 * The first two ones directly affect the ability for the mux to receive data
49 * from the connection. The other ones affect the mux's ability to demux
50 * received data.
51 */
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020052#define H2_CF_DEM_DALLOC 0x00000004 // demux blocked on lack of connection's demux buffer
53#define H2_CF_DEM_DFULL 0x00000008 // demux blocked on connection's demux buffer full
Willy Tarreau315d8072017-12-10 22:17:57 +010054
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020055#define H2_CF_DEM_MBUSY 0x00000010 // demux blocked on connection's mux side busy
56#define H2_CF_DEM_MROOM 0x00000020 // demux blocked on lack of room in mux buffer
57#define H2_CF_DEM_SALLOC 0x00000040 // demux blocked on lack of stream's request buffer
58#define H2_CF_DEM_SFULL 0x00000080 // demux blocked on stream request buffer full
Willy Tarreauf2101912018-07-19 10:11:38 +020059#define H2_CF_DEM_TOOMANY 0x00000100 // demux blocked waiting for some conn_streams to leave
60#define H2_CF_DEM_BLOCK_ANY 0x000001F0 // aggregate of the demux flags above except DALLOC/DFULL
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020061
Willy Tarreau081d4722017-05-16 21:51:05 +020062/* other flags */
Willy Tarreauf2101912018-07-19 10:11:38 +020063#define H2_CF_GOAWAY_SENT 0x00001000 // a GOAWAY frame was successfully sent
64#define H2_CF_GOAWAY_FAILED 0x00002000 // a GOAWAY frame failed to be sent
65#define H2_CF_WAIT_FOR_HS 0x00004000 // We did check that at least a stream was waiting for handshake
Willy Tarreaub3fb56d2018-10-03 13:56:38 +020066#define H2_CF_IS_BACK 0x00008000 // this is an outgoing connection
Willy Tarreau97aaa672018-12-23 09:49:04 +010067#define H2_CF_WINDOW_OPENED 0x00010000 // demux increased window already advertised
Willy Tarreau081d4722017-05-16 21:51:05 +020068
Willy Tarreau5ab6b572017-09-22 08:05:00 +020069/* H2 connection state, in h2c->st0 */
70enum h2_cs {
71 H2_CS_PREFACE, // init done, waiting for connection preface
72 H2_CS_SETTINGS1, // preface OK, waiting for first settings frame
73 H2_CS_FRAME_H, // first settings frame ok, waiting for frame header
74 H2_CS_FRAME_P, // frame header OK, waiting for frame payload
Willy Tarreaua20a5192017-12-27 11:02:06 +010075 H2_CS_FRAME_A, // frame payload OK, trying to send ACK frame
76 H2_CS_FRAME_E, // frame payload OK, trying to send RST frame
Willy Tarreau5ab6b572017-09-22 08:05:00 +020077 H2_CS_ERROR, // send GOAWAY(errcode) and close the connection ASAP
78 H2_CS_ERROR2, // GOAWAY(errcode) sent, close the connection ASAP
79 H2_CS_ENTRIES // must be last
80} __attribute__((packed));
81
Willy Tarreau51330962019-05-26 09:38:07 +020082
Willy Tarreau9c218e72019-05-26 10:08:28 +020083/* 32 buffers: one for the ring's root, rest for the mbuf itself */
84#define H2C_MBUF_CNT 32
Willy Tarreau51330962019-05-26 09:38:07 +020085
Willy Tarreau5ab6b572017-09-22 08:05:00 +020086/* H2 connection descriptor */
87struct h2c {
88 struct connection *conn;
89
90 enum h2_cs st0; /* mux state */
91 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
92
93 /* 16 bit hole here */
94 uint32_t flags; /* connection flags: H2_CF_* */
Willy Tarreau2e2083a2019-01-31 10:34:07 +010095 uint32_t streams_limit; /* maximum number of concurrent streams the peer supports */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020096 int32_t max_id; /* highest ID known on this connection, <0 before preface */
97 uint32_t rcvd_c; /* newly received data to ACK for the connection */
98 uint32_t rcvd_s; /* newly received data to ACK for the current stream (dsi) */
99
100 /* states for the demux direction */
101 struct hpack_dht *ddht; /* demux dynamic header table */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200102 struct buffer dbuf; /* demux buffer */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200103
104 int32_t dsi; /* demux stream ID (<0 = idle) */
105 int32_t dfl; /* demux frame length (if dsi >= 0) */
106 int8_t dft; /* demux frame type (if dsi >= 0) */
107 int8_t dff; /* demux frame flags (if dsi >= 0) */
Willy Tarreau05e5daf2017-12-11 15:17:36 +0100108 uint8_t dpl; /* demux pad length (part of dfl), init to 0 */
109 /* 8 bit hole here */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200110 int32_t last_sid; /* last processed stream ID for GOAWAY, <0 before preface */
111
112 /* states for the mux direction */
Willy Tarreau51330962019-05-26 09:38:07 +0200113 struct buffer mbuf[H2C_MBUF_CNT]; /* mux buffers (ring) */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200114 int32_t msi; /* mux stream ID (<0 = idle) */
115 int32_t mfl; /* mux frame length (if dsi >= 0) */
116 int8_t mft; /* mux frame type (if dsi >= 0) */
117 int8_t mff; /* mux frame flags (if dsi >= 0) */
118 /* 16 bit hole here */
119 int32_t miw; /* mux initial window size for all new streams */
120 int32_t mws; /* mux window size. Can be negative. */
121 int32_t mfs; /* mux's max frame size */
122
Willy Tarreauea392822017-10-31 10:02:25 +0100123 int timeout; /* idle timeout duration in ticks */
Willy Tarreau599391a2017-11-24 10:16:00 +0100124 int shut_timeout; /* idle timeout duration in ticks after GOAWAY was sent */
Willy Tarreau49745612017-12-03 18:56:02 +0100125 unsigned int nb_streams; /* number of streams in the tree */
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200126 unsigned int nb_cs; /* number of attached conn_streams */
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100127 unsigned int nb_reserved; /* number of reserved streams */
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100128 unsigned int stream_cnt; /* total number of streams seen */
Willy Tarreau0b37d652018-10-03 10:33:02 +0200129 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +0100130 struct task *task; /* timeout management task */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200131 struct eb_root streams_by_id; /* all active streams by their ID */
132 struct list send_list; /* list of blocked streams requesting to send */
133 struct list fctl_list; /* list of streams blocked by connection's fctl */
Olivier Houchardd846c262018-10-19 17:24:29 +0200134 struct list sending_list; /* list of h2s scheduled to send data */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100135 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200136 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200137};
138
Willy Tarreau18312642017-10-11 07:57:07 +0200139/* H2 stream state, in h2s->st */
140enum h2_ss {
141 H2_SS_IDLE = 0, // idle
142 H2_SS_RLOC, // reserved(local)
143 H2_SS_RREM, // reserved(remote)
144 H2_SS_OPEN, // open
145 H2_SS_HREM, // half-closed(remote)
146 H2_SS_HLOC, // half-closed(local)
Willy Tarreau96060ba2017-10-16 18:34:34 +0200147 H2_SS_ERROR, // an error needs to be sent using RST_STREAM
Willy Tarreau18312642017-10-11 07:57:07 +0200148 H2_SS_CLOSED, // closed
149 H2_SS_ENTRIES // must be last
150} __attribute__((packed));
151
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200152#define H2_SS_MASK(state) (1UL << (state))
153#define H2_SS_IDLE_BIT (1UL << H2_SS_IDLE)
154#define H2_SS_RLOC_BIT (1UL << H2_SS_RLOC)
155#define H2_SS_RREM_BIT (1UL << H2_SS_RREM)
156#define H2_SS_OPEN_BIT (1UL << H2_SS_OPEN)
157#define H2_SS_HREM_BIT (1UL << H2_SS_HREM)
158#define H2_SS_HLOC_BIT (1UL << H2_SS_HLOC)
159#define H2_SS_ERROR_BIT (1UL << H2_SS_ERROR)
160#define H2_SS_CLOSED_BIT (1UL << H2_SS_CLOSED)
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200161
Willy Tarreau18312642017-10-11 07:57:07 +0200162/* HTTP/2 stream flags (32 bit), in h2s->flags */
163#define H2_SF_NONE 0x00000000
164#define H2_SF_ES_RCVD 0x00000001
165#define H2_SF_ES_SENT 0x00000002
166
167#define H2_SF_RST_RCVD 0x00000004 // received RST_STREAM
168#define H2_SF_RST_SENT 0x00000008 // sent RST_STREAM
169
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200170/* stream flags indicating the reason the stream is blocked */
171#define H2_SF_BLK_MBUSY 0x00000010 // blocked waiting for mux access (transient)
172#define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux
173#define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl
174#define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl
175#define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above
176
Willy Tarreau454f9052017-10-26 19:40:35 +0200177/* stream flags indicating how data is supposed to be sent */
178#define H2_SF_DATA_CLEN 0x00000100 // data sent using content-length
Willy Tarreau454f9052017-10-26 19:40:35 +0200179
Christopher Faulet3e395632019-09-13 09:37:21 +0200180/* unused flags: 0x00000200, 0x00000400, 0x00000800 */
Willy Tarreau454f9052017-10-26 19:40:35 +0200181
Willy Tarreau67434202017-11-06 20:20:51 +0100182#define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream
Willy Tarreauc4312d32017-11-07 12:01:53 +0100183#define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data
Willy Tarreau67434202017-11-06 20:20:51 +0100184
Willy Tarreau6cc85a52019-01-02 15:49:20 +0100185#define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream
186
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200187#define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy)
188#define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy)
Willy Tarreau3cf69fe2019-05-14 10:44:40 +0200189#define H2_SF_KILL_CONN 0x00020000 // kill the whole connection with this stream
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200190
191
Willy Tarreau18312642017-10-11 07:57:07 +0200192/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
193 * it is being processed in the internal HTTP representation (H1 for now).
194 */
195struct h2s {
196 struct conn_stream *cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100197 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200198 struct h2c *h2c;
Willy Tarreaua40704a2018-09-11 13:52:04 +0200199 struct h1m h1m; /* request or response parser state for H1 */
Willy Tarreau18312642017-10-11 07:57:07 +0200200 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200201 int32_t id; /* stream ID */
202 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200203 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200204 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
205 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200206 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100207 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200208 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200209 struct wait_event wait_event; /* Wait list, when we're attempting to send a RST but we can't send */
Willy Tarreau749f5ca2019-03-21 19:19:36 +0100210 struct wait_event *recv_wait; /* recv wait_event the conn_stream associated is waiting on (via h2_subscribe) */
211 struct wait_event *send_wait; /* send wait_event the conn_stream associated is waiting on (via h2_subscribe) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200212 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Olivier Houchardd360ac62019-03-22 17:37:16 +0100213 struct list sending_list; /* To be used when adding in h2c->sending_list */
Willy Tarreau18312642017-10-11 07:57:07 +0200214};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200215
Willy Tarreauc6405142017-09-21 20:23:50 +0200216/* descriptor for an h2 frame header */
217struct h2_fh {
218 uint32_t len; /* length, host order, 24 bits */
219 uint32_t sid; /* stream id, host order, 31 bits */
220 uint8_t ft; /* frame type */
221 uint8_t ff; /* frame flags */
222};
223
Willy Tarreau12ae2122019-08-08 18:23:12 +0200224/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200225static void h2_trace(enum trace_level level, uint64_t mask, \
226 const struct trace_source *src,
227 const struct ist where, const struct ist func,
228 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200229
230/* The event representation is split like this :
231 * strm - application layer
232 * h2s - internal H2 stream
233 * h2c - internal H2 connection
234 * conn - external connection
235 *
236 */
237static const struct trace_event h2_trace_events[] = {
238#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200239 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200240#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200241 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200242#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200243 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200244#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200245 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200246#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200247 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200248#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200249 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200250#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200251 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200252#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200253 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200254#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200255 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200256#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200257 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200258#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200259 { .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 +0200260#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200261 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200262#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200263 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200264#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200265 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200266#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200267 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200268#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200269 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200270#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200271 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200272#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200273 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200274#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200275 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200276#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200277 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200278#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200279 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200280#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200281 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200282#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200283 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200284#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200285 { .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 +0200286#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200287 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200288#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200289 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200290#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200291 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200292#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200293 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200294#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200295 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200296#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200297 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200298#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200299 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200300#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200301 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200302#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200303 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200304#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200305 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200306#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200307 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200308#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200309 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200310#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200311 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200312#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200313 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200314#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200315 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200316#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200317 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200318#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200319 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200320#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200321 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200322#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200323 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200324#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200325 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200326#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200327 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200328#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200329 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200330#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200331 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200332#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200333 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200334#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200335 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200336#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200337 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200338#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200339 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200340#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200341 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200342 { }
343};
344
345static const struct name_desc h2_trace_lockon_args[4] = {
346 /* arg1 */ { /* already used by the connection */ },
347 /* arg2 */ { .name="h2s", .desc="H2 stream" },
348 /* arg3 */ { },
349 /* arg4 */ { }
350};
351
352static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200353#define H2_VERB_CLEAN 1
354 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
355#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200356 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200357#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200358 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200359#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200360 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200361#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200362 { .name="complete", .desc="add full data dump when available" },
363 { /* end */ }
364};
365
366static struct trace_source trace_h2 = {
367 .name = IST("h2"),
368 .desc = "HTTP/2 multiplexer",
369 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200370 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200371 .known_events = h2_trace_events,
372 .lockon_args = h2_trace_lockon_args,
373 .decoding = h2_trace_decoding,
374 .report_events = ~0, // report everything by default
375};
376
377#define TRACE_SOURCE &trace_h2
378INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
379
Willy Tarreau8ceae722018-11-26 11:58:30 +0100380/* the h2c connection pool */
381DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
382
383/* the h2s stream pool */
384DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
385
Willy Tarreaudc572362018-12-12 08:08:05 +0100386/* The default connection window size is 65535, it may only be enlarged using
387 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
388 * we'll pretend we already received the difference between the two to send
389 * an equivalent window update to enlarge it to 2G-1.
390 */
391#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
392
Willy Tarreau455d5682019-05-24 19:42:18 +0200393/* maximum amount of data we're OK with re-aligning for buffer optimizations */
394#define MAX_DATA_REALIGN 1024
395
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200396/* a few settings from the global section */
397static int h2_settings_header_table_size = 4096; /* initial value */
Willy Tarreaue6baec02017-07-27 11:45:11 +0200398static int h2_settings_initial_window_size = 65535; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100399static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100400static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200401
Willy Tarreau2a856182017-05-16 15:20:39 +0200402/* a dmumy closed stream */
403static const struct h2s *h2_closed_stream = &(const struct h2s){
404 .cs = NULL,
405 .h2c = NULL,
406 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100407 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100408 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200409 .id = 0,
410};
411
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100412/* a dmumy closed stream returning a PROTOCOL_ERROR error */
413static const struct h2s *h2_error_stream = &(const struct h2s){
414 .cs = NULL,
415 .h2c = NULL,
416 .st = H2_SS_CLOSED,
417 .errcode = H2_ERR_PROTOCOL_ERROR,
418 .flags = 0,
419 .id = 0,
420};
421
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100422/* a dmumy closed stream returning a REFUSED_STREAM error */
423static const struct h2s *h2_refused_stream = &(const struct h2s){
424 .cs = NULL,
425 .h2c = NULL,
426 .st = H2_SS_CLOSED,
427 .errcode = H2_ERR_REFUSED_STREAM,
428 .flags = 0,
429 .id = 0,
430};
431
Willy Tarreau2a856182017-05-16 15:20:39 +0200432/* and a dummy idle stream for use with any unannounced stream */
433static const struct h2s *h2_idle_stream = &(const struct h2s){
434 .cs = NULL,
435 .h2c = NULL,
436 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100437 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200438 .id = 0,
439};
440
Olivier Houchard9f6af332018-05-25 14:04:04 +0200441static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200442static int h2_send(struct h2c *h2c);
443static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200444static int h2_process(struct h2c *h2c);
Olivier Houchard29fb89d2018-08-02 18:56:36 +0200445static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100446static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Willy Tarreau4790f7c2019-01-24 11:33:02 +0100447static int h2c_decode_headers(struct h2c *h2c, struct buffer *rxbuf, uint32_t *flags, unsigned long long *body_len);
Willy Tarreaua56a6de2018-02-26 15:59:07 +0100448static int h2_frt_transfer_data(struct h2s *h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +0200449static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state);
Olivier Houchardf502aca2018-12-14 19:42:40 +0100450static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100451static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200452
Willy Tarreauab2ec452019-08-30 07:07:08 +0200453/* returns a h2c state as an abbreviated 3-letter string, or "???" if unknown */
454static inline const char *h2c_st_to_str(enum h2_cs st)
455{
456 switch (st) {
457 case H2_CS_PREFACE: return "PRF";
458 case H2_CS_SETTINGS1: return "STG";
459 case H2_CS_FRAME_H: return "FRH";
460 case H2_CS_FRAME_P: return "FRP";
461 case H2_CS_FRAME_A: return "FRA";
462 case H2_CS_FRAME_E: return "FRE";
463 case H2_CS_ERROR: return "ERR";
464 case H2_CS_ERROR2: return "ER2";
465 default: return "???";
466 }
467}
468
469/* returns a h2s state as an abbreviated 3-letter string, or "???" if unknown */
470static inline const char *h2s_st_to_str(enum h2_ss st)
471{
472 switch (st) {
473 case H2_SS_IDLE: return "IDL"; // idle
474 case H2_SS_RLOC: return "RSL"; // reserved local
475 case H2_SS_RREM: return "RSR"; // reserved remote
476 case H2_SS_OPEN: return "OPN"; // open
477 case H2_SS_HREM: return "HCR"; // half-closed remote
478 case H2_SS_HLOC: return "HCL"; // half-closed local
479 case H2_SS_ERROR : return "ERR"; // error
480 case H2_SS_CLOSED: return "CLO"; // closed
481 default: return "???";
482 }
483}
484
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200485/* the H2 traces always expect that arg1, if non-null, is of type connection
486 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
487 * that arg3, if non-null, is either of type htx for tx headers, or of type
488 * buffer for everything else.
489 */
490static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
491 const struct ist where, const struct ist func,
492 const void *a1, const void *a2, const void *a3, const void *a4)
493{
494 const struct connection *conn = a1;
495 const struct h2c *h2c = conn ? conn->ctx : NULL;
496 const struct h2s *h2s = a2;
497 const struct buffer *buf = a3;
498 const struct htx *htx;
499 int pos;
500
501 if (!h2c) // nothing to add
502 return;
503
Willy Tarreau17104d42019-08-30 07:12:55 +0200504 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200505 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
506
507 if (h2c->dsi >= 0 &&
508 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
509 chunk_appendf(&trace_buf, " dft=%s/%02x", h2_ft_str(h2c->dft), h2c->dff);
510 }
511
512 if (h2s) {
513 if (h2s->id <= 0)
514 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
515 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
516 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200517 }
518
519 /* Let's dump decoded requests and responses right after parsing. They
520 * are traced at level USER with a few recognizable flags.
521 */
522 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
523 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
524 htx = htxbuf(buf); // recv req/res
525 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
526 htx = a3; // send req/res
527 else
528 htx = NULL;
529
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200530 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200531 const struct htx_blk *blk = htx_get_blk(htx, pos);
532 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
533 enum htx_blk_type type = htx_get_blk_type(blk);
534
535 if (type == HTX_BLK_REQ_SL)
536 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200537 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200538 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
539 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
540 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
541 else if (type == HTX_BLK_RES_SL)
542 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200543 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200544 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
545 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
546 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
547 }
548}
549
Olivier Houchard7a977432019-03-21 15:47:13 +0100550static __inline int
551h2c_is_dead(struct h2c *h2c)
552{
553 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
554 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
555 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
556 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200557 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100558 (conn_xprt_read0_pending(h2c->conn) ||
559 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
560 return 1;
561
562 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100563}
564
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200565/*****************************************************/
566/* functions below are for dynamic buffer management */
567/*****************************************************/
568
Willy Tarreau315d8072017-12-10 22:17:57 +0100569/* indicates whether or not the we may call the h2_recv() function to attempt
570 * to receive data into the buffer and/or demux pending data. The condition is
571 * a bit complex due to some API limits for now. The rules are the following :
572 * - if an error or a shutdown was detected on the connection and the buffer
573 * is empty, we must not attempt to receive
574 * - if the demux buf failed to be allocated, we must not try to receive and
575 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100576 * - if no flag indicates a blocking condition, we may attempt to receive,
577 * regardless of whether the demux buffer is full or not, so that only
578 * de demux part decides whether or not to block. This is needed because
579 * the connection API indeed prevents us from re-enabling receipt that is
580 * already enabled in a polled state, so we must always immediately stop
581 * as soon as the demux can't proceed so as never to hit an end of read
582 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100583 * - otherwise must may not attempt
584 */
585static inline int h2_recv_allowed(const struct h2c *h2c)
586{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200587 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100588 (h2c->st0 >= H2_CS_ERROR ||
589 h2c->conn->flags & CO_FL_ERROR ||
590 conn_xprt_read0_pending(h2c->conn)))
591 return 0;
592
593 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100594 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100595 return 1;
596
597 return 0;
598}
599
Willy Tarreau47b515a2018-12-21 16:09:41 +0100600/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200601static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100602{
603 if (!h2_recv_allowed(h2c))
604 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200605 if ((!consider_buffer || !b_data(&h2c->dbuf))
606 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100607 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200608 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100609}
610
611
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100612/* returns true if the front connection has too many conn_streams attached */
613static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200614{
Willy Tarreaua8754662018-12-23 20:43:58 +0100615 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200616}
617
Willy Tarreau44e973f2018-03-01 17:49:30 +0100618/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
619 * flags are used to figure what buffer was requested. It returns 1 if the
620 * allocation succeeds, in which case the connection is woken up, or 0 if it's
621 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200622 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100623static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200624{
625 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100626 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200627
Willy Tarreau44e973f2018-03-01 17:49:30 +0100628 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc_margin(&h2c->dbuf, 0)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200629 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200630 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200631 return 1;
632 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200633
Willy Tarreau51330962019-05-26 09:38:07 +0200634 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc_margin(br_tail(h2c->mbuf), 0)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100635 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200636
637 if (h2c->flags & H2_CF_DEM_MROOM) {
638 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200639 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200640 }
Willy Tarreau14398122017-09-22 14:26:04 +0200641 return 1;
642 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100643
644 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
645 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Olivier Houchard638b7992018-08-16 15:41:52 +0200646 b_alloc_margin(&h2s->rxbuf, 0)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100647 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200648 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100649 return 1;
650 }
651
Willy Tarreau14398122017-09-22 14:26:04 +0200652 return 0;
653}
654
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200655static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200656{
657 struct buffer *buf = NULL;
658
Willy Tarreauc234ae32019-05-13 17:56:11 +0200659 if (likely(!LIST_ADDED(&h2c->buf_wait.list)) &&
Willy Tarreau44e973f2018-03-01 17:49:30 +0100660 unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) {
661 h2c->buf_wait.target = h2c;
662 h2c->buf_wait.wakeup_cb = h2_buf_available;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100663 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100664 LIST_ADDQ(&buffer_wq, &h2c->buf_wait.list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100665 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreau14398122017-09-22 14:26:04 +0200666 __conn_xprt_stop_recv(h2c->conn);
667 }
668 return buf;
669}
670
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200671static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200672{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200673 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100674 b_free(bptr);
Willy Tarreau201840a2019-05-29 17:50:48 +0200675 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau14398122017-09-22 14:26:04 +0200676 }
677}
678
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200679static inline void h2_release_mbuf(struct h2c *h2c)
680{
681 struct buffer *buf;
682 unsigned int count = 0;
683
684 while (b_size(buf = br_head_pick(h2c->mbuf))) {
685 b_free(buf);
686 count++;
687 }
688 if (count)
Willy Tarreau201840a2019-05-29 17:50:48 +0200689 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200690}
691
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100692/* returns the number of allocatable outgoing streams for the connection taking
693 * the last_sid and the reserved ones into account.
694 */
695static inline int h2_streams_left(const struct h2c *h2c)
696{
697 int ret;
698
699 /* consider the number of outgoing streams we're allowed to create before
700 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
701 * nb_reserved is the number of streams which don't yet have an ID.
702 */
703 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
704 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
705 if (ret < 0)
706 ret = 0;
707 return ret;
708}
709
Willy Tarreau00f18a32019-01-26 12:19:01 +0100710/* returns the number of streams in use on a connection to figure if it's
711 * idle or not. We check nb_cs and not nb_streams as the caller will want
712 * to know if it was the last one after a detach().
713 */
714static int h2_used_streams(struct connection *conn)
715{
716 struct h2c *h2c = conn->ctx;
717
718 return h2c->nb_cs;
719}
720
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100721/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100722static int h2_avail_streams(struct connection *conn)
723{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100724 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100725 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100726 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100727
Willy Tarreau6afec462019-01-28 06:40:19 +0100728 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
729 * streams on the connection.
730 */
731 if (h2c->last_sid >= 0)
732 return 0;
733
Willy Tarreau86949782019-01-31 10:42:05 +0100734 /* note: may be negative if a SETTINGS frame changes the limit */
735 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100736
737 /* we must also consider the limit imposed by stream IDs */
738 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100739 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100740 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100741 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
742 ret1 = MIN(ret1, ret2);
743 }
744 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100745}
746
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200747
Willy Tarreau62f52692017-10-08 23:01:42 +0200748/*****************************************************************/
749/* functions below are dedicated to the mux setup and management */
750/*****************************************************************/
751
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200752/* Initialize the mux once it's attached. For outgoing connections, the context
753 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200754 * connections from the fact that the context is still NULL (even during mux
755 * upgrades). <input> is always used as Input buffer and may contain data. It is
756 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200757 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200758static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
759 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200760{
761 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100762 struct task *t = NULL;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200763
Willy Tarreau7838a792019-08-12 18:42:03 +0200764 TRACE_ENTER(H2_EV_H2C_NEW, conn);
765
Willy Tarreaubafbe012017-11-24 17:34:44 +0100766 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200767 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200768 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200769
Christopher Faulete9b70722019-04-08 10:46:02 +0200770 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200771 h2c->flags = H2_CF_IS_BACK;
772 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
773 if (tick_isset(prx->timeout.serverfin))
774 h2c->shut_timeout = prx->timeout.serverfin;
775 } else {
776 h2c->flags = H2_CF_NONE;
777 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
778 if (tick_isset(prx->timeout.clientfin))
779 h2c->shut_timeout = prx->timeout.clientfin;
780 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100781
Willy Tarreau0b37d652018-10-03 10:33:02 +0200782 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100783 h2c->task = NULL;
Willy Tarreau3f133572017-10-31 19:21:06 +0100784 if (tick_isset(h2c->timeout)) {
785 t = task_new(tid_bit);
786 if (!t)
787 goto fail;
788
789 h2c->task = t;
790 t->process = h2_timeout_task;
791 t->context = h2c;
792 t->expire = tick_add(now_ms, h2c->timeout);
793 }
Willy Tarreauea392822017-10-31 10:02:25 +0100794
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200795 h2c->wait_event.tasklet = tasklet_new();
796 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200797 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200798 h2c->wait_event.tasklet->process = h2_io_cb;
799 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100800 h2c->wait_event.events = 0;
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200801
Willy Tarreau32218eb2017-09-22 08:07:25 +0200802 h2c->ddht = hpack_dht_alloc(h2_settings_header_table_size);
803 if (!h2c->ddht)
804 goto fail;
805
806 /* Initialise the context. */
807 h2c->st0 = H2_CS_PREFACE;
808 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100809 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200810 h2c->max_id = -1;
811 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100812 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200813 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +0100814 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200815 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100816 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100817 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200818
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200819 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200820 h2c->dsi = -1;
821 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100822
Willy Tarreau32218eb2017-09-22 08:07:25 +0200823 h2c->last_sid = -1;
824
Willy Tarreau51330962019-05-26 09:38:07 +0200825 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +0200826 h2c->miw = 65535; /* mux initial window size */
827 h2c->mws = 65535; /* mux window size */
828 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +0200829 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200830 LIST_INIT(&h2c->send_list);
831 LIST_INIT(&h2c->fctl_list);
Olivier Houchardd846c262018-10-19 17:24:29 +0200832 LIST_INIT(&h2c->sending_list);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100833 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200834
Willy Tarreau3f133572017-10-31 19:21:06 +0100835 if (t)
836 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +0100837
Willy Tarreau01b44822018-10-03 14:26:37 +0200838 if (h2c->flags & H2_CF_IS_BACK) {
839 /* FIXME: this is temporary, for outgoing connections we need
840 * to immediately allocate a stream until the code is modified
841 * so that the caller calls ->attach(). For now the outgoing cs
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100842 * is stored as conn->ctx by the caller.
Willy Tarreau01b44822018-10-03 14:26:37 +0200843 */
844 struct h2s *h2s;
845
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100846 h2s = h2c_bck_stream_new(h2c, conn->ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +0200847 if (!h2s)
848 goto fail_stream;
849 }
850
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100851 conn->ctx = h2c;
Willy Tarreau01b44822018-10-03 14:26:37 +0200852
Willy Tarreau0f383582018-10-03 14:22:21 +0200853 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200854 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +0200855 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200856 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +0200857 fail_stream:
858 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +0200859 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200860 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200861 if (h2c->wait_event.tasklet)
862 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100863 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +0200864 fail_no_h2c:
Willy Tarreau7838a792019-08-12 18:42:03 +0200865 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200866 return -1;
867}
868
Willy Tarreau751f2d02018-10-05 09:35:00 +0200869/* returns the next allocatable outgoing stream ID for the H2 connection, or
870 * -1 if no more is allocatable.
871 */
872static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
873{
874 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +0100875
876 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +0200877 id = -1;
878 return id;
879}
880
Willy Tarreau2373acc2017-10-12 17:35:14 +0200881/* returns the stream associated with id <id> or NULL if not found */
882static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
883{
884 struct eb32_node *node;
885
Willy Tarreau751f2d02018-10-05 09:35:00 +0200886 if (id == 0)
887 return (struct h2s *)h2_closed_stream;
888
Willy Tarreau2a856182017-05-16 15:20:39 +0200889 if (id > h2c->max_id)
890 return (struct h2s *)h2_idle_stream;
891
Willy Tarreau2373acc2017-10-12 17:35:14 +0200892 node = eb32_lookup(&h2c->streams_by_id, id);
893 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +0200894 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +0200895
896 return container_of(node, struct h2s, by_id);
897}
898
Christopher Faulet73c12072019-04-08 11:23:22 +0200899/* release function. This one should be called to free all resources allocated
900 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +0200901 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200902static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +0200903{
Christopher Faulet61840e72019-04-15 09:33:32 +0200904 struct connection *conn = NULL;;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200905
Willy Tarreau7838a792019-08-12 18:42:03 +0200906 TRACE_ENTER(H2_EV_H2C_END);
907
Willy Tarreau32218eb2017-09-22 08:07:25 +0200908 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200909 /* The connection must be aattached to this mux to be released */
910 if (h2c->conn && h2c->conn->ctx == h2c)
911 conn = h2c->conn;
912
Willy Tarreau7838a792019-08-12 18:42:03 +0200913 TRACE_DEVEL("freeing h2c", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200914 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +0200915
Willy Tarreau186e96e2019-05-28 17:21:18 +0200916 if (LIST_ADDED(&h2c->buf_wait.list)) {
917 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
918 LIST_DEL(&h2c->buf_wait.list);
919 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
920 }
Willy Tarreau14398122017-09-22 14:26:04 +0200921
Willy Tarreau44e973f2018-03-01 17:49:30 +0100922 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200923 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100924
Willy Tarreauea392822017-10-31 10:02:25 +0100925 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +0200926 h2c->task->context = NULL;
927 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +0100928 h2c->task = NULL;
929 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200930 if (h2c->wait_event.tasklet)
931 tasklet_free(h2c->wait_event.tasklet);
Christopher Faulet21d849f2019-09-18 11:07:20 +0200932 if (conn && h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100933 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Christopher Faulet21d849f2019-09-18 11:07:20 +0200934 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +0100935
Willy Tarreaubafbe012017-11-24 17:34:44 +0100936 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200937 }
938
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200939 if (conn) {
940 conn->mux = NULL;
941 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +0200942 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200943
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200944 conn_stop_tracking(conn);
945 conn_full_close(conn);
946 if (conn->destroy_cb)
947 conn->destroy_cb(conn);
948 conn_free(conn);
949 }
Willy Tarreau7838a792019-08-12 18:42:03 +0200950
951 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +0200952}
953
954
Willy Tarreau71681172017-10-23 14:39:06 +0200955/******************************************************/
956/* functions below are for the H2 protocol processing */
957/******************************************************/
958
959/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +0100960static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +0200961{
962 return h2s ? h2s->id : 0;
963}
964
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200965/* returns the sum of the stream's own window size and the mux's initial
966 * window, which together form the stream's effective window size.
967 */
968static inline int h2s_mws(const struct h2s *h2s)
969{
970 return h2s->sws + h2s->h2c->miw;
971}
972
Willy Tarreau5b5e6872017-09-25 16:17:25 +0200973/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +0100974static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +0200975{
976 if (h2c->msi < 0)
977 return 0;
978
979 if (h2c->msi == h2s_id(h2s))
980 return 0;
981
982 return 1;
983}
984
Willy Tarreau741d6df2017-10-17 08:00:59 +0200985/* marks an error on the connection */
Willy Tarreau1f094672017-11-20 21:27:45 +0100986static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +0200987{
Willy Tarreau7838a792019-08-12 18:42:03 +0200988 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn,,, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +0200989 h2c->errcode = err;
990 h2c->st0 = H2_CS_ERROR;
991}
992
Willy Tarreau175cebb2019-01-24 10:02:24 +0100993/* marks an error on the stream. It may also update an already closed stream
994 * (e.g. to report an error after an RST was received).
995 */
Willy Tarreau1f094672017-11-20 21:27:45 +0100996static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +0200997{
Willy Tarreau175cebb2019-01-24 10:02:24 +0100998 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +0200999 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s,, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001000 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001001 if (h2s->st < H2_SS_ERROR)
1002 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +01001003 if (h2s->cs)
1004 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001005 }
1006}
1007
Willy Tarreau7e094452018-12-19 18:08:52 +01001008/* attempt to notify the data layer of recv availability */
1009static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1010{
1011 struct wait_event *sw;
1012
1013 if (h2s->recv_wait) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001014 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau7e094452018-12-19 18:08:52 +01001015 sw = h2s->recv_wait;
1016 sw->events &= ~SUB_RETRY_RECV;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001017 tasklet_wakeup(sw->tasklet);
Willy Tarreau7e094452018-12-19 18:08:52 +01001018 h2s->recv_wait = NULL;
1019 }
1020}
1021
1022/* attempt to notify the data layer of send availability */
1023static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1024{
1025 struct wait_event *sw;
1026
Willy Tarreauc234ae32019-05-13 17:56:11 +02001027 if (h2s->send_wait && !LIST_ADDED(&h2s->sending_list)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001028 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau7e094452018-12-19 18:08:52 +01001029 sw = h2s->send_wait;
1030 sw->events &= ~SUB_RETRY_SEND;
Olivier Houchardfd1e96d2019-03-25 14:04:25 +01001031 LIST_ADDQ(&h2s->h2c->sending_list, &h2s->sending_list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001032 tasklet_wakeup(sw->tasklet);
Willy Tarreau7e094452018-12-19 18:08:52 +01001033 }
1034}
1035
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001036/* alerts the data layer, trying to wake it up by all means, following
1037 * this sequence :
1038 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1039 * - if its subscribed to send, then it's woken up for send
1040 * - if it was subscribed to neither, its ->wake() callback is called
1041 * It is safe to call this function with a closed stream which doesn't have a
1042 * conn_stream anymore.
1043 */
1044static void __maybe_unused h2s_alert(struct h2s *h2s)
1045{
Willy Tarreau7838a792019-08-12 18:42:03 +02001046 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1047
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001048 if (h2s->recv_wait || h2s->send_wait) {
1049 h2s_notify_recv(h2s);
1050 h2s_notify_send(h2s);
1051 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001052 else if (h2s->cs && h2s->cs->data_cb->wake != NULL) {
1053 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001054 h2s->cs->data_cb->wake(h2s->cs);
Willy Tarreau7838a792019-08-12 18:42:03 +02001055 }
1056
1057 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001058}
1059
Willy Tarreaue4820742017-07-27 13:37:23 +02001060/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001061static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001062{
1063 uint8_t *out = frame;
1064
1065 *out = len >> 16;
1066 write_n16(out + 1, len);
1067}
1068
Willy Tarreau54c15062017-10-10 17:10:03 +02001069/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1070 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1071 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001072 * available in the buffer's input prior to calling this function. The buffer
1073 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001074 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001075static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001076 const struct buffer *b, int o)
1077{
Willy Tarreau591d4452018-06-15 17:21:00 +02001078 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 +02001079}
1080
Willy Tarreau1f094672017-11-20 21:27:45 +01001081static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001082{
Willy Tarreau591d4452018-06-15 17:21:00 +02001083 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001084}
1085
Willy Tarreau1f094672017-11-20 21:27:45 +01001086static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001087{
Willy Tarreau591d4452018-06-15 17:21:00 +02001088 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001089}
1090
Willy Tarreau1f094672017-11-20 21:27:45 +01001091static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001092{
Willy Tarreau591d4452018-06-15 17:21:00 +02001093 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001094}
1095
1096
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001097/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1098 * The algorithm is not obvious. It turns out that H2 headers are neither
1099 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1100 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001101 *
1102 * b0 b1 b2 b3 b4 b5..b8
1103 * +----------+---------+--------+----+----+----------------------+
1104 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1105 * +----------+---------+--------+----+----+----------------------+
1106 *
1107 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1108 * we get the sid properly aligned and ordered, and 16 bits of len properly
1109 * ordered as well. The type and flags can be extracted using bit shifts from
1110 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001111 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1112 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001113 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001114static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001115{
1116 uint64_t w;
1117
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001118 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001119 return 0;
1120
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001121 w = h2_get_n64(b, o + 1);
1122 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001123 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1124 h->ff = w >> 32;
1125 h->ft = w >> 40;
1126 h->len += w >> 48;
1127 return 1;
1128}
1129
1130/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1131 * h2_peek_frame_hdr() above.
1132 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001133static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001134{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001135 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001136}
1137
1138/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001139static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001140{
1141 int ret;
1142
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001143 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001144 if (ret > 0)
1145 h2_skip_frame_hdr(b);
1146 return ret;
1147}
1148
Willy Tarreau00dd0782018-03-01 16:31:34 +01001149/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1150 * its connection if the stream was not yet closed. Please use this exclusively
1151 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001152 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001153static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001154{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001155 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001156 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001157 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001158 if (!h2s->id)
1159 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +01001160 if (h2s->cs) {
Willy Tarreaua27db382019-03-25 18:13:16 +01001161 if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf))
1162 h2s_notify_recv(h2s);
1163 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001164 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001165 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001166 h2s->st = H2_SS_CLOSED;
1167}
1168
Willy Tarreau71049cc2018-03-28 13:56:39 +02001169/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
1170static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001171{
Willy Tarreau7838a792019-08-12 18:42:03 +02001172 struct connection *conn = h2s->h2c->conn;
1173
1174 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1175
Willy Tarreau0a10de62018-03-01 16:27:53 +01001176 h2s_close(h2s);
1177 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001178 if (b_size(&h2s->rxbuf)) {
1179 b_free(&h2s->rxbuf);
1180 offer_buffers(NULL, tasks_run_queue);
1181 }
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001182 if (h2s->send_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001183 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001184 if (h2s->recv_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001185 h2s->recv_wait->events &= ~SUB_RETRY_RECV;
Joseph Herlantd77575d2018-11-25 10:54:45 -08001186 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001187 * reference left would be in the h2c send_list/fctl_list, and if
1188 * we're in it, we're getting out anyway
1189 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001190 LIST_DEL_INIT(&h2s->list);
Willy Tarreauc234ae32019-05-13 17:56:11 +02001191 if (LIST_ADDED(&h2s->sending_list)) {
Willy Tarreau86eded62019-06-14 14:47:49 +02001192 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchard998410a2019-04-15 19:23:37 +02001193 LIST_DEL_INIT(&h2s->sending_list);
1194 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001195 tasklet_free(h2s->wait_event.tasklet);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001196 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001197
1198 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001199}
1200
Willy Tarreaua8e49542018-10-03 18:53:55 +02001201/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1202 * stream tree. In case of error, nothing is added and NULL is returned. The
1203 * causes of errors can be any failed memory allocation. The caller is
1204 * responsible for checking if the connection may support an extra stream
1205 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001206 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001207static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001208{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001209 struct h2s *h2s;
1210
Willy Tarreau7838a792019-08-12 18:42:03 +02001211 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1212
Willy Tarreaubafbe012017-11-24 17:34:44 +01001213 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001214 if (!h2s)
1215 goto out;
1216
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001217 h2s->wait_event.tasklet = tasklet_new();
1218 if (!h2s->wait_event.tasklet) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001219 pool_free(pool_head_h2s, h2s);
1220 goto out;
1221 }
1222 h2s->send_wait = NULL;
1223 h2s->recv_wait = NULL;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001224 h2s->wait_event.tasklet->process = h2_deferred_shut;
1225 h2s->wait_event.tasklet->context = h2s;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001226 h2s->wait_event.events = 0;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001227 LIST_INIT(&h2s->list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01001228 LIST_INIT(&h2s->sending_list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001229 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001230 h2s->cs = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001231 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001232 h2s->flags = H2_SF_NONE;
1233 h2s->errcode = H2_ERR_NO_ERROR;
1234 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001235 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001236 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001237 h2s->rxbuf = BUF_NULL;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001238
1239 if (h2c->flags & H2_CF_IS_BACK) {
1240 h1m_init_req(&h2s->h1m);
1241 h2s->h1m.err_pos = -1; // don't care about errors on the request path
1242 h2s->h1m.flags |= H1_MF_TOLOWER;
1243 } else {
1244 h1m_init_res(&h2s->h1m);
1245 h2s->h1m.err_pos = -1; // don't care about errors on the response path
1246 h2s->h1m.flags |= H1_MF_TOLOWER;
1247 }
1248
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001249 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001250 if (id > 0)
1251 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001252 else
1253 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001254
1255 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001256 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001257 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001258
Willy Tarreau7838a792019-08-12 18:42:03 +02001259 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001260 return h2s;
1261
1262 out_free_h2s:
1263 pool_free(pool_head_h2s, h2s);
1264 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001265 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001266 return NULL;
1267}
1268
1269/* creates a new stream <id> on the h2c connection and returns it, or NULL in
1270 * case of memory allocation error.
1271 */
1272static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id)
1273{
1274 struct session *sess = h2c->conn->owner;
1275 struct conn_stream *cs;
1276 struct h2s *h2s;
1277
Willy Tarreau7838a792019-08-12 18:42:03 +02001278 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1279
Willy Tarreaua8e49542018-10-03 18:53:55 +02001280 if (h2c->nb_streams >= h2_settings_max_concurrent_streams)
1281 goto out;
1282
1283 h2s = h2s_new(h2c, id);
1284 if (!h2s)
1285 goto out;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001286
1287 cs = cs_new(h2c->conn);
1288 if (!cs)
1289 goto out_close;
1290
Olivier Houchard746fb772018-12-15 19:42:00 +01001291 cs->flags |= CS_FL_NOT_FIRST;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001292 h2s->cs = cs;
1293 cs->ctx = h2s;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001294 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001295
1296 if (stream_create_from_cs(cs) < 0)
1297 goto out_free_cs;
1298
Willy Tarreau590a0512018-09-05 11:56:48 +02001299 /* We want the accept date presented to the next stream to be the one
1300 * we have now, the handshake time to be null (since the next stream
1301 * is not delayed by a handshake), and the idle time to count since
1302 * right now.
1303 */
1304 sess->accept_date = date;
1305 sess->tv_accept = now;
1306 sess->t_handshake = 0;
1307
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001308 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001309 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001310 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001311 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001312 return h2s;
1313
1314 out_free_cs:
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001315 h2c->nb_cs--;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001316 cs_free(cs);
Olivier Houchard58d87f32019-05-29 16:44:17 +02001317 h2s->cs = NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001318 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001319 h2s_destroy(h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001320 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001321 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001322 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001323 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001324}
1325
Willy Tarreau751f2d02018-10-05 09:35:00 +02001326/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1327 * and returns it, or NULL in case of memory allocation error or if the highest
1328 * possible stream ID was reached.
1329 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001330static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001331{
1332 struct h2s *h2s = NULL;
1333
Willy Tarreau7838a792019-08-12 18:42:03 +02001334 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1335
Willy Tarreau86949782019-01-31 10:42:05 +01001336 if (h2c->nb_streams >= h2c->streams_limit)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001337 goto out;
1338
Willy Tarreaua80dca82019-01-24 17:08:28 +01001339 if (h2_streams_left(h2c) < 1)
1340 goto out;
1341
Willy Tarreau751f2d02018-10-05 09:35:00 +02001342 /* Defer choosing the ID until we send the first message to create the stream */
1343 h2s = h2s_new(h2c, 0);
1344 if (!h2s)
1345 goto out;
1346
1347 h2s->cs = cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001348 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001349 cs->ctx = h2s;
1350 h2c->nb_cs++;
1351
Willy Tarreau751f2d02018-10-05 09:35:00 +02001352 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001353 if (likely(h2s))
1354 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1355 else
1356 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001357 return h2s;
1358}
1359
Willy Tarreaube5b7152017-09-25 16:25:39 +02001360/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1361 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1362 * the various settings codes.
1363 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001364static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001365{
1366 struct buffer *res;
1367 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001368 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001369 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001370 int ret = 0;
1371
1372 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001373
1374 if (h2c_mux_busy(h2c, NULL)) {
1375 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001376 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001377 }
1378
Willy Tarreaube5b7152017-09-25 16:25:39 +02001379 chunk_init(&buf, buf_data, sizeof(buf_data));
1380 chunk_memcpy(&buf,
1381 "\x00\x00\x00" /* length : 0 for now */
1382 "\x04\x00" /* type : 4 (settings), flags : 0 */
1383 "\x00\x00\x00\x00", /* stream ID : 0 */
1384 9);
1385
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001386 if (h2c->flags & H2_CF_IS_BACK) {
1387 /* send settings_enable_push=0 */
1388 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1389 }
1390
Willy Tarreaube5b7152017-09-25 16:25:39 +02001391 if (h2_settings_header_table_size != 4096) {
1392 char str[6] = "\x00\x01"; /* header_table_size */
1393
1394 write_n32(str + 2, h2_settings_header_table_size);
1395 chunk_memcat(&buf, str, 6);
1396 }
1397
1398 if (h2_settings_initial_window_size != 65535) {
1399 char str[6] = "\x00\x04"; /* initial_window_size */
1400
1401 write_n32(str + 2, h2_settings_initial_window_size);
1402 chunk_memcat(&buf, str, 6);
1403 }
1404
1405 if (h2_settings_max_concurrent_streams != 0) {
1406 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1407
1408 /* Note: 0 means "unlimited" for haproxy's config but not for
1409 * the protocol, so never send this value!
1410 */
1411 write_n32(str + 2, h2_settings_max_concurrent_streams);
1412 chunk_memcat(&buf, str, 6);
1413 }
1414
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001415 mfs = h2_settings_max_frame_size;
1416 if (mfs > global.tune.bufsize)
1417 mfs = global.tune.bufsize;
1418
1419 if (!mfs)
1420 mfs = global.tune.bufsize;
1421
1422 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001423 char str[6] = "\x00\x05"; /* max_frame_size */
1424
1425 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1426 * match bufsize - rewrite size, but at the moment it seems
1427 * that clients don't take care of it.
1428 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001429 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001430 chunk_memcat(&buf, str, 6);
1431 }
1432
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001433 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001434
1435 res = br_tail(h2c->mbuf);
1436 retry:
1437 if (!h2_get_buf(h2c, res)) {
1438 h2c->flags |= H2_CF_MUX_MALLOC;
1439 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001440 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001441 }
1442
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001443 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001444 if (unlikely(ret <= 0)) {
1445 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001446 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1447 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001448 h2c->flags |= H2_CF_MUX_MFULL;
1449 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001450 }
1451 else {
1452 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001453 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001454 }
1455 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001456 out:
1457 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001458 return ret;
1459}
1460
Willy Tarreau52eed752017-09-22 15:05:09 +02001461/* Try to receive a connection preface, then upon success try to send our
1462 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1463 * missing data. It may return an error in h2c.
1464 */
1465static int h2c_frt_recv_preface(struct h2c *h2c)
1466{
1467 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001468 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001469
Willy Tarreau7838a792019-08-12 18:42:03 +02001470 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1471
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001472 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001473
1474 if (unlikely(ret1 <= 0)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02001475 if (ret1 < 0)
1476 sess_log(h2c->conn->owner);
1477
Willy Tarreau52eed752017-09-22 15:05:09 +02001478 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn))
1479 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001480 ret2 = 0;
1481 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001482 }
1483
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001484 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001485 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001486 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001487 out:
1488 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001489 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001490}
1491
Willy Tarreau01b44822018-10-03 14:26:37 +02001492/* Try to send a connection preface, then upon success try to send our
1493 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1494 * missing data. It may return an error in h2c.
1495 */
1496static int h2c_bck_send_preface(struct h2c *h2c)
1497{
1498 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001499 int ret = 0;
1500
1501 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001502
1503 if (h2c_mux_busy(h2c, NULL)) {
1504 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001505 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001506 }
1507
Willy Tarreaubcc45952019-05-26 10:05:50 +02001508 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001509 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001510 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001511 h2c->flags |= H2_CF_MUX_MALLOC;
1512 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001513 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001514 }
1515
1516 if (!b_data(res)) {
1517 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001518 ret = b_istput(res, ist(H2_CONN_PREFACE));
1519 if (unlikely(ret <= 0)) {
1520 if (!ret) {
1521 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1522 goto retry;
1523 h2c->flags |= H2_CF_MUX_MFULL;
1524 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001525 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001526 }
1527 else {
1528 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001529 ret = 0;
1530 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001531 }
1532 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001533 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001534 ret = h2c_send_settings(h2c);
1535 out:
1536 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1537 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001538}
1539
Willy Tarreau081d4722017-05-16 21:51:05 +02001540/* try to send a GOAWAY frame on the connection to report an error or a graceful
1541 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1542 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1543 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1544 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1545 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1546 * on unrecoverable failure. It will not attempt to send one again in this last
1547 * case so that it is safe to use h2c_error() to report such errors.
1548 */
1549static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1550{
1551 struct buffer *res;
1552 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001553 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001554
Willy Tarreau7838a792019-08-12 18:42:03 +02001555 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1556
1557 if (h2c->flags & H2_CF_GOAWAY_FAILED) {
1558 ret = 1; // claim that it worked
1559 goto out;
1560 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001561
1562 if (h2c_mux_busy(h2c, h2s)) {
1563 if (h2s)
1564 h2s->flags |= H2_SF_BLK_MBUSY;
1565 else
1566 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001567 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001568 }
1569
Willy Tarreau9c218e72019-05-26 10:08:28 +02001570 /* len: 8, type: 7, flags: none, sid: 0 */
1571 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1572
1573 if (h2c->last_sid < 0)
1574 h2c->last_sid = h2c->max_id;
1575
1576 write_n32(str + 9, h2c->last_sid);
1577 write_n32(str + 13, h2c->errcode);
1578
Willy Tarreaubcc45952019-05-26 10:05:50 +02001579 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001580 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001581 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001582 h2c->flags |= H2_CF_MUX_MALLOC;
1583 if (h2s)
1584 h2s->flags |= H2_SF_BLK_MROOM;
1585 else
1586 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001587 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001588 }
1589
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001590 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001591 if (unlikely(ret <= 0)) {
1592 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001593 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1594 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001595 h2c->flags |= H2_CF_MUX_MFULL;
1596 if (h2s)
1597 h2s->flags |= H2_SF_BLK_MROOM;
1598 else
1599 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001600 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001601 }
1602 else {
1603 /* we cannot report this error using GOAWAY, so we mark
1604 * it and claim a success.
1605 */
1606 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1607 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001608 ret = 1;
1609 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001610 }
1611 }
1612 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02001613 out:
1614 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001615 return ret;
1616}
1617
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001618/* Try to send an RST_STREAM frame on the connection for the indicated stream
1619 * during mux operations. This stream must be valid and cannot be closed
1620 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1621 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1622 * not yet.
1623 *
1624 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1625 * to write the message, it subscribes the stream to future notifications.
1626 */
1627static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1628{
1629 struct buffer *res;
1630 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001631 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001632
Willy Tarreau7838a792019-08-12 18:42:03 +02001633 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1634
1635 if (!h2s || h2s->st == H2_SS_CLOSED) {
1636 ret = 1;
1637 goto out;
1638 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001639
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001640 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1641 * RST_STREAM in response to a RST_STREAM frame.
1642 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001643 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001644 ret = 1;
1645 goto ignore;
1646 }
1647
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001648 if (h2c_mux_busy(h2c, h2s)) {
1649 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001650 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001651 }
1652
Willy Tarreau9c218e72019-05-26 10:08:28 +02001653 /* len: 4, type: 3, flags: none */
1654 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1655 write_n32(str + 5, h2s->id);
1656 write_n32(str + 9, h2s->errcode);
1657
Willy Tarreaubcc45952019-05-26 10:05:50 +02001658 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001659 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001660 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001661 h2c->flags |= H2_CF_MUX_MALLOC;
1662 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001663 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001664 }
1665
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001666 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001667 if (unlikely(ret <= 0)) {
1668 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001669 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1670 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001671 h2c->flags |= H2_CF_MUX_MFULL;
1672 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001673 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001674 }
1675 else {
1676 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001677 ret = 0;
1678 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001679 }
1680 }
1681
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001682 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001683 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001684 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001685 out:
1686 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001687 return ret;
1688}
1689
1690/* Try to send an RST_STREAM frame on the connection for the stream being
1691 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001692 * error code, even if the stream is one of the dummy ones, and will update
1693 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001694 *
1695 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1696 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001697 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001698 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001699 */
1700static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1701{
1702 struct buffer *res;
1703 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001704 int ret = 0;
1705
1706 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001707
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001708 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1709 * RST_STREAM in response to a RST_STREAM frame.
1710 */
1711 if (h2c->dft == H2_FT_RST_STREAM) {
1712 ret = 1;
1713 goto ignore;
1714 }
1715
Willy Tarreau27a84c92017-10-17 08:10:17 +02001716 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001717 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001718 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001719 }
1720
Willy Tarreau9c218e72019-05-26 10:08:28 +02001721 /* len: 4, type: 3, flags: none */
1722 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1723
1724 write_n32(str + 5, h2c->dsi);
1725 write_n32(str + 9, h2s->errcode);
1726
Willy Tarreaubcc45952019-05-26 10:05:50 +02001727 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001728 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001729 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001730 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001731 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001732 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001733 }
1734
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001735 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02001736 if (unlikely(ret <= 0)) {
1737 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001738 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1739 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001740 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001741 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001742 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001743 }
1744 else {
1745 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001746 ret = 0;
1747 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001748 }
1749 }
1750
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001751 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02001752 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001753 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001754 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001755 }
1756
Willy Tarreau7838a792019-08-12 18:42:03 +02001757 out:
1758 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001759 return ret;
1760}
1761
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001762/* try to send an empty DATA frame with the ES flag set to notify about the
1763 * end of stream and match a shutdown(write). If an ES was already sent as
1764 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
1765 * on success or zero if nothing was done. In case of lack of room to write the
1766 * message, it subscribes the requesting stream to future notifications.
1767 */
1768static int h2_send_empty_data_es(struct h2s *h2s)
1769{
1770 struct h2c *h2c = h2s->h2c;
1771 struct buffer *res;
1772 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02001773 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001774
Willy Tarreau7838a792019-08-12 18:42:03 +02001775 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
1776
1777 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
1778 ret = 1;
1779 goto out;
1780 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001781
1782 if (h2c_mux_busy(h2c, h2s)) {
1783 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001784 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001785 }
1786
Willy Tarreau9c218e72019-05-26 10:08:28 +02001787 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
1788 memcpy(str, "\x00\x00\x00\x00\x01", 5);
1789 write_n32(str + 5, h2s->id);
1790
Willy Tarreaubcc45952019-05-26 10:05:50 +02001791 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001792 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001793 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001794 h2c->flags |= H2_CF_MUX_MALLOC;
1795 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001796 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001797 }
1798
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001799 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01001800 if (likely(ret > 0)) {
1801 h2s->flags |= H2_SF_ES_SENT;
1802 }
1803 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001804 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1805 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01001806 h2c->flags |= H2_CF_MUX_MFULL;
1807 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01001808 }
1809 else {
1810 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001811 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001812 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001813 out:
1814 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001815 return ret;
1816}
1817
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001818/* wake a specific stream and assign its conn_stream som CS_FL_* flags among
Willy Tarreau99ad1b32019-05-14 11:46:28 +02001819 * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001820 * is automatically updated accordingly. If the stream is orphaned, it is
1821 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01001822 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001823static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01001824{
Willy Tarreau7838a792019-08-12 18:42:03 +02001825 struct h2c *h2c = h2s->h2c;
1826
1827 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
1828
Christopher Fauletf02ca002019-03-07 16:21:34 +01001829 if (!h2s->cs) {
1830 /* this stream was already orphaned */
1831 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001832 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01001833 return;
1834 }
1835
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001836 if (conn_xprt_read0_pending(h2s->h2c->conn)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001837 if (h2s->st == H2_SS_OPEN)
1838 h2s->st = H2_SS_HREM;
1839 else if (h2s->st == H2_SS_HLOC)
1840 h2s_close(h2s);
1841 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001842
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001843 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
1844 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
1845 h2s->cs->flags |= CS_FL_ERR_PENDING;
1846 if (h2s->cs->flags & CS_FL_EOS)
1847 h2s->cs->flags |= CS_FL_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02001848
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001849 if (h2s->st < H2_SS_ERROR)
1850 h2s->st = H2_SS_ERROR;
1851 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01001852
1853 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001854 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01001855}
1856
1857/* wake the streams attached to the connection, whose id is greater than <last>
1858 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001859 */
Willy Tarreau23482912019-05-07 15:23:14 +02001860static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001861{
1862 struct eb32_node *node;
1863 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001864
Willy Tarreau7838a792019-08-12 18:42:03 +02001865 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
1866
Christopher Fauletf02ca002019-03-07 16:21:34 +01001867 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001868 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
1869 while (node) {
1870 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001871 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001872 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01001873 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01001874
Christopher Fauletf02ca002019-03-07 16:21:34 +01001875 /* Wake all streams with unassigned ID (ID == 0) */
1876 node = eb32_lookup(&h2c->streams_by_id, 0);
1877 while (node) {
1878 h2s = container_of(node, struct h2s, by_id);
1879 if (h2s->id > 0)
1880 break;
1881 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001882 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001883 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001884
1885 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001886}
1887
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001888/* Wake up all blocked streams whose window size has become positive after the
1889 * mux's initial window was adjusted. This should be done after having processed
1890 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02001891 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001892static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02001893{
1894 struct h2s *h2s;
1895 struct eb32_node *node;
1896
Willy Tarreau7838a792019-08-12 18:42:03 +02001897 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
1898
Willy Tarreau3421aba2017-07-27 15:41:03 +02001899 node = eb32_first(&h2c->streams_by_id);
1900 while (node) {
1901 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001902 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001903 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02001904 if (h2s->send_wait && !LIST_ADDED(&h2s->list))
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001905 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001906 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02001907 node = eb32_next(node);
1908 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001909
1910 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02001911}
1912
1913/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
1914 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01001915 * return an error in h2c. The caller must have already verified frame length
1916 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02001917 */
1918static int h2c_handle_settings(struct h2c *h2c)
1919{
1920 unsigned int offset;
1921 int error;
1922
Willy Tarreau7838a792019-08-12 18:42:03 +02001923 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
1924
Willy Tarreau3421aba2017-07-27 15:41:03 +02001925 if (h2c->dff & H2_F_SETTINGS_ACK) {
1926 if (h2c->dfl) {
1927 error = H2_ERR_FRAME_SIZE_ERROR;
1928 goto fail;
1929 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001930 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02001931 }
1932
Willy Tarreau3421aba2017-07-27 15:41:03 +02001933 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001934 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02001935 goto out0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02001936
1937 /* parse the frame */
1938 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001939 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
1940 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02001941
1942 switch (type) {
1943 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
1944 /* we need to update all existing streams with the
1945 * difference from the previous iws.
1946 */
1947 if (arg < 0) { // RFC7540#6.5.2
1948 error = H2_ERR_FLOW_CONTROL_ERROR;
1949 goto fail;
1950 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02001951 h2c->miw = arg;
1952 break;
1953 case H2_SETTINGS_MAX_FRAME_SIZE:
1954 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
1955 error = H2_ERR_PROTOCOL_ERROR;
1956 goto fail;
1957 }
1958 h2c->mfs = arg;
1959 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01001960 case H2_SETTINGS_ENABLE_PUSH:
1961 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
1962 error = H2_ERR_PROTOCOL_ERROR;
1963 goto fail;
1964 }
1965 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01001966 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
1967 if (h2c->flags & H2_CF_IS_BACK) {
1968 /* the limit is only for the backend; for the frontend it is our limit */
1969 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
1970 arg = h2_settings_max_concurrent_streams;
1971 h2c->streams_limit = arg;
1972 }
1973 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02001974 }
1975 }
1976
1977 /* need to ACK this frame now */
1978 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02001979 done:
1980 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02001981 return 1;
1982 fail:
Willy Tarreau22de8d32018-09-05 19:55:58 +02001983 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02001984 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02001985 out0:
1986 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 +02001987 return 0;
1988}
1989
1990/* try to send an ACK for a settings frame on the connection. Returns > 0 on
1991 * success or one of the h2_status values.
1992 */
1993static int h2c_ack_settings(struct h2c *h2c)
1994{
1995 struct buffer *res;
1996 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02001997 int ret = 0;
1998
1999 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002000
2001 if (h2c_mux_busy(h2c, NULL)) {
2002 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002003 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002004 }
2005
Willy Tarreau9c218e72019-05-26 10:08:28 +02002006 memcpy(str,
2007 "\x00\x00\x00" /* length : 0 (no data) */
2008 "\x04" "\x01" /* type : 4, flags : ACK */
2009 "\x00\x00\x00\x00" /* stream ID */, 9);
2010
Willy Tarreaubcc45952019-05-26 10:05:50 +02002011 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002012 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002013 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002014 h2c->flags |= H2_CF_MUX_MALLOC;
2015 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002016 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002017 }
2018
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002019 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002020 if (unlikely(ret <= 0)) {
2021 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002022 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2023 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002024 h2c->flags |= H2_CF_MUX_MFULL;
2025 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002026 }
2027 else {
2028 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002029 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002030 }
2031 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002032 out:
2033 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002034 return ret;
2035}
2036
Willy Tarreaucf68c782017-10-10 17:11:41 +02002037/* processes a PING frame and schedules an ACK if needed. The caller must pass
2038 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002039 * missing data. The caller must have already verified frame length
2040 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002041 */
2042static int h2c_handle_ping(struct h2c *h2c)
2043{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002044 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002045 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002046 h2c->st0 = H2_CS_FRAME_A;
2047 return 1;
2048}
2049
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002050/* Try to send a window update for stream id <sid> and value <increment>.
2051 * Returns > 0 on success or zero on missing room or failure. It may return an
2052 * error in h2c.
2053 */
2054static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2055{
2056 struct buffer *res;
2057 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002058 int ret = 0;
2059
2060 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002061
2062 if (h2c_mux_busy(h2c, NULL)) {
2063 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002064 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002065 }
2066
Willy Tarreau9c218e72019-05-26 10:08:28 +02002067 /* length: 4, type: 8, flags: none */
2068 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2069 write_n32(str + 5, sid);
2070 write_n32(str + 9, increment);
2071
Willy Tarreaubcc45952019-05-26 10:05:50 +02002072 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002073 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002074 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002075 h2c->flags |= H2_CF_MUX_MALLOC;
2076 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002077 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002078 }
2079
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002080 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002081 if (unlikely(ret <= 0)) {
2082 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002083 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2084 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002085 h2c->flags |= H2_CF_MUX_MFULL;
2086 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002087 }
2088 else {
2089 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002090 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002091 }
2092 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002093 out:
2094 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002095 return ret;
2096}
2097
2098/* try to send pending window update for the connection. It's safe to call it
2099 * with no pending updates. Returns > 0 on success or zero on missing room or
2100 * failure. It may return an error in h2c.
2101 */
2102static int h2c_send_conn_wu(struct h2c *h2c)
2103{
2104 int ret = 1;
2105
Willy Tarreau7838a792019-08-12 18:42:03 +02002106 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2107
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002108 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002109 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002110
Willy Tarreau97aaa672018-12-23 09:49:04 +01002111 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2112 /* increase the advertised connection window to 2G on
2113 * first update.
2114 */
2115 h2c->flags |= H2_CF_WINDOW_OPENED;
2116 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2117 }
2118
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002119 /* send WU for the connection */
2120 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2121 if (ret > 0)
2122 h2c->rcvd_c = 0;
2123
Willy Tarreau7838a792019-08-12 18:42:03 +02002124 out:
2125 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002126 return ret;
2127}
2128
2129/* try to send pending window update for the current dmux stream. It's safe to
2130 * call it with no pending updates. Returns > 0 on success or zero on missing
2131 * room or failure. It may return an error in h2c.
2132 */
2133static int h2c_send_strm_wu(struct h2c *h2c)
2134{
2135 int ret = 1;
2136
Willy Tarreau7838a792019-08-12 18:42:03 +02002137 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2138
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002139 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002140 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002141
2142 /* send WU for the stream */
2143 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2144 if (ret > 0)
2145 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002146 out:
2147 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002148 return ret;
2149}
2150
Willy Tarreaucf68c782017-10-10 17:11:41 +02002151/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2152 * success, 0 on missing data or one of the h2_status values.
2153 */
2154static int h2c_ack_ping(struct h2c *h2c)
2155{
2156 struct buffer *res;
2157 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002158 int ret = 0;
2159
2160 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002161
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002162 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002163 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002164
2165 if (h2c_mux_busy(h2c, NULL)) {
2166 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002167 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002168 }
2169
Willy Tarreaucf68c782017-10-10 17:11:41 +02002170 memcpy(str,
2171 "\x00\x00\x08" /* length : 8 (same payload) */
2172 "\x06" "\x01" /* type : 6, flags : ACK */
2173 "\x00\x00\x00\x00" /* stream ID */, 9);
2174
2175 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002176 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002177
Willy Tarreau9c218e72019-05-26 10:08:28 +02002178 res = br_tail(h2c->mbuf);
2179 retry:
2180 if (!h2_get_buf(h2c, res)) {
2181 h2c->flags |= H2_CF_MUX_MALLOC;
2182 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002183 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002184 }
2185
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002186 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002187 if (unlikely(ret <= 0)) {
2188 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002189 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2190 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002191 h2c->flags |= H2_CF_MUX_MFULL;
2192 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002193 }
2194 else {
2195 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002196 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002197 }
2198 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002199 out:
2200 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002201 return ret;
2202}
2203
Willy Tarreau26f95952017-07-27 17:18:30 +02002204/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2205 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002206 * h2c or h2s. The caller must have already verified frame length and stream ID
2207 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002208 */
2209static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2210{
2211 int32_t inc;
2212 int error;
2213
Willy Tarreau7838a792019-08-12 18:42:03 +02002214 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2215
Willy Tarreau26f95952017-07-27 17:18:30 +02002216 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002217 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002218 goto out0;
Willy Tarreau26f95952017-07-27 17:18:30 +02002219
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002220 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002221
2222 if (h2c->dsi != 0) {
2223 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002224
2225 /* it's not an error to receive WU on a closed stream */
2226 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002227 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002228
2229 if (!inc) {
2230 error = H2_ERR_PROTOCOL_ERROR;
2231 goto strm_err;
2232 }
2233
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002234 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002235 error = H2_ERR_FLOW_CONTROL_ERROR;
2236 goto strm_err;
2237 }
2238
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002239 h2s->sws += inc;
2240 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002241 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02002242 if (h2s->send_wait && !LIST_ADDED(&h2s->list))
Olivier Houcharddddfe312018-10-10 18:51:00 +02002243 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002244 }
2245 }
2246 else {
2247 /* connection window update */
2248 if (!inc) {
2249 error = H2_ERR_PROTOCOL_ERROR;
2250 goto conn_err;
2251 }
2252
2253 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2254 error = H2_ERR_FLOW_CONTROL_ERROR;
2255 goto conn_err;
2256 }
2257
2258 h2c->mws += inc;
2259 }
2260
Willy Tarreau7838a792019-08-12 18:42:03 +02002261 done:
2262 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002263 return 1;
2264
2265 conn_err:
2266 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002267 out0:
2268 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 +02002269 return 0;
2270
2271 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002272 h2s_error(h2s, error);
2273 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002274 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002275 return 0;
2276}
2277
Willy Tarreaue96b0922017-10-30 00:28:29 +01002278/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002279 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2280 * have already verified frame length and stream ID validity. Described in
2281 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002282 */
2283static int h2c_handle_goaway(struct h2c *h2c)
2284{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002285 int last;
2286
Willy Tarreau7838a792019-08-12 18:42:03 +02002287 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002288 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002289 if (b_data(&h2c->dbuf) < h2c->dfl) {
2290 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002291 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002292 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002293
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002294 last = h2_get_n32(&h2c->dbuf, 0);
2295 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002296 if (h2c->last_sid < 0)
2297 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002298 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002299 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002300 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002301}
2302
Willy Tarreau92153fc2017-12-03 19:46:19 +01002303/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002304 * invalid. Returns > 0 on success or zero on missing data. It may return an
2305 * error in h2c. The caller must have already verified frame length and stream
2306 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002307 */
2308static int h2c_handle_priority(struct h2c *h2c)
2309{
Willy Tarreau7838a792019-08-12 18:42:03 +02002310 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2311
Willy Tarreau92153fc2017-12-03 19:46:19 +01002312 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002313 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002314 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002315 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002316 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002317
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002318 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002319 /* 7540#5.3 : can't depend on itself */
Willy Tarreaub860c732019-01-30 15:39:55 +01002320 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002321 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002322 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002323 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002324 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002325 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002326}
2327
Willy Tarreaucd234e92017-08-18 10:59:39 +02002328/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002329 * Returns > 0 on success or zero on missing data. The caller must have already
2330 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002331 */
2332static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2333{
Willy Tarreau7838a792019-08-12 18:42:03 +02002334 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2335
Willy Tarreaucd234e92017-08-18 10:59:39 +02002336 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002337 if (b_data(&h2c->dbuf) < h2c->dfl) {
2338 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002339 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002340 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002341
2342 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002343 if (h2s->st == H2_SS_CLOSED) {
2344 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 +02002345 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002346 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002347
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002348 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002349 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002350
2351 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01002352 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01002353 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002354 }
2355
2356 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002357 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002358 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002359}
2360
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002361/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2362 * It may return an error in h2c or h2s. The caller must consider that the
2363 * return value is the new h2s in case one was allocated (most common case).
2364 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002365 * errors here are reported as connection errors since it's impossible to
2366 * recover from such errors after the compression context has been altered.
2367 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002368static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002369{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002370 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002371 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002372 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002373 int error;
2374
Willy Tarreau7838a792019-08-12 18:42:03 +02002375 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2376
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002377 if (!b_size(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002378 goto out; // empty buffer
Willy Tarreau13278b42017-10-13 19:23:14 +02002379
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002380 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002381 goto out; // incomplete frame
Willy Tarreau13278b42017-10-13 19:23:14 +02002382
2383 /* now either the frame is complete or the buffer is complete */
2384 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002385 /* The stream exists/existed, this must be a trailers frame */
2386 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreauaab1a602019-05-06 11:12:18 +02002387 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len);
2388 /* unrecoverable error ? */
2389 if (h2c->st0 >= H2_CS_ERROR)
2390 goto out;
2391
2392 if (error == 0)
2393 goto out; // missing data
2394
2395 if (error < 0) {
2396 /* Failed to decode this frame (e.g. too large request)
2397 * but the HPACK decompressor is still synchronized.
2398 */
2399 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2400 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002401 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002402 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002403 goto done;
2404 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002405 /* the connection was already killed by an RST, let's consume
2406 * the data and send another RST.
2407 */
2408 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
2409 h2s = (struct h2s*)h2_error_stream;
2410 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002411 }
2412 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2413 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2414 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002415 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002416 goto conn_err;
2417 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002418 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2419 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002420
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002421 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002422
Willy Tarreau25919232019-01-03 14:48:18 +01002423 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002424 if (h2c->st0 >= H2_CS_ERROR)
2425 goto out;
2426
Willy Tarreau25919232019-01-03 14:48:18 +01002427 if (error <= 0) {
2428 if (error == 0)
2429 goto out; // missing data
2430
2431 /* Failed to decode this stream (e.g. too large request)
2432 * but the HPACK decompressor is still synchronized.
2433 */
2434 h2s = (struct h2s*)h2_error_stream;
2435 goto send_rst;
2436 }
2437
Willy Tarreau22de8d32018-09-05 19:55:58 +02002438 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002439 * positively from h2c_frt_stream_new(), the stream will report the error,
2440 * and if we return in error, h2c_frt_stream_new() will emit the error.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002441 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02002442 h2s = h2c_frt_stream_new(h2c, h2c->dsi);
Willy Tarreau13278b42017-10-13 19:23:14 +02002443 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002444 h2s = (struct h2s*)h2_refused_stream;
2445 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002446 }
2447
2448 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002449 h2s->rxbuf = rxbuf;
2450 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002451 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002452
Willy Tarreau88d138e2019-01-02 19:38:14 +01002453 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002454 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002455 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002456
2457 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002458 if (h2s->st == H2_SS_OPEN)
2459 h2s->st = H2_SS_HREM;
2460 else
2461 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002462 }
2463
Willy Tarreau3a429f02019-01-03 11:41:50 +01002464 /* update the max stream ID if the request is being processed */
2465 if (h2s->id > h2c->max_id)
2466 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002467
Willy Tarreau8fecec22019-08-30 07:29:53 +02002468 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn,, &rxbuf);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002469 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002470
2471 conn_err:
2472 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002473 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002474
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002475 out:
2476 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002477 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 +01002478 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002479
2480 send_rst:
2481 /* make the demux send an RST for the current stream. We may only
2482 * do this if we're certain that the HEADERS frame was properly
2483 * decompressed so that the HPACK decoder is still kept up to date.
2484 */
2485 h2_release_buf(h2c, &rxbuf);
2486 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002487
2488 TRACE_USER("rejected H2 request", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW|H2_EV_STRM_END, h2c->conn,, &rxbuf);
2489 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002490 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002491}
2492
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002493/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2494 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2495 * errors here are reported as connection errors since it's impossible to
2496 * recover from such errors after the compression context has been altered.
2497 */
2498static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2499{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002500 struct buffer rxbuf = BUF_NULL;
2501 unsigned long long body_len = 0;
2502 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002503 int error;
2504
Willy Tarreau7838a792019-08-12 18:42:03 +02002505 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2506
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002507 if (!b_size(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002508 goto fail; // empty buffer
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002509
2510 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002511 goto fail; // incomplete frame
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002512
Christopher Faulet6884aa32019-09-23 15:28:20 +02002513 if (h2s->st != H2_SS_CLOSED) {
2514 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len);
2515 }
2516 else {
2517 /* the connection was already killed by an RST, let's consume
2518 * the data and send another RST.
2519 */
2520 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002521 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002522 h2c->st0 = H2_CS_FRAME_E;
2523 goto send_rst;
2524 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002525
Willy Tarreau25919232019-01-03 14:48:18 +01002526 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002527 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002528 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002529
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002530 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2531 /* RFC7540#5.1 */
2532 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2533 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002534 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002535 }
2536
Willy Tarreau25919232019-01-03 14:48:18 +01002537 if (error <= 0) {
2538 if (error == 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002539 goto fail; // missing data
Willy Tarreau25919232019-01-03 14:48:18 +01002540
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002541 /* stream error : send RST_STREAM */
Willy Tarreau25919232019-01-03 14:48:18 +01002542 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002543 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002544 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002545 }
2546
Christopher Fauletfa922f02019-05-07 10:55:17 +02002547 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002548 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002549
Willy Tarreau927b88b2019-03-04 08:03:25 +01002550 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002551 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002552 else if (h2s->flags & H2_SF_ES_RCVD) {
2553 if (h2s->st == H2_SS_OPEN)
2554 h2s->st = H2_SS_HREM;
2555 else if (h2s->st == H2_SS_HLOC)
2556 h2s_close(h2s);
2557 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002558
Willy Tarreau8fecec22019-08-30 07:29:53 +02002559 TRACE_USER("rcvd H2 response", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn,, &h2s->rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002560 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002561 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002562 fail:
2563 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2564 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002565
2566 send_rst:
2567 /* make the demux send an RST for the current stream. We may only
2568 * do this if we're certain that the HEADERS frame was properly
2569 * decompressed so that the HPACK decoder is still kept up to date.
2570 */
2571 h2_release_buf(h2c, &rxbuf);
2572 h2c->st0 = H2_CS_FRAME_E;
2573
2574 TRACE_USER("rejected H2 response", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW|H2_EV_STRM_END, h2c->conn,, &rxbuf);
2575 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2576 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002577}
2578
Willy Tarreau454f9052017-10-26 19:40:35 +02002579/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2580 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2581 */
2582static int h2c_frt_handle_data(struct h2c *h2c, struct h2s *h2s)
2583{
2584 int error;
2585
Willy Tarreau7838a792019-08-12 18:42:03 +02002586 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2587
Willy Tarreau454f9052017-10-26 19:40:35 +02002588 /* note that empty DATA frames are perfectly valid and sometimes used
2589 * to signal an end of stream (with the ES flag).
2590 */
2591
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002592 if (!b_size(&h2c->dbuf) && h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002593 goto fail; // empty buffer
Willy Tarreau454f9052017-10-26 19:40:35 +02002594
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002595 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002596 goto fail; // incomplete frame
Willy Tarreau454f9052017-10-26 19:40:35 +02002597
2598 /* now either the frame is complete or the buffer is complete */
2599
Willy Tarreau454f9052017-10-26 19:40:35 +02002600 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2601 /* RFC7540#6.1 */
2602 error = H2_ERR_STREAM_CLOSED;
2603 goto strm_err;
2604 }
2605
Christopher Faulet4f09ec82019-06-19 09:25:58 +02002606 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002607 /* RFC7540#8.1.2 */
2608 error = H2_ERR_PROTOCOL_ERROR;
2609 goto strm_err;
2610 }
2611
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002612 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02002613 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002614
Willy Tarreau454f9052017-10-26 19:40:35 +02002615 /* call the upper layers to process the frame, then let the upper layer
2616 * notify the stream about any change.
2617 */
2618 if (!h2s->cs) {
Willy Tarreau082c4572019-08-06 10:11:02 +02002619 /* The upper layer has already closed, this may happen on
2620 * 4xx/redirects during POST, or when receiving a response
2621 * from an H2 server after the client has aborted.
2622 */
2623 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002624 goto strm_err;
2625 }
2626
Willy Tarreau8f650c32017-11-21 19:36:21 +01002627 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002628 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01002629
Willy Tarreau721c9742017-11-07 11:05:42 +01002630 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002631 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002632 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002633 }
2634
2635 /* check for completion : the callee will change this to FRAME_A or
2636 * FRAME_H once done.
2637 */
2638 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02002639 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02002640
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002641 /* last frame */
2642 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002643 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002644 if (h2s->st == H2_SS_OPEN)
2645 h2s->st = H2_SS_HREM;
2646 else
2647 h2s_close(h2s);
2648
Willy Tarreau1915ca22019-01-24 11:49:37 +01002649 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
2650 /* RFC7540#8.1.2 */
2651 error = H2_ERR_PROTOCOL_ERROR;
2652 goto strm_err;
2653 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002654 }
2655
Willy Tarreau7838a792019-08-12 18:42:03 +02002656 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02002657 return 1;
2658
Willy Tarreau454f9052017-10-26 19:40:35 +02002659 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002660 h2s_error(h2s, error);
2661 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002662 fail:
2663 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 +02002664 return 0;
2665}
2666
Willy Tarreau63864812019-08-07 14:25:20 +02002667/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
2668 * valid for the current stream state. This is needed only after parsing the
2669 * frame header but in practice it can be performed at any time during
2670 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
2671 * or 0 in case of error, in which case either h2s or h2c will carry an error.
2672 */
2673static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
2674{
Willy Tarreau7838a792019-08-12 18:42:03 +02002675 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
2676
Willy Tarreau63864812019-08-07 14:25:20 +02002677 if (h2s->st == H2_SS_IDLE &&
2678 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
2679 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
2680 * this state MUST be treated as a connection error
2681 */
2682 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2683 if (!h2c->nb_streams) {
2684 /* only log if no other stream can report the error */
2685 sess_log(h2c->conn->owner);
2686 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002687 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 +02002688 return 0;
2689 }
2690
2691 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
2692 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
2693 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
2694 * this state MUST be treated as a stream error.
2695 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
2696 * PUSH_PROMISE/CONTINUATION cause connection errors.
2697 */
2698 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK)
2699 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2700 else
2701 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02002702 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 +02002703 return 0;
2704 }
2705
2706 /* Below the management of frames received in closed state is a
2707 * bit hackish because the spec makes strong differences between
2708 * streams closed by receiving RST, sending RST, and seeing ES
2709 * in both directions. In addition to this, the creation of a
2710 * new stream reusing the identifier of a closed one will be
2711 * detected here. Given that we cannot keep track of all closed
2712 * streams forever, we consider that unknown closed streams were
2713 * closed on RST received, which allows us to respond with an
2714 * RST without breaking the connection (eg: to abort a transfer).
2715 * Some frames have to be silently ignored as well.
2716 */
2717 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
2718 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
2719 /* #5.1.1: The identifier of a newly
2720 * established stream MUST be numerically
2721 * greater than all streams that the initiating
2722 * endpoint has opened or reserved. This
2723 * governs streams that are opened using a
2724 * HEADERS frame and streams that are reserved
2725 * using PUSH_PROMISE. An endpoint that
2726 * receives an unexpected stream identifier
2727 * MUST respond with a connection error.
2728 */
2729 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02002730 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 +02002731 return 0;
2732 }
2733
Willy Tarreau4c08f122019-09-26 08:47:15 +02002734 if (h2s->flags & H2_SF_RST_RCVD &&
2735 !(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 +02002736 /* RFC7540#5.1:closed: an endpoint that
2737 * receives any frame other than PRIORITY after
2738 * receiving a RST_STREAM MUST treat that as a
2739 * stream error of type STREAM_CLOSED.
2740 *
2741 * Note that old streams fall into this category
2742 * and will lead to an RST being sent.
2743 *
2744 * However, we cannot generalize this to all frame types. Those
2745 * carrying compression state must still be processed before
2746 * being dropped or we'll desynchronize the decoder. This can
2747 * happen with request trailers received after sending an
2748 * RST_STREAM, or with header/trailers responses received after
2749 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02002750 *
2751 * In addition, since our CLOSED streams always carry the
2752 * RST_RCVD bit, we don't want to accidently catch valid
2753 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02002754 */
2755 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2756 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002757 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 +02002758 return 0;
2759 }
2760
2761 /* RFC7540#5.1:closed: if this state is reached as a
2762 * result of sending a RST_STREAM frame, the peer that
2763 * receives the RST_STREAM might have already sent
2764 * frames on the stream that cannot be withdrawn. An
2765 * endpoint MUST ignore frames that it receives on
2766 * closed streams after it has sent a RST_STREAM
2767 * frame. An endpoint MAY choose to limit the period
2768 * over which it ignores frames and treat frames that
2769 * arrive after this time as being in error.
2770 */
2771 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
2772 /* RFC7540#5.1:closed: any frame other than
2773 * PRIO/WU/RST in this state MUST be treated as
2774 * a connection error
2775 */
2776 if (h2c->dft != H2_FT_RST_STREAM &&
2777 h2c->dft != H2_FT_PRIORITY &&
2778 h2c->dft != H2_FT_WINDOW_UPDATE) {
2779 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02002780 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 +02002781 return 0;
2782 }
2783 }
2784 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002785 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02002786 return 1;
2787}
2788
Willy Tarreaubc933932017-10-09 16:21:43 +02002789/* process Rx frames to be demultiplexed */
2790static void h2_process_demux(struct h2c *h2c)
2791{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002792 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01002793 struct h2_fh hdr;
2794 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002795 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02002796
Willy Tarreau7838a792019-08-12 18:42:03 +02002797 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2798
Willy Tarreau081d4722017-05-16 21:51:05 +02002799 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002800 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02002801
2802 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
2803 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002804 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02002805 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02002806 goto out;
2807
Willy Tarreau52eed752017-09-22 15:05:09 +02002808 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
2809 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02002810 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002811 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02002812 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002813 sess_log(h2c->conn->owner);
2814 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002815 goto fail;
2816 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002817 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02002818
2819 h2c->max_id = 0;
2820 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002821 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02002822 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002823
2824 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002825 /* ensure that what is pending is a valid SETTINGS frame
2826 * without an ACK.
2827 */
Willy Tarreau7838a792019-08-12 18:42:03 +02002828 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 +02002829 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002830 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02002831 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002832 TRACE_PROTO("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 +02002833 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002834 sess_log(h2c->conn->owner);
2835 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002836 goto fail;
2837 }
2838
2839 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
2840 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau7838a792019-08-12 18:42:03 +02002841 TRACE_PROTO("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 +02002842 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2843 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002844 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002845 goto fail;
2846 }
2847
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02002848 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002849 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau7838a792019-08-12 18:42:03 +02002850 TRACE_PROTO("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 +02002851 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
2852 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002853 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002854 goto fail;
2855 }
2856
Willy Tarreau3bf69182018-12-21 15:34:50 +01002857 /* that's OK, switch to FRAME_P to process it. This is
2858 * a SETTINGS frame whose header has already been
2859 * deleted above.
2860 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01002861 padlen = 0;
2862 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002863 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002864 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002865
2866 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02002867 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02002868 int ret = 0;
2869
Willy Tarreau7838a792019-08-12 18:42:03 +02002870 if (!b_data(&h2c->dbuf)) {
2871 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
2872 break;
2873 }
2874
2875 if (h2c->st0 >= H2_CS_ERROR) {
2876 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02002877 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02002878 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002879
2880 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau30d05f32019-08-06 15:49:51 +02002881 h2c->rcvd_s = 0;
2882
Willy Tarreau7838a792019-08-12 18:42:03 +02002883 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Willy Tarreaua4428bd2018-12-22 18:11:41 +01002884 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr))
Willy Tarreau7e98c052017-10-10 15:56:59 +02002885 break;
2886
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02002887 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002888 TRACE_PROTO("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 +02002889 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002890 if (!h2c->nb_streams) {
2891 /* only log if no other stream can report the error */
2892 sess_log(h2c->conn->owner);
2893 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002894 break;
2895 }
2896
Christopher Fauletdd2a5622019-06-18 12:22:38 +02002897 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01002898 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
2899 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
2900 * we read the pad length and drop it from the remaining
2901 * payload (one byte + the 9 remaining ones = 10 total
2902 * removed), so we have a frame payload starting after the
2903 * pad len. Flow controlled frames (DATA) also count the
2904 * padlen in the flow control, so it must be adjusted.
2905 */
2906 if (hdr.len < 1) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002907 TRACE_PROTO("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 +01002908 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
2909 sess_log(h2c->conn->owner);
2910 goto fail;
2911 }
2912 hdr.len--;
2913
2914 if (b_data(&h2c->dbuf) < 10)
2915 break; // missing padlen
2916
2917 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
2918
2919 if (padlen > hdr.len) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002920 TRACE_PROTO("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 +01002921 /* RFC7540#6.1 : pad length = length of
2922 * frame payload or greater => error.
2923 */
2924 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2925 sess_log(h2c->conn->owner);
2926 goto fail;
2927 }
2928
2929 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
2930 h2c->rcvd_c++;
2931 h2c->rcvd_s++;
2932 }
2933 b_del(&h2c->dbuf, 1);
2934 }
2935 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01002936
2937 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02002938 h2c->dfl = hdr.len;
2939 h2c->dsi = hdr.sid;
2940 h2c->dft = hdr.ft;
2941 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01002942 h2c->dpl = padlen;
Willy Tarreau73db4342019-09-25 07:28:44 +02002943 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 +02002944 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01002945
2946 /* check for minimum basic frame format validity */
2947 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
2948 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002949 TRACE_PROTO("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 +01002950 h2c_error(h2c, ret);
2951 sess_log(h2c->conn->owner);
2952 goto fail;
2953 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002954 }
2955
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02002956 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
2957 * H2_CS_FRAME_P indicates an incomplete previous operation
2958 * (most often the first attempt) and requires some validity
2959 * checks for the frame and the current state. The two other
2960 * ones are set after completion (or abortion) and must skip
2961 * validity checks.
2962 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002963 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
2964
Willy Tarreau567beb82018-12-18 16:52:44 +01002965 if (tmp_h2s != h2s && h2s && h2s->cs &&
2966 (b_data(&h2s->rxbuf) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02002967 conn_xprt_read0_pending(h2c->conn) ||
2968 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02002969 (h2s->flags & H2_SF_ES_RCVD) ||
2970 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002971 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02002972 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 +01002973 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01002974 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002975 }
2976 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02002977
Willy Tarreau63864812019-08-07 14:25:20 +02002978 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02002979 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
2980 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01002981 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02002982 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01002983
Willy Tarreau7e98c052017-10-10 15:56:59 +02002984 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002985 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02002986 if (h2c->st0 == H2_CS_FRAME_P) {
2987 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002988 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02002989 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002990
Willy Tarreau7838a792019-08-12 18:42:03 +02002991 if (h2c->st0 == H2_CS_FRAME_A) {
2992 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 +02002993 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02002994 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002995 break;
2996
Willy Tarreaucf68c782017-10-10 17:11:41 +02002997 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02002998 if (h2c->st0 == H2_CS_FRAME_P) {
2999 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003000 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003001 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003002
Willy Tarreau7838a792019-08-12 18:42:03 +02003003 if (h2c->st0 == H2_CS_FRAME_A) {
3004 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 +02003005 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003006 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003007 break;
3008
Willy Tarreau26f95952017-07-27 17:18:30 +02003009 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003010 if (h2c->st0 == H2_CS_FRAME_P) {
3011 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 +02003012 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003013 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003014 break;
3015
Willy Tarreau61290ec2017-10-17 08:19:21 +02003016 case H2_FT_CONTINUATION:
Willy Tarreauea18f862018-12-22 20:19:26 +01003017 /* RFC7540#6.10: CONTINUATION may only be preceeded by
3018 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3019 * frames' parsers consume all following CONTINUATION
3020 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003021 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003022 TRACE_PROTO("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 +01003023 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3024 sess_log(h2c->conn->owner);
3025 goto fail;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003026
Willy Tarreau13278b42017-10-13 19:23:14 +02003027 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003028 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003029 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003030 if (h2c->flags & H2_CF_IS_BACK)
3031 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3032 else
3033 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003034 if (tmp_h2s) {
3035 h2s = tmp_h2s;
3036 ret = 1;
3037 }
3038 }
Willy Tarreau13278b42017-10-13 19:23:14 +02003039 break;
3040
Willy Tarreau454f9052017-10-26 19:40:35 +02003041 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003042 if (h2c->st0 == H2_CS_FRAME_P) {
3043 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003044 ret = h2c_frt_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003045 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003046
Willy Tarreau7838a792019-08-12 18:42:03 +02003047 if (h2c->st0 == H2_CS_FRAME_A) {
3048 TRACE_PROTO("sending stream WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003049 ret = h2c_send_strm_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003050 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003051 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003052
Willy Tarreau92153fc2017-12-03 19:46:19 +01003053 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003054 if (h2c->st0 == H2_CS_FRAME_P) {
3055 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003056 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003057 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003058 break;
3059
Willy Tarreaucd234e92017-08-18 10:59:39 +02003060 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003061 if (h2c->st0 == H2_CS_FRAME_P) {
3062 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 +02003063 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003064 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02003065 break;
3066
Willy Tarreaue96b0922017-10-30 00:28:29 +01003067 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003068 if (h2c->st0 == H2_CS_FRAME_P) {
3069 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003070 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003071 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01003072 break;
3073
Willy Tarreau1c661982017-10-30 13:52:01 +01003074 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003075 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003076 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003077 /* drop frames that we ignore. They may be larger than
3078 * the buffer so we drain all of their contents until
3079 * we reach the end.
3080 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003081 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3082 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003083 h2c->dfl -= ret;
3084 ret = h2c->dfl == 0;
3085 }
3086
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003087 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003088 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003089 if (h2s->st == H2_SS_ERROR) {
3090 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 +01003091 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003092 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003093
Willy Tarreau7838a792019-08-12 18:42:03 +02003094 if (h2c->st0 == H2_CS_FRAME_E) {
3095 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 +01003096 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003097 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003098
Willy Tarreau7e98c052017-10-10 15:56:59 +02003099 /* error or missing data condition met above ? */
Willy Tarreau7838a792019-08-12 18:42:03 +02003100 if (ret <= 0) {
3101 TRACE_DEVEL("insufficient data to proceed", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003102 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003103 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003104
3105 if (h2c->st0 != H2_CS_FRAME_H) {
Christopher Faulet5112a602019-09-26 16:38:28 +02003106 TRACE_DEVEL("stream error, skip frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
3107 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3108 b_del(&h2c->dbuf, ret);
3109 h2c->dfl -= ret;
3110 if (!h2c->dfl) {
3111 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3112 h2c->st0 = H2_CS_FRAME_H;
3113 h2c->dsi = -1;
3114 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003115 }
3116 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003117
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003118 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003119 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3120 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003121 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003122 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003123
Willy Tarreau52eed752017-09-22 15:05:09 +02003124 fail:
3125 /* we can go here on missing data, blocked response or error */
Willy Tarreau567beb82018-12-18 16:52:44 +01003126 if (h2s && h2s->cs &&
3127 (b_data(&h2s->rxbuf) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003128 conn_xprt_read0_pending(h2c->conn) ||
3129 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003130 (h2s->flags & H2_SF_ES_RCVD) ||
3131 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003132 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003133 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 +01003134 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003135 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003136 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003137
Willy Tarreau7838a792019-08-12 18:42:03 +02003138 if (old_iw != h2c->miw) {
3139 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003140 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003141 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003142
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003143 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003144 out:
3145 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreaubc933932017-10-09 16:21:43 +02003146}
3147
3148/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3149 * the end.
3150 */
3151static int h2_process_mux(struct h2c *h2c)
3152{
Olivier Houchard998410a2019-04-15 19:23:37 +02003153 struct h2s *h2s, *h2s_back;
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003154
Willy Tarreau7838a792019-08-12 18:42:03 +02003155 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3156
Willy Tarreau01b44822018-10-03 14:26:37 +02003157 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3158 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3159 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3160 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
3161 if (h2c->st0 == H2_CS_ERROR) {
3162 h2c->st0 = H2_CS_ERROR2;
3163 sess_log(h2c->conn->owner);
3164 }
3165 goto fail;
3166 }
3167 h2c->st0 = H2_CS_SETTINGS1;
3168 }
3169 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003170 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003171 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003172 }
3173
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003174 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003175 if (h2c->rcvd_s > 0 &&
3176 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3177 h2c_send_strm_wu(h2c) < 0)
3178 goto fail;
3179
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003180 if (h2c->rcvd_c > 0 &&
3181 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3182 h2c_send_conn_wu(h2c) < 0)
3183 goto fail;
3184
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003185 /* First we always process the flow control list because the streams
3186 * waiting there were already elected for immediate emission but were
3187 * blocked just on this.
3188 */
3189
Olivier Houchard998410a2019-04-15 19:23:37 +02003190 list_for_each_entry_safe(h2s, h2s_back, &h2c->fctl_list, list) {
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003191 if (h2c->mws <= 0 || h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3192 h2c->st0 >= H2_CS_ERROR)
3193 break;
Olivier Houchard998410a2019-04-15 19:23:37 +02003194
Willy Tarreauc234ae32019-05-13 17:56:11 +02003195 if (LIST_ADDED(&h2s->sending_list))
Olivier Houchardd360ac62019-03-22 17:37:16 +01003196 continue;
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003197
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003198 h2s->flags &= ~H2_SF_BLK_ANY;
Olivier Houchard998410a2019-04-15 19:23:37 +02003199 /* For some reason, the upper layer failed to subsribe again,
3200 * so remove it from the send_list
3201 */
3202 if (!h2s->send_wait) {
3203 LIST_DEL_INIT(&h2s->list);
3204 continue;
3205 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003206 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Olivier Houchardd360ac62019-03-22 17:37:16 +01003207 LIST_ADDQ(&h2c->sending_list, &h2s->sending_list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003208 tasklet_wakeup(h2s->send_wait->tasklet);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003209 }
3210
Olivier Houchard998410a2019-04-15 19:23:37 +02003211 list_for_each_entry_safe(h2s, h2s_back, &h2c->send_list, list) {
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003212 if (h2c->st0 >= H2_CS_ERROR || h2c->flags & H2_CF_MUX_BLOCK_ANY)
3213 break;
Olivier Houchard998410a2019-04-15 19:23:37 +02003214
Willy Tarreauc234ae32019-05-13 17:56:11 +02003215 if (LIST_ADDED(&h2s->sending_list))
Olivier Houchardd360ac62019-03-22 17:37:16 +01003216 continue;
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003217
Olivier Houchard998410a2019-04-15 19:23:37 +02003218 /* For some reason, the upper layer failed to subsribe again,
3219 * so remove it from the send_list
3220 */
3221 if (!h2s->send_wait) {
3222 LIST_DEL_INIT(&h2s->list);
3223 continue;
3224 }
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003225 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003226 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Olivier Houchardd360ac62019-03-22 17:37:16 +01003227 LIST_ADDQ(&h2c->sending_list, &h2s->sending_list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003228 tasklet_wakeup(h2s->send_wait->tasklet);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003229 }
3230
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003231 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003232 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003233 if (h2c->st0 == H2_CS_ERROR) {
3234 if (h2c->max_id >= 0) {
3235 h2c_send_goaway_error(h2c, NULL);
3236 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003237 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003238 }
3239
3240 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3241 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003242 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003243 done:
3244 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3245 return 1;
3246 out0:
3247 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3248 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003249}
3250
Willy Tarreau62f52692017-10-08 23:01:42 +02003251
Willy Tarreau479998a2018-11-18 06:30:59 +01003252/* Attempt to read data, and subscribe if none available.
3253 * The function returns 1 if data has been received, otherwise zero.
3254 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003255static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003256{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003257 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003258 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003259 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003260 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003261
Willy Tarreau7838a792019-08-12 18:42:03 +02003262 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3263
3264 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3265 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003266 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003267 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003268
Willy Tarreau7838a792019-08-12 18:42:03 +02003269 if (!h2_recv_allowed(h2c)) {
3270 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003271 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003272 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003273
Willy Tarreau44e973f2018-03-01 17:49:30 +01003274 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003275 if (!buf) {
3276 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003277 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003278 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003279 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003280
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003281 b_realign_if_empty(buf);
3282 if (!b_data(buf)) {
3283 /* try to pre-align the buffer like the
3284 * rxbufs will be to optimize memory copies. We'll make
3285 * sure that the frame header lands at the end of the
3286 * HTX block to alias it upon recv. We cannot use the
3287 * head because rcv_buf() will realign the buffer if
3288 * it's empty. Thus we cheat and pretend we already
3289 * have a few bytes there.
3290 */
3291 max = buf_room_for_htx_data(buf) + 9;
3292 buf->head = sizeof(struct htx) - 9;
3293 }
3294 else
3295 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003296
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003297 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003298
Willy Tarreau7838a792019-08-12 18:42:03 +02003299 if (max && !ret && h2_recv_allowed(h2c)) {
3300 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003301 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003302 } else if (ret)
3303 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn,,, (void*)(long)ret);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003304
Olivier Houcharda1411e62018-08-17 18:42:48 +02003305 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003306 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003307 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003308 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003309 }
3310
Willy Tarreau7838a792019-08-12 18:42:03 +02003311 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003312 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02003313 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK);
3314 }
3315
3316 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003317 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003318}
3319
Willy Tarreau479998a2018-11-18 06:30:59 +01003320/* Try to send data if possible.
3321 * The function returns 1 if data have been sent, otherwise zero.
3322 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003323static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003324{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003325 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003326 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003327 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003328
Willy Tarreau7838a792019-08-12 18:42:03 +02003329 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003330
Willy Tarreau7838a792019-08-12 18:42:03 +02003331 if (conn->flags & CO_FL_ERROR) {
3332 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3333 return 1;
3334 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003335
Willy Tarreaua2af5122017-10-09 11:56:46 +02003336 if (conn->flags & (CO_FL_HANDSHAKE|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
3337 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003338 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003339 }
3340
Willy Tarreaubc933932017-10-09 16:21:43 +02003341 /* This loop is quite simple : it tries to fill as much as it can from
3342 * pending streams into the existing buffer until it's reportedly full
3343 * or the end of send requests is reached. Then it tries to send this
3344 * buffer's contents out, marks it not full if at least one byte could
3345 * be sent, and tries again.
3346 *
3347 * The snd_buf() function normally takes a "flags" argument which may
3348 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3349 * data immediately comes and CO_SFL_STREAMER to indicate that the
3350 * connection is streaming lots of data (used to increase TLS record
3351 * size at the expense of latency). The former can be sent any time
3352 * there's a buffer full flag, as it indicates at least one stream
3353 * attempted to send and failed so there are pending data. An
3354 * alternative would be to set it as long as there's an active stream
3355 * but that would be problematic for ACKs until we have an absolute
3356 * guarantee that all waiters have at least one byte to send. The
3357 * latter should possibly not be set for now.
3358 */
3359
3360 done = 0;
3361 while (!done) {
3362 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003363 unsigned int released = 0;
3364 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003365
3366 /* fill as much as we can into the current buffer */
3367 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3368 done = h2_process_mux(h2c);
3369
Olivier Houchard2b094432019-01-29 18:28:36 +01003370 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003371 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003372
Willy Tarreaubc933932017-10-09 16:21:43 +02003373 if (conn->flags & CO_FL_ERROR)
3374 break;
3375
3376 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3377 flags |= CO_SFL_MSG_MORE;
3378
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003379 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3380 if (b_data(buf)) {
3381 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003382 if (!ret) {
3383 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003384 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003385 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003386 sent = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003387 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn,, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003388 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003389 if (b_data(buf)) {
3390 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003391 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003392 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003393 }
3394 b_free(buf);
3395 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003396 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003397
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003398 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02003399 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003400
Willy Tarreaubc933932017-10-09 16:21:43 +02003401 /* wrote at least one byte, the buffer is not full anymore */
3402 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
3403 }
3404
Willy Tarreaua2af5122017-10-09 11:56:46 +02003405 if (conn->flags & CO_FL_SOCK_WR_SH) {
3406 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003407 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003408 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003409 /* We're not full anymore, so we can wake any task that are waiting
3410 * for us.
3411 */
Willy Tarreaucec60052019-09-25 07:57:31 +02003412 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H) {
Olivier Houchardd360ac62019-03-22 17:37:16 +01003413 struct h2s *h2s;
3414
3415 list_for_each_entry(h2s, &h2c->send_list, list) {
3416 if (h2c->st0 >= H2_CS_ERROR || h2c->flags & H2_CF_MUX_BLOCK_ANY)
3417 break;
Olivier Houchard998410a2019-04-15 19:23:37 +02003418
Willy Tarreauc234ae32019-05-13 17:56:11 +02003419 if (LIST_ADDED(&h2s->sending_list))
Olivier Houchardd360ac62019-03-22 17:37:16 +01003420 continue;
3421
Olivier Houchard998410a2019-04-15 19:23:37 +02003422 /* For some reason, the upper layer failed to subsribe again,
3423 * so remove it from the send_list
3424 */
3425 if (!h2s->send_wait) {
3426 LIST_DEL_INIT(&h2s->list);
3427 continue;
3428 }
Olivier Houchardd360ac62019-03-22 17:37:16 +01003429 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003430 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Willy Tarreau7838a792019-08-12 18:42:03 +02003431 TRACE_DEVEL("waking up pending stream", H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn, h2s);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003432 tasklet_wakeup(h2s->send_wait->tasklet);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003433 LIST_ADDQ(&h2c->sending_list, &h2s->sending_list);
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02003434 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003435 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003436 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003437 if (!br_data(h2c->mbuf)) {
3438 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003439 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003440 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003441schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003442 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3443 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003444 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003445 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003446
Willy Tarreau7838a792019-08-12 18:42:03 +02003447 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003448 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003449}
3450
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003451/* this is the tasklet referenced in h2c->wait_event.tasklet */
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003452static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short status)
3453{
3454 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003455 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003456
Willy Tarreau7838a792019-08-12 18:42:03 +02003457 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3458
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003459 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003460 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003461 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003462 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003463 if (ret || b_data(&h2c->dbuf))
Olivier Houchard7505f942018-08-21 18:10:44 +02003464 h2_process(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003465
3466 TRACE_LEAVE(H2_EV_H2C_WAKE);
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003467 return NULL;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003468}
Willy Tarreaua2af5122017-10-09 11:56:46 +02003469
Willy Tarreau62f52692017-10-08 23:01:42 +02003470/* callback called on any event by the connection handler.
3471 * It applies changes and returns zero, or < 0 if it wants immediate
3472 * destruction of the connection (which normally doesn not happen in h2).
3473 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003474static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003475{
Olivier Houchard7505f942018-08-21 18:10:44 +02003476 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003477
Willy Tarreau7838a792019-08-12 18:42:03 +02003478 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3479
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003480 if (b_data(&h2c->dbuf) && !(h2c->flags & H2_CF_DEM_BLOCK_ANY)) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003481 h2_process_demux(h2c);
3482
3483 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003484 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003485
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003486 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003487 h2c->flags &= ~H2_CF_DEM_DFULL;
3488 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003489 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003490
Willy Tarreau0b37d652018-10-03 10:33:02 +02003491 if (unlikely(h2c->proxy->state == PR_STSTOPPED)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01003492 /* frontend is stopping, reload likely in progress, let's try
3493 * to announce a graceful shutdown if not yet done. We don't
3494 * care if it fails, it will be tried again later.
3495 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003496 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
Willy Tarreau8ec14062017-12-30 18:08:13 +01003497 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3498 if (h2c->last_sid < 0)
3499 h2c->last_sid = (1U << 31) - 1;
3500 h2c_send_goaway_error(h2c, NULL);
3501 }
3502 }
3503
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003504 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003505 * If we received early data, and the handshake is done, wake
3506 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003507 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003508 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
3509 (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_HANDSHAKE | CO_FL_EARLY_DATA)) == CO_FL_EARLY_DATA) {
3510 struct eb32_node *node;
3511 struct h2s *h2s;
3512
3513 h2c->flags |= H2_CF_WAIT_FOR_HS;
3514 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
3515
3516 while (node) {
3517 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01003518 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01003519 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003520 node = eb32_next(node);
3521 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003522 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003523
Willy Tarreau26bd7612017-10-09 16:47:04 +02003524 if (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01003525 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
3526 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
3527 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02003528 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003529
3530 if (eb_is_empty(&h2c->streams_by_id)) {
3531 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003532 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003533 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003534 return -1;
3535 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003536 }
3537
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003538 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01003539 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003540
Olivier Houchard53216e72018-10-10 15:46:36 +02003541 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
3542 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
3543 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02003544 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02003545 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
3546 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02003547 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003548
Willy Tarreau3f133572017-10-31 19:21:06 +01003549 if (h2c->task) {
Willy Tarreau73481192019-06-07 08:20:46 +02003550 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3551 task_queue(h2c->task);
Willy Tarreauea392822017-10-31 10:02:25 +01003552 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003553
Olivier Houchard7505f942018-08-21 18:10:44 +02003554 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003555 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003556 return 0;
3557}
3558
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003559/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003560static int h2_wake(struct connection *conn)
3561{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003562 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02003563 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003564
Willy Tarreau7838a792019-08-12 18:42:03 +02003565 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3566 ret = h2_process(h2c);
3567 TRACE_LEAVE(H2_EV_H2C_WAKE);
3568 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003569}
3570
Willy Tarreauea392822017-10-31 10:02:25 +01003571/* Connection timeout management. The principle is that if there's no receipt
3572 * nor sending for a certain amount of time, the connection is closed. If the
3573 * MUX buffer still has lying data or is not allocatable, the connection is
3574 * immediately killed. If it's allocatable and empty, we attempt to send a
3575 * GOAWAY frame.
3576 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02003577static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state)
Willy Tarreauea392822017-10-31 10:02:25 +01003578{
Olivier Houchard9f6af332018-05-25 14:04:04 +02003579 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01003580 int expired = tick_is_expired(t->expire, now_ms);
3581
Willy Tarreau7838a792019-08-12 18:42:03 +02003582 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
3583
3584 if (!expired && h2c) {
3585 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreauea392822017-10-31 10:02:25 +01003586 return t;
Willy Tarreau7838a792019-08-12 18:42:03 +02003587 }
Willy Tarreauea392822017-10-31 10:02:25 +01003588
Olivier Houchard3f795f72019-04-17 22:51:06 +02003589 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02003590
3591 if (!h2c) {
3592 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02003593 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02003594 return NULL;
3595 }
3596
3597 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01003598 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02003599 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01003600
Willy Tarreau662fafc2019-05-26 09:43:07 +02003601 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01003602 /* don't even try to send a GOAWAY, the buffer is stuck */
3603 h2c->flags |= H2_CF_GOAWAY_FAILED;
3604 }
3605
3606 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01003607 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01003608 if (h2c_send_goaway_error(h2c, NULL) <= 0)
3609 h2c->flags |= H2_CF_GOAWAY_FAILED;
3610
Willy Tarreau662fafc2019-05-26 09:43:07 +02003611 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003612 unsigned int released = 0;
3613 struct buffer *buf;
3614
3615 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3616 if (b_data(buf)) {
3617 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
3618 if (!ret)
3619 break;
3620 b_del(buf, ret);
3621 if (b_data(buf))
3622 break;
3623 b_free(buf);
3624 released++;
3625 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02003626 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003627
3628 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02003629 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau787db9a2018-06-14 18:31:46 +02003630 }
Willy Tarreauea392822017-10-31 10:02:25 +01003631
Willy Tarreau0975f112018-03-29 15:22:59 +02003632 /* either we can release everything now or it will be done later once
3633 * the last stream closes.
3634 */
3635 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02003636 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01003637
Willy Tarreau7838a792019-08-12 18:42:03 +02003638 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01003639 return NULL;
3640}
3641
3642
Willy Tarreau62f52692017-10-08 23:01:42 +02003643/*******************************************/
3644/* functions below are used by the streams */
3645/*******************************************/
3646
3647/*
3648 * Attach a new stream to a connection
3649 * (Used for outgoing connections)
3650 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003651static struct conn_stream *h2_attach(struct connection *conn, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02003652{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003653 struct conn_stream *cs;
3654 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003655 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003656
Willy Tarreau7838a792019-08-12 18:42:03 +02003657 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003658 cs = cs_new(conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003659 if (!cs) {
3660 TRACE_DEVEL("leaving on CS allocation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003661 return NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02003662 }
Olivier Houchardf502aca2018-12-14 19:42:40 +01003663 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003664 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003665 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003666 cs_free(cs);
3667 return NULL;
3668 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003669 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003670 return cs;
Willy Tarreau62f52692017-10-08 23:01:42 +02003671}
3672
Willy Tarreaufafd3982018-11-18 21:29:20 +01003673/* Retrieves the first valid conn_stream from this connection, or returns NULL.
3674 * We have to scan because we may have some orphan streams. It might be
3675 * beneficial to scan backwards from the end to reduce the likeliness to find
3676 * orphans.
3677 */
3678static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
3679{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003680 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01003681 struct h2s *h2s;
3682 struct eb32_node *node;
3683
3684 node = eb32_first(&h2c->streams_by_id);
3685 while (node) {
3686 h2s = container_of(node, struct h2s, by_id);
3687 if (h2s->cs)
3688 return h2s->cs;
3689 node = eb32_next(node);
3690 }
3691 return NULL;
3692}
3693
Willy Tarreau62f52692017-10-08 23:01:42 +02003694/*
Olivier Houchard060ed432018-11-06 16:32:42 +01003695 * Destroy the mux and the associated connection, if it is no longer used
3696 */
Christopher Faulet73c12072019-04-08 11:23:22 +02003697static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01003698{
Christopher Faulet73c12072019-04-08 11:23:22 +02003699 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01003700
Willy Tarreau7838a792019-08-12 18:42:03 +02003701 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003702 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003703 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003704 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01003705}
3706
3707/*
Willy Tarreau62f52692017-10-08 23:01:42 +02003708 * Detach the stream from the connection and possibly release the connection.
3709 */
3710static void h2_detach(struct conn_stream *cs)
3711{
Willy Tarreau60935142017-10-16 18:11:19 +02003712 struct h2s *h2s = cs->ctx;
3713 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003714 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02003715
Willy Tarreau7838a792019-08-12 18:42:03 +02003716 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
3717
Willy Tarreau60935142017-10-16 18:11:19 +02003718 cs->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02003719 if (!h2s) {
3720 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02003721 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02003722 }
Willy Tarreau60935142017-10-16 18:11:19 +02003723
Olivier Houchard998410a2019-04-15 19:23:37 +02003724 /* The stream is about to die, so no need to attempt to run its task */
Willy Tarreauc234ae32019-05-13 17:56:11 +02003725 if (LIST_ADDED(&h2s->sending_list) &&
Olivier Houchard998410a2019-04-15 19:23:37 +02003726 h2s->send_wait != &h2s->wait_event) {
Willy Tarreau86eded62019-06-14 14:47:49 +02003727 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchard998410a2019-04-15 19:23:37 +02003728 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd9986ed2019-05-09 13:24:08 +02003729 /*
3730 * At this point, the stream_interface is supposed to have called
3731 * h2_unsubscribe(), so the only way there's still a
3732 * subscription that came from the stream_interface (as we
3733 * can subscribe ourself, in h2_do_shutw() and h2_do_shutr(),
3734 * without the stream_interface involved) is that we subscribed
3735 * for sending, we woke the tasklet up and removed the
3736 * SUB_RETRY_SEND flag, so the stream_interface would not
3737 * know it has to unsubscribe for send, but the tasklet hasn't
3738 * run yet. Make sure to handle that by explicitely setting
3739 * send_wait to NULL, as nothing else will do it for us.
3740 */
3741 h2s->send_wait = NULL;
Olivier Houchard998410a2019-04-15 19:23:37 +02003742 }
3743
Olivier Houchardf502aca2018-12-14 19:42:40 +01003744 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02003745 h2c = h2s->h2c;
3746 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02003747 h2c->nb_cs--;
Willy Tarreaufa1d3572019-01-31 10:31:51 +01003748 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
3749 !h2_frt_has_too_many_cs(h2c)) {
3750 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02003751 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003752 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02003753 }
Willy Tarreau60935142017-10-16 18:11:19 +02003754
Willy Tarreau22cf59b2017-11-10 11:42:33 +01003755 /* this stream may be blocked waiting for some data to leave (possibly
3756 * an ES or RST frame), so orphan it in this case.
3757 */
Willy Tarreau3041fcc2018-03-29 15:41:32 +02003758 if (!(cs->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02003759 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003760 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) && (h2s->send_wait || h2s->recv_wait)) {
3761 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01003762 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02003763 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01003764
Willy Tarreau45f752e2017-10-30 15:44:59 +01003765 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
3766 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
3767 /* unblock the connection if it was blocked on this
3768 * stream.
3769 */
3770 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
3771 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003772 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01003773 }
3774
Willy Tarreau71049cc2018-03-28 13:56:39 +02003775 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02003776
Christopher Faulet9b79a102019-07-15 11:22:56 +02003777 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01003778 if (!(h2c->conn->flags &
3779 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
3780 if (!h2c->conn->owner) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01003781 h2c->conn->owner = sess;
Olivier Houchard351411f2018-12-27 17:20:54 +01003782 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
3783 h2c->conn->owner = NULL;
3784 if (eb_is_empty(&h2c->streams_by_id)) {
3785 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn))
3786 /* The server doesn't want it, let's kill the connection right away */
3787 h2c->conn->mux->destroy(h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003788 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
Olivier Houchard351411f2018-12-27 17:20:54 +01003789 return;
3790 }
3791 }
Olivier Houchard8a786902018-12-15 16:05:40 +01003792 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003793 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletb2d930e2019-09-26 16:15:10 +02003794 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003795 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
Willy Tarreaufe1c9082019-08-30 14:57:17 +02003796 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003797 return;
Christopher Fauletb2d930e2019-09-26 16:15:10 +02003798 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003799 }
Olivier Houchard8a786902018-12-15 16:05:40 +01003800 /* Never ever allow to reuse a connection from a non-reuse backend */
3801 if ((h2c->proxy->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
3802 h2c->conn->flags |= CO_FL_PRIVATE;
Willy Tarreauc234ae32019-05-13 17:56:11 +02003803 if (!LIST_ADDED(&h2c->conn->list) && h2c->nb_streams < h2c->streams_limit) {
Olivier Houchard8a786902018-12-15 16:05:40 +01003804 struct server *srv = objt_server(h2c->conn->target);
3805
3806 if (srv) {
3807 if (h2c->conn->flags & CO_FL_PRIVATE)
3808 LIST_ADD(&srv->priv_conns[tid], &h2c->conn->list);
3809 else
3810 LIST_ADD(&srv->idle_conns[tid], &h2c->conn->list);
3811 }
3812
3813 }
3814 }
3815 }
3816
Willy Tarreaue323f342018-03-28 13:51:45 +02003817 /* We don't want to close right now unless we're removing the
3818 * last stream, and either the connection is in error, or it
3819 * reached the ID already specified in a GOAWAY frame received
3820 * or sent (as seen by last_sid >= 0).
3821 */
Olivier Houchard7a977432019-03-21 15:47:13 +01003822 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02003823 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02003824 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02003825 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02003826 }
3827 else if (h2c->task) {
Willy Tarreau73481192019-06-07 08:20:46 +02003828 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3829 task_queue(h2c->task);
Willy Tarreau7838a792019-08-12 18:42:03 +02003830 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02003831 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003832 else
3833 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003834}
3835
Willy Tarreau88bdba32019-05-13 18:17:53 +02003836/* Performs a synchronous or asynchronous shutr(). */
3837static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02003838{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003839 struct h2c *h2c = h2s->h2c;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003840 struct wait_event *sw = &h2s->wait_event;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003841
Willy Tarreauf983d002019-05-14 10:40:21 +02003842 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003843 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003844
Willy Tarreau7838a792019-08-12 18:42:03 +02003845 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
3846
Willy Tarreau18059042019-01-31 19:12:48 +01003847 /* a connstream may require us to immediately kill the whole connection
3848 * for example because of a "tcp-request content reject" rule that is
3849 * normally used to limit abuse. In this case we schedule a goaway to
3850 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01003851 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003852 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01003853 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003854 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01003855 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
3856 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
3857 }
Christopher Faulet35757d32019-03-07 15:51:33 +01003858 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
3859 /* Nothing was never sent for this stream, so reset with
3860 * REFUSED_STREAM error to let the client retry the
3861 * request.
3862 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003863 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01003864 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
3865 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02003866 else {
3867 /* a final response was already provided, we don't want this
3868 * stream anymore. This may happen when the server responds
3869 * before the end of an upload and closes quickly (redirect,
3870 * deny, ...)
3871 */
3872 h2s_error(h2s, H2_ERR_CANCEL);
3873 }
Willy Tarreau18059042019-01-31 19:12:48 +01003874
Willy Tarreau90c32322017-11-24 08:00:30 +01003875 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003876 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003877 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01003878
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003879 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003880 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01003881 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003882 done:
3883 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02003884 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003885 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003886add_to_list:
Willy Tarreauc234ae32019-05-13 17:56:11 +02003887 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003888 sw->events |= SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003889 if (h2s->flags & H2_SF_BLK_MFCTL) {
3890 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
3891 h2s->send_wait = sw;
3892 } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) {
3893 h2s->send_wait = sw;
3894 LIST_ADDQ(&h2c->send_list, &h2s->list);
3895 }
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003896 }
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003897 /* Let the handler know we want shutr */
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003898 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02003899 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003900 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02003901}
3902
Willy Tarreau88bdba32019-05-13 18:17:53 +02003903/* Performs a synchronous or asynchronous shutw(). */
3904static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02003905{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003906 struct h2c *h2c = h2s->h2c;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003907 struct wait_event *sw = &h2s->wait_event;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003908
Willy Tarreaucfba9d62019-08-06 10:30:58 +02003909 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003910 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003911
Willy Tarreau7838a792019-08-12 18:42:03 +02003912 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
3913
Willy Tarreaucfba9d62019-08-06 10:30:58 +02003914 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01003915 /* we can cleanly close using an empty data frame only after headers */
3916
3917 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
3918 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003919 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01003920
3921 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01003922 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01003923 else
3924 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003925 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01003926 /* a connstream may require us to immediately kill the whole connection
3927 * for example because of a "tcp-request content reject" rule that is
3928 * normally used to limit abuse. In this case we schedule a goaway to
3929 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01003930 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003931 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01003932 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003933 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01003934 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
3935 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
3936 }
Christopher Faulet35757d32019-03-07 15:51:33 +01003937 else {
3938 /* Nothing was never sent for this stream, so reset with
3939 * REFUSED_STREAM error to let the client retry the
3940 * request.
3941 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003942 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01003943 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
3944 }
Willy Tarreau18059042019-01-31 19:12:48 +01003945
Willy Tarreau90c32322017-11-24 08:00:30 +01003946 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003947 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003948 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01003949
Willy Tarreau00dd0782018-03-01 16:31:34 +01003950 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003951 }
3952
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003953 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003954 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02003955
3956 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
3957
Willy Tarreau88bdba32019-05-13 18:17:53 +02003958 done:
3959 h2s->flags &= ~H2_SF_WANT_SHUTW;
3960 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003961
3962 add_to_list:
Willy Tarreauc234ae32019-05-13 17:56:11 +02003963 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003964 sw->events |= SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003965 if (h2s->flags & H2_SF_BLK_MFCTL) {
3966 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
3967 h2s->send_wait = sw;
3968 } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) {
3969 h2s->send_wait = sw;
3970 LIST_ADDQ(&h2c->send_list, &h2s->list);
3971 }
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003972 }
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003973 /* let the handler know we want to shutw */
3974 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau7838a792019-08-12 18:42:03 +02003975 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003976 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003977}
3978
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003979/* This is the tasklet referenced in h2s->wait_event.tasklet, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003980 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
3981 * and prevented the last frame from being emitted.
3982 */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003983static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state)
3984{
3985 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02003986 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003987
Willy Tarreau7838a792019-08-12 18:42:03 +02003988 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
3989
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003990 LIST_DEL_INIT(&h2s->sending_list);
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003991 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003992 h2_do_shutw(h2s);
3993
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003994 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003995 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003996
Willy Tarreau88bdba32019-05-13 18:17:53 +02003997 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003998 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003999 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004000
Willy Tarreau88bdba32019-05-13 18:17:53 +02004001 if (!h2s->cs) {
4002 h2s_destroy(h2s);
4003 if (h2c_is_dead(h2c))
4004 h2_release(h2c);
4005 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004006 }
4007
Willy Tarreau7838a792019-08-12 18:42:03 +02004008 TRACE_LEAVE(H2_EV_STRM_SHUT);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004009 return NULL;
Willy Tarreau62f52692017-10-08 23:01:42 +02004010}
4011
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004012/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004013static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
4014{
4015 struct h2s *h2s = cs->ctx;
4016
Willy Tarreau7838a792019-08-12 18:42:03 +02004017 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004018 if (cs->flags & CS_FL_KILL_CONN)
4019 h2s->flags |= H2_SF_KILL_CONN;
4020
Willy Tarreau7838a792019-08-12 18:42:03 +02004021 if (mode)
4022 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004023
Willy Tarreau7838a792019-08-12 18:42:03 +02004024 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004025}
4026
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004027/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004028static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
4029{
4030 struct h2s *h2s = cs->ctx;
4031
Willy Tarreau7838a792019-08-12 18:42:03 +02004032 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004033 if (cs->flags & CS_FL_KILL_CONN)
4034 h2s->flags |= H2_SF_KILL_CONN;
4035
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004036 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004037 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004038}
4039
Christopher Faulet9b79a102019-07-15 11:22:56 +02004040/* Decode the payload of a HEADERS frame and produce the HTX request or response
4041 * depending on the connection's side. Returns a positive value on success, a
4042 * negative value on failure, or 0 if it couldn't proceed. May report connection
4043 * errors in h2c->errcode if the frame is non-decodable and the connection
4044 * unrecoverable. In absence of connection error when a failure is reported, the
4045 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004046 *
4047 * The function may fold CONTINUATION frames into the initial HEADERS frame
4048 * by removing padding and next frame header, then moving the CONTINUATION
4049 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4050 * leaving a hole between the main frame and the beginning of the next one.
4051 * The possibly remaining incomplete or next frame at the end may be moved
4052 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4053 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4054 *
4055 * A buffer at the beginning of processing may look like this :
4056 *
4057 * ,---.---------.-----.--------------.--------------.------.---.
4058 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4059 * `---^---------^-----^--------------^--------------^------^---'
4060 * | | <-----> | |
4061 * area | dpl | wrap
4062 * |<--------------> |
4063 * | dfl |
4064 * |<-------------------------------------------------->|
4065 * head data
4066 *
4067 * Padding is automatically overwritten when folding, participating to the
4068 * hole size after dfl :
4069 *
4070 * ,---.------------------------.-----.--------------.------.---.
4071 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4072 * `---^------------------------^-----^--------------^------^---'
4073 * | | <-----> | |
4074 * area | hole | wrap
4075 * |<-----------------------> |
4076 * | dfl |
4077 * |<-------------------------------------------------->|
4078 * head data
4079 *
4080 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4081 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4082 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004083 *
4084 * The <flags> field must point to either the stream's flags or to a copy of it
4085 * so that the function can update the following flags :
4086 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004087 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004088 *
4089 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4090 * decoding, in order to detect if we're dealing with a headers or a trailers
4091 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004092 */
Willy Tarreau4790f7c2019-01-24 11:33:02 +01004093static int h2c_decode_headers(struct h2c *h2c, struct buffer *rxbuf, uint32_t *flags, unsigned long long *body_len)
Willy Tarreau13278b42017-10-13 19:23:14 +02004094{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004095 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004096 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004097 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004098 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004099 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004100 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004101 int flen; // header frame len
4102 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004103 int ret = 0;
4104 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004105 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004106
Willy Tarreau7838a792019-08-12 18:42:03 +02004107 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4108
Willy Tarreauea18f862018-12-22 20:19:26 +01004109next_frame:
4110 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4111 goto leave; // incomplete input frame
4112
4113 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4114 * this case, we'll try to paste it immediately after the initial
4115 * HEADERS frame payload and kill any possible padding. The initial
4116 * frame's length will be increased to represent the concatenation
4117 * of the two frames. The next frame is read from position <tlen>
4118 * and written at position <flen> (minus padding if some is present).
4119 */
4120 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4121 struct h2_fh hdr;
4122 int clen; // CONTINUATION frame's payload length
4123
Willy Tarreau7838a792019-08-12 18:42:03 +02004124 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 +01004125 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4126 /* no more data, the buffer may be full, either due to
4127 * too large a frame or because of too large a hole that
4128 * we're going to compact at the end.
4129 */
4130 goto leave;
4131 }
4132
4133 if (hdr.ft != H2_FT_CONTINUATION) {
4134 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004135 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 +01004136 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
4137 goto fail;
4138 }
4139
4140 if (hdr.sid != h2c->dsi) {
4141 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004142 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 +01004143 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
4144 goto fail;
4145 }
4146
4147 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4148 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004149 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 +01004150 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4151 goto fail;
4152 }
4153
4154 /* detect when we must stop aggragating frames */
4155 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4156
4157 /* Take as much as we can of the CONTINUATION frame's payload */
4158 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4159 if (clen > hdr.len)
4160 clen = hdr.len;
4161
4162 /* Move the frame's payload over the padding, hole and frame
4163 * header. At least one of hole or dpl is null (see diagrams
4164 * above). The hole moves after the new aggragated frame.
4165 */
4166 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole + 9), clen, -(h2c->dpl + hole + 9));
4167 h2c->dfl += clen - h2c->dpl;
4168 hole += h2c->dpl + 9;
4169 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004170 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 +01004171 goto next_frame;
4172 }
4173
4174 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004175
Willy Tarreau13278b42017-10-13 19:23:14 +02004176 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004177 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004178 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004179 copy = alloc_trash_chunk();
4180 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004181 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 +02004182 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4183 goto fail;
4184 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004185 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4186 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4187 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004188 }
4189
Willy Tarreau13278b42017-10-13 19:23:14 +02004190 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4191 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004192 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004193 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004194 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 +01004195 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004196 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004197 }
4198
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004199 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004200 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 +01004201 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4202 goto fail;
4203 }
4204
Willy Tarreau13278b42017-10-13 19:23:14 +02004205 hdrs += 5; // stream dep = 4, weight = 1
4206 flen -= 5;
4207 }
4208
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004209 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004210 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 +01004211 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004212 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004213 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004214
Willy Tarreau937f7602018-02-26 15:22:17 +01004215 /* we can't retry a failed decompression operation so we must be very
4216 * careful not to take any risks. In practice the output buffer is
4217 * always empty except maybe for trailers, in which case we simply have
4218 * to wait for the upper layer to finish consuming what is available.
4219 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004220 htx = htx_from_buf(rxbuf);
4221 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004222 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 +02004223 h2c->flags |= H2_CF_DEM_SFULL;
4224 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004225 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004226
Willy Tarreau25919232019-01-03 14:48:18 +01004227 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004228 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4229 sizeof(list)/sizeof(list[0]), tmp);
4230 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004231 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 +01004232 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4233 goto fail;
4234 }
4235
Willy Tarreau25919232019-01-03 14:48:18 +01004236 /* The PACK decompressor was updated, let's update the input buffer and
4237 * the parser's state to commit these changes and allow us to later
4238 * fail solely on the stream if needed.
4239 */
4240 b_del(&h2c->dbuf, h2c->dfl + hole);
4241 h2c->dfl = hole = 0;
4242 h2c->st0 = H2_CS_FRAME_H;
4243
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004244 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004245 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004246
Willy Tarreau88d138e2019-01-02 19:38:14 +01004247 if (*flags & H2_SF_HEADERS_RCVD)
4248 goto trailers;
4249
4250 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004251 if (h2c->flags & H2_CF_IS_BACK)
4252 outlen = h2_make_htx_response(list, htx, &msgf, body_len);
4253 else
4254 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004255
4256 if (outlen < 0) {
Willy Tarreau25919232019-01-03 14:48:18 +01004257 /* too large headers? this is a stream error only */
Willy Tarreau7838a792019-08-12 18:42:03 +02004258 TRACE_STATE("request headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004259 goto fail;
4260 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004261
Willy Tarreau174b06a2018-04-25 18:13:58 +02004262 if (msgf & H2_MSGF_BODY) {
4263 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004264 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004265 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004266 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004267 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004268 }
4269
Willy Tarreau88d138e2019-01-02 19:38:14 +01004270 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004271 /* indicate that a HEADERS frame was received for this stream, except
4272 * for 1xx responses. For 1xx responses, another HEADERS frame is
4273 * expected.
4274 */
4275 if (!(msgf & H2_MSGF_RSP_1XX))
4276 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004277
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02004278 if ((h2c->dff & H2_F_HEADERS_END_STREAM)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02004279 /* Mark the end of message using EOM */
Willy Tarreau7838a792019-08-12 18:42:03 +02004280 if (!htx_add_endof(htx, HTX_BLK_EOM)) {
4281 TRACE_STATE("failed to append HTX EOM block into rxbuf", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR, h2c->conn);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004282 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004283 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004284 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004285
Willy Tarreau86277d42019-01-02 15:36:11 +01004286 /* success */
4287 ret = 1;
4288
Willy Tarreau68dd9852017-07-03 14:44:26 +02004289 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004290 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004291 * move the remaining data over it.
4292 */
4293 if (hole) {
4294 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4295 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4296 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4297 b_sub(&h2c->dbuf, hole);
4298 }
4299
Willy Tarreau97215ca2019-04-29 10:20:21 +02004300 if (b_full(&h2c->dbuf) && h2c->dfl >= b_data(&h2c->dbuf)) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004301 /* too large frames */
4302 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004303 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004304 }
4305
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004306 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004307 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004308 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004309 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004310 return ret;
4311
Willy Tarreau68dd9852017-07-03 14:44:26 +02004312 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004313 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004314 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004315
4316 trailers:
4317 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004318 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4319 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004320 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 +01004321 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
4322 goto fail;
4323 }
4324
Christopher Faulet9b79a102019-07-15 11:22:56 +02004325 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02004326 if (h2_make_htx_trailers(list, htx) <= 0) {
4327 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 +02004328 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004329 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004330 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02004331}
4332
Christopher Faulet9b79a102019-07-15 11:22:56 +02004333/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004334 * parser state is automatically updated. Returns > 0 if it could completely
4335 * send the current frame, 0 if it couldn't complete, in which case
4336 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
4337 * DATA frame can return 0 as a valid result). Stream errors are reported in
4338 * h2s->errcode and connection errors in h2c->errcode. The caller must already
4339 * have checked the frame header and ensured that the frame was complete or the
4340 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02004341 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01004342static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02004343{
4344 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004345 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004346 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004347 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004348 struct buffer *csbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004349 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02004350
Willy Tarreau7838a792019-08-12 18:42:03 +02004351 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
4352
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004353 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02004354
Olivier Houchard638b7992018-08-16 15:41:52 +02004355 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004356 if (!csbuf) {
4357 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02004358 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 +01004359 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004360 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004361 htx = htx_from_buf(csbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004362
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004363try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004364 flen = h2c->dfl - h2c->dpl;
4365 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01004366 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004367
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004368 if (flen > b_data(&h2c->dbuf)) {
4369 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004370 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01004371 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004372 }
4373
Christopher Faulet9b79a102019-07-15 11:22:56 +02004374 block = htx_free_data_space(htx);
4375 if (!block) {
4376 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004377 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 +02004378 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004379 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004380 if (flen > block)
4381 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004382
Christopher Faulet9b79a102019-07-15 11:22:56 +02004383 /* here, flen is the max we can copy into the output buffer */
4384 block = b_contig_data(&h2c->dbuf, 0);
4385 if (flen > block)
4386 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004387
Christopher Faulet9b79a102019-07-15 11:22:56 +02004388 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau7838a792019-08-12 18:42:03 +02004389 TRACE_DATA("move some data to h2s rxbuf", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s,, (void *)(long)sent);
Willy Tarreau454f9052017-10-26 19:40:35 +02004390
Christopher Faulet9b79a102019-07-15 11:22:56 +02004391 b_del(&h2c->dbuf, sent);
4392 h2c->dfl -= sent;
4393 h2c->rcvd_c += sent;
4394 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02004395
Christopher Faulet9b79a102019-07-15 11:22:56 +02004396 if (h2s->flags & H2_SF_DATA_CLEN) {
4397 h2s->body_len -= sent;
4398 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004399 }
4400
Christopher Faulet9b79a102019-07-15 11:22:56 +02004401 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004402 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004403 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 +01004404 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004405 }
4406
Christopher Faulet9b79a102019-07-15 11:22:56 +02004407 goto try_again;
4408
Willy Tarreau4a28da12018-01-04 14:41:00 +01004409 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004410 /* here we're done with the frame, all the payload (except padding) was
4411 * transferred.
4412 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02004413
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004414 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02004415 if (!htx_add_endof(htx, HTX_BLK_EOM)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004416 TRACE_STATE("h2s rxbuf is full, failed to add EOM", H2_EV_RX_FRAME|H2_EV_RX_DATA|H2_EV_H2S_BLK, h2c->conn, h2s);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004417 h2c->flags |= H2_CF_DEM_SFULL;
4418 goto fail;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004419 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02004420 }
4421
Willy Tarreaud1023bb2018-03-22 16:53:12 +01004422 h2c->rcvd_c += h2c->dpl;
4423 h2c->rcvd_s += h2c->dpl;
4424 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004425 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet9b79a102019-07-15 11:22:56 +02004426 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02004427 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004428 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01004429 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004430 if (htx)
4431 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02004432 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01004433 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004434}
4435
Willy Tarreau115e83b2018-12-01 19:17:53 +01004436/* Try to send a HEADERS frame matching HTX response present in HTX message
4437 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4438 * must check the stream's status to detect any error which might have happened
4439 * subsequently to a successful send. The htx blocks are automatically removed
4440 * from the message. The htx message is assumed to be valid since produced from
4441 * the internal code, hence it contains a start line, an optional series of
4442 * header blocks and an end of header, otherwise an invalid frame could be
4443 * emitted and the resulting htx message could be left in an inconsistent state.
4444 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004445static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004446{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004447 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01004448 struct h2c *h2c = h2s->h2c;
4449 struct htx_blk *blk;
4450 struct htx_blk *blk_end;
4451 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004452 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004453 struct htx_sl *sl;
4454 enum htx_blk_type type;
4455 int es_now = 0;
4456 int ret = 0;
4457 int hdr;
4458 int idx;
4459
Willy Tarreau7838a792019-08-12 18:42:03 +02004460 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
4461
Willy Tarreau115e83b2018-12-01 19:17:53 +01004462 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004463 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004464 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02004465 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004466 return 0;
4467 }
4468
Willy Tarreau115e83b2018-12-01 19:17:53 +01004469 /* determine the first block which must not be deleted, blk_end may
4470 * be NULL if all blocks have to be deleted.
4471 */
4472 idx = htx_get_head(htx);
4473 blk_end = NULL;
4474 while (idx != -1) {
4475 type = htx_get_blk_type(htx_get_blk(htx, idx));
4476 idx = htx_get_next(htx, idx);
4477 if (type == HTX_BLK_EOH) {
4478 if (idx != -1)
4479 blk_end = htx_get_blk(htx, idx);
4480 break;
4481 }
4482 }
4483
4484 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004485 blk = htx_get_head_blk(htx);
4486 BUG_ON(htx_get_blk_type(blk) != HTX_BLK_RES_SL);
4487 ALREADY_CHECKED(blk);
4488 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004489 h2s->status = sl->info.res.status;
Willy Tarreau7838a792019-08-12 18:42:03 +02004490 if (h2s->status < 100 || h2s->status > 999) {
4491 TRACE_PROTO("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
Willy Tarreauaafdf582018-12-10 18:06:40 +01004492 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004493 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004494
4495 /* and the rest of the headers, that we dump starting at header 0 */
4496 hdr = 0;
4497
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004498 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau115e83b2018-12-01 19:17:53 +01004499 while ((idx = htx_get_next(htx, idx)) != -1) {
4500 blk = htx_get_blk(htx, idx);
4501 type = htx_get_blk_type(blk);
4502
4503 if (type == HTX_BLK_UNUSED)
4504 continue;
4505
4506 if (type != HTX_BLK_HDR)
4507 break;
4508
Willy Tarreau7838a792019-08-12 18:42:03 +02004509 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
4510 TRACE_PROTO("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004511 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004512 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004513
4514 list[hdr].n = htx_get_blk_name(htx, blk);
4515 list[hdr].v = htx_get_blk_value(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004516 hdr++;
4517 }
4518
4519 /* marker for end of headers */
4520 list[hdr].n = ist("");
4521
4522 if (h2s->status == 204 || h2s->status == 304) {
4523 /* no contents, claim c-len is present and set to zero */
4524 es_now = 1;
4525 }
4526
Willy Tarreau9c218e72019-05-26 10:08:28 +02004527 mbuf = br_tail(h2c->mbuf);
4528 retry:
4529 if (!h2_get_buf(h2c, mbuf)) {
4530 h2c->flags |= H2_CF_MUX_MALLOC;
4531 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02004532 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 +02004533 return 0;
4534 }
4535
Willy Tarreau115e83b2018-12-01 19:17:53 +01004536 chunk_reset(&outbuf);
4537
4538 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004539 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4540 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004541 break;
4542 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004543 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01004544 }
4545
4546 if (outbuf.size < 9)
4547 goto full;
4548
4549 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4550 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4551 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4552 outbuf.data = 9;
4553
4554 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01004555 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004556 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004557 goto realign_again;
4558 goto full;
4559 }
4560
4561 /* encode all headers, stop at empty name */
4562 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4563 /* these ones do not exist in H2 and must be dropped. */
4564 if (isteq(list[hdr].n, ist("connection")) ||
4565 isteq(list[hdr].n, ist("proxy-connection")) ||
4566 isteq(list[hdr].n, ist("keep-alive")) ||
4567 isteq(list[hdr].n, ist("upgrade")) ||
4568 isteq(list[hdr].n, ist("transfer-encoding")))
4569 continue;
4570
Christopher Faulet86d144c2019-08-14 16:32:25 +02004571 /* Skip all pseudo-headers */
4572 if (*(list[hdr].n.ptr) == ':')
4573 continue;
4574
Willy Tarreau115e83b2018-12-01 19:17:53 +01004575 if (isteq(list[hdr].n, ist("")))
4576 break; // end
4577
4578 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4579 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004580 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004581 goto realign_again;
4582 goto full;
4583 }
4584 }
4585
Christopher Faulet0b465482019-02-19 15:14:23 +01004586 /* we may need to add END_STREAM except for 1xx responses.
Willy Tarreau115e83b2018-12-01 19:17:53 +01004587 * FIXME: we should also set it when we know for sure that the
4588 * content-length is zero as well as on 204/304
4589 */
Christopher Faulet0b465482019-02-19 15:14:23 +01004590 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM &&
4591 (h2s->status >= 200 || h2s->status == 101))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004592 es_now = 1;
4593
Willy Tarreau927b88b2019-03-04 08:03:25 +01004594 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004595 es_now = 1;
4596
4597 /* update the frame's size */
4598 h2_set_frame_size(outbuf.area, outbuf.data - 9);
4599
4600 if (es_now)
4601 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
4602
4603 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02004604 TRACE_USER("sent H2 response", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
Willy Tarreaubcc45952019-05-26 10:05:50 +02004605 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01004606
4607 /* indicates the HEADERS frame was sent, except for 1xx responses. For
4608 * 1xx responses, another HEADERS frame is expected.
4609 */
4610 if (h2s->status >= 200 || h2s->status == 101)
4611 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004612
Willy Tarreau115e83b2018-12-01 19:17:53 +01004613 if (es_now) {
4614 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02004615 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 +01004616 if (h2s->st == H2_SS_OPEN)
4617 h2s->st = H2_SS_HLOC;
4618 else
4619 h2s_close(h2s);
4620 }
4621
4622 /* OK we could properly deliver the response */
4623
4624 /* remove all header blocks including the EOH and compute the
4625 * corresponding size.
4626 *
4627 * FIXME: We should remove everything when es_now is set.
4628 */
4629 ret = 0;
4630 idx = htx_get_head(htx);
4631 blk = htx_get_blk(htx, idx);
4632 while (blk != blk_end) {
4633 ret += htx_get_blksz(blk);
4634 blk = htx_remove_blk(htx, blk);
4635 }
Willy Tarreauc5753ae2018-12-02 12:28:01 +01004636
Christopher Faulet316934d2019-05-15 14:22:48 +02004637 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
4638 ret += htx_get_blksz(blk_end);
Willy Tarreauc5753ae2018-12-02 12:28:01 +01004639 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02004640 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004641 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004642 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004643 return ret;
4644 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02004645 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4646 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004647 h2c->flags |= H2_CF_MUX_MFULL;
4648 h2s->flags |= H2_SF_BLK_MROOM;
4649 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004650 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 +01004651 goto end;
4652 fail:
4653 /* unparsable HTX messages, too large ones to be produced in the local
4654 * list etc go here (unrecoverable errors).
4655 */
4656 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4657 ret = 0;
4658 goto end;
4659}
4660
Willy Tarreau80739692018-10-05 11:35:57 +02004661/* Try to send a HEADERS frame matching HTX request present in HTX message
4662 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4663 * must check the stream's status to detect any error which might have happened
4664 * subsequently to a successful send. The htx blocks are automatically removed
4665 * from the message. The htx message is assumed to be valid since produced from
4666 * the internal code, hence it contains a start line, an optional series of
4667 * header blocks and an end of header, otherwise an invalid frame could be
4668 * emitted and the resulting htx message could be left in an inconsistent state.
4669 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004670static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02004671{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004672 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02004673 struct h2c *h2c = h2s->h2c;
4674 struct htx_blk *blk;
4675 struct htx_blk *blk_end;
4676 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004677 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02004678 struct htx_sl *sl;
Willy Tarreau053c1572019-02-01 16:13:59 +01004679 struct ist meth, path, auth;
Willy Tarreau80739692018-10-05 11:35:57 +02004680 enum htx_blk_type type;
4681 int es_now = 0;
4682 int ret = 0;
4683 int hdr;
4684 int idx;
4685
Willy Tarreau7838a792019-08-12 18:42:03 +02004686 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
4687
Willy Tarreau80739692018-10-05 11:35:57 +02004688 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004689 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02004690 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02004691 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02004692 return 0;
4693 }
4694
Willy Tarreau80739692018-10-05 11:35:57 +02004695 /* determine the first block which must not be deleted, blk_end may
4696 * be NULL if all blocks have to be deleted.
4697 */
4698 idx = htx_get_head(htx);
4699 blk_end = NULL;
4700 while (idx != -1) {
4701 type = htx_get_blk_type(htx_get_blk(htx, idx));
4702 idx = htx_get_next(htx, idx);
4703 if (type == HTX_BLK_EOH) {
4704 if (idx != -1)
4705 blk_end = htx_get_blk(htx, idx);
4706 break;
4707 }
4708 }
4709
4710 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004711 blk = htx_get_head_blk(htx);
4712 BUG_ON(htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
4713 ALREADY_CHECKED(blk);
4714 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau80739692018-10-05 11:35:57 +02004715 meth = htx_sl_req_meth(sl);
4716 path = htx_sl_req_uri(sl);
4717
4718 /* and the rest of the headers, that we dump starting at header 0 */
4719 hdr = 0;
4720
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004721 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau80739692018-10-05 11:35:57 +02004722 while ((idx = htx_get_next(htx, idx)) != -1) {
4723 blk = htx_get_blk(htx, idx);
4724 type = htx_get_blk_type(blk);
4725
4726 if (type == HTX_BLK_UNUSED)
4727 continue;
4728
4729 if (type != HTX_BLK_HDR)
4730 break;
4731
Willy Tarreau7838a792019-08-12 18:42:03 +02004732 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
4733 TRACE_PROTO("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02004734 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004735 }
Willy Tarreau80739692018-10-05 11:35:57 +02004736
4737 list[hdr].n = htx_get_blk_name(htx, blk);
4738 list[hdr].v = htx_get_blk_value(htx, blk);
Willy Tarreau80739692018-10-05 11:35:57 +02004739 hdr++;
4740 }
4741
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02004742 /* Now add the server name to a header (if requested) */
4743 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name) {
4744 struct server *srv = objt_server(h2c->conn->target);
4745
4746 if (srv) {
4747 list[hdr].n = ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len);
4748 list[hdr].v = ist(srv->id);
4749 hdr++;
4750 }
4751 }
4752
Willy Tarreau80739692018-10-05 11:35:57 +02004753 /* marker for end of headers */
4754 list[hdr].n = ist("");
4755
Willy Tarreau9c218e72019-05-26 10:08:28 +02004756 mbuf = br_tail(h2c->mbuf);
4757 retry:
4758 if (!h2_get_buf(h2c, mbuf)) {
4759 h2c->flags |= H2_CF_MUX_MALLOC;
4760 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02004761 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 +02004762 return 0;
4763 }
4764
Willy Tarreau80739692018-10-05 11:35:57 +02004765 chunk_reset(&outbuf);
4766
4767 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004768 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4769 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004770 break;
4771 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004772 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02004773 }
4774
4775 if (outbuf.size < 9)
4776 goto full;
4777
4778 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4779 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4780 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4781 outbuf.data = 9;
4782
4783 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01004784 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004785 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004786 goto realign_again;
4787 goto full;
4788 }
4789
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004790 /* RFC7540 #8.3: the CONNECT method must have :
4791 * - :authority set to the URI part (host:port)
4792 * - :method set to CONNECT
4793 * - :scheme and :path omitted
4794 */
4795 if (sl->info.req.meth != HTTP_METH_CONNECT) {
4796 /* encode the scheme which is always "https" (or 0x86 for "http") */
Christopher Faulet3b44c542019-06-14 10:46:51 +02004797 struct ist scheme;
4798
4799 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
4800 scheme = ist("http");
4801 else
4802 scheme = ist("https");
4803
4804 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004805 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004806 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004807 goto realign_again;
4808 goto full;
4809 }
Willy Tarreau80739692018-10-05 11:35:57 +02004810
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004811 /* encode the path, which necessarily is the second one */
4812 if (!hpack_encode_path(&outbuf, path)) {
4813 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004814 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004815 goto realign_again;
4816 goto full;
4817 }
Willy Tarreau053c1572019-02-01 16:13:59 +01004818
4819 /* look for the Host header and place it in :authority */
4820 auth = ist2(NULL, 0);
4821 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4822 if (isteq(list[hdr].n, ist("")))
4823 break; // end
4824
4825 if (isteq(list[hdr].n, ist("host"))) {
4826 auth = list[hdr].v;
4827 break;
4828 }
4829 }
4830 }
4831 else {
4832 /* for CONNECT, :authority is taken from the path */
4833 auth = path;
4834 }
4835
4836 if (auth.ptr && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
4837 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004838 if (b_space_wraps(mbuf))
Willy Tarreau053c1572019-02-01 16:13:59 +01004839 goto realign_again;
4840 goto full;
Willy Tarreau80739692018-10-05 11:35:57 +02004841 }
4842
4843 /* encode all headers, stop at empty name */
4844 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4845 /* these ones do not exist in H2 and must be dropped. */
4846 if (isteq(list[hdr].n, ist("connection")) ||
Willy Tarreau053c1572019-02-01 16:13:59 +01004847 isteq(list[hdr].n, ist("host")) ||
Willy Tarreau80739692018-10-05 11:35:57 +02004848 isteq(list[hdr].n, ist("proxy-connection")) ||
4849 isteq(list[hdr].n, ist("keep-alive")) ||
4850 isteq(list[hdr].n, ist("upgrade")) ||
4851 isteq(list[hdr].n, ist("transfer-encoding")))
4852 continue;
4853
Christopher Faulet86d144c2019-08-14 16:32:25 +02004854 /* Skip all pseudo-headers */
4855 if (*(list[hdr].n.ptr) == ':')
4856 continue;
4857
Willy Tarreau80739692018-10-05 11:35:57 +02004858 if (isteq(list[hdr].n, ist("")))
4859 break; // end
4860
4861 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4862 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004863 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004864 goto realign_again;
4865 goto full;
4866 }
4867 }
4868
4869 /* we may need to add END_STREAM if we have no body :
4870 * - request already closed, or :
4871 * - no transfer-encoding, and :
4872 * - no content-length or content-length:0
4873 * Fixme: this doesn't take into account CONNECT requests.
4874 */
4875 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM)
4876 es_now = 1;
4877
4878 if (sl->flags & HTX_SL_F_BODYLESS)
4879 es_now = 1;
4880
Willy Tarreau927b88b2019-03-04 08:03:25 +01004881 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau80739692018-10-05 11:35:57 +02004882 es_now = 1;
4883
4884 /* update the frame's size */
4885 h2_set_frame_size(outbuf.area, outbuf.data - 9);
4886
4887 if (es_now)
4888 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
4889
4890 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02004891 TRACE_USER("sent H2 request", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
Willy Tarreaubcc45952019-05-26 10:05:50 +02004892 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02004893 h2s->flags |= H2_SF_HEADERS_SENT;
4894 h2s->st = H2_SS_OPEN;
4895
Willy Tarreau80739692018-10-05 11:35:57 +02004896 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004897 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 +02004898 // trim any possibly pending data (eg: inconsistent content-length)
4899 h2s->flags |= H2_SF_ES_SENT;
4900 h2s->st = H2_SS_HLOC;
4901 }
4902
4903 /* remove all header blocks including the EOH and compute the
4904 * corresponding size.
4905 *
4906 * FIXME: We should remove everything when es_now is set.
4907 */
4908 ret = 0;
4909 idx = htx_get_head(htx);
4910 blk = htx_get_blk(htx, idx);
4911 while (blk != blk_end) {
4912 ret += htx_get_blksz(blk);
4913 blk = htx_remove_blk(htx, blk);
4914 }
4915
Christopher Faulet316934d2019-05-15 14:22:48 +02004916 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
4917 ret += htx_get_blksz(blk_end);
Willy Tarreau80739692018-10-05 11:35:57 +02004918 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02004919 }
Willy Tarreau80739692018-10-05 11:35:57 +02004920
4921 end:
4922 return ret;
4923 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02004924 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4925 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02004926 h2c->flags |= H2_CF_MUX_MFULL;
4927 h2s->flags |= H2_SF_BLK_MROOM;
4928 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004929 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 +02004930 goto end;
4931 fail:
4932 /* unparsable HTX messages, too large ones to be produced in the local
4933 * list etc go here (unrecoverable errors).
4934 */
4935 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4936 ret = 0;
4937 goto end;
4938}
4939
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004940/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01004941 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
4942 * caller must check the stream's status to detect any error which might have
4943 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Faulet54b5e212019-06-04 10:08:28 +02004944 * consumed, or zero if nothing done. Note that EOM count for 1 byte.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004945 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004946static size_t h2s_frt_make_resp_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004947{
4948 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01004949 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004950 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004951 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004952 size_t total = 0;
4953 int es_now = 0;
4954 int bsize; /* htx block size */
4955 int fsize; /* h2 frame size */
4956 struct htx_blk *blk;
4957 enum htx_blk_type type;
4958 int idx;
4959
Willy Tarreau7838a792019-08-12 18:42:03 +02004960 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
4961
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004962 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004963 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004964 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02004965 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004966 goto end;
4967 }
4968
Willy Tarreau98de12a2018-12-12 07:03:00 +01004969 htx = htx_from_buf(buf);
4970
Christopher Faulet54b5e212019-06-04 10:08:28 +02004971 /* We only come here with HTX_BLK_DATA blocks. However, while looping,
4972 * we can meet an HTX_BLK_EOM block that we'll leave to the caller to
4973 * handle.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004974 */
4975
4976 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01004977 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004978 goto end;
4979
4980 idx = htx_get_head(htx);
4981 blk = htx_get_blk(htx, idx);
Christopher Faulet54b5e212019-06-04 10:08:28 +02004982 type = htx_get_blk_type(blk); // DATA or EOM
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004983 bsize = htx_get_blksz(blk);
4984 fsize = bsize;
4985
Christopher Faulet54b5e212019-06-04 10:08:28 +02004986 if (type == HTX_BLK_EOM) {
Willy Tarreau7eeb10a2019-01-04 09:28:17 +01004987 if (h2s->flags & H2_SF_ES_SENT) {
4988 /* ES already sent */
4989 htx_remove_blk(htx, blk);
4990 total++; // EOM counts as one byte
4991 count--;
4992 goto end;
4993 }
4994 }
4995 else if (type != HTX_BLK_DATA)
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01004996 goto end;
Willy Tarreau98de12a2018-12-12 07:03:00 +01004997
Willy Tarreau9c218e72019-05-26 10:08:28 +02004998 mbuf = br_tail(h2c->mbuf);
4999 retry:
5000 if (!h2_get_buf(h2c, mbuf)) {
5001 h2c->flags |= H2_CF_MUX_MALLOC;
5002 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005003 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 +02005004 goto end;
5005 }
5006
Willy Tarreau98de12a2018-12-12 07:03:00 +01005007 /* Perform some optimizations to reduce the number of buffer copies.
5008 * First, if the mux's buffer is empty and the htx area contains
5009 * exactly one data block of the same size as the requested count, and
5010 * this count fits within the frame size, the stream's window size, and
5011 * the connection's window size, then it's possible to simply swap the
5012 * caller's buffer with the mux's output buffer and adjust offsets and
5013 * length to match the entire DATA HTX block in the middle. In this
5014 * case we perform a true zero-copy operation from end-to-end. This is
5015 * the situation that happens all the time with large files. Second, if
5016 * this is not possible, but the mux's output buffer is empty, we still
5017 * have an opportunity to avoid the copy to the intermediary buffer, by
5018 * making the intermediary buffer's area point to the output buffer's
5019 * area. In this case we want to skip the HTX header to make sure that
5020 * copies remain aligned and that this operation remains possible all
5021 * the time. This goes for headers, data blocks and any data extracted
5022 * from the HTX blocks.
5023 */
5024 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005025 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005026 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005027 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005028
Willy Tarreaubcc45952019-05-26 10:05:50 +02005029 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005030 /* Too bad there are data left there. We're willing to memcpy/memmove
5031 * up to 1/4 of the buffer, which means that it's OK to copy a large
5032 * frame into a buffer containing few data if it needs to be realigned,
5033 * and that it's also OK to copy few data without realigning. Otherwise
5034 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005035 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005036 if (fsize + 9 <= b_room(mbuf) &&
5037 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005038 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5039 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 +01005040 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005041 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005042
Willy Tarreau9c218e72019-05-26 10:08:28 +02005043 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5044 goto retry;
5045
Willy Tarreau98de12a2018-12-12 07:03:00 +01005046 h2c->flags |= H2_CF_MUX_MFULL;
5047 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005048 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 +01005049 goto end;
5050 }
5051
5052 /* map an H2 frame to the HTX block so that we can put the
5053 * frame header there.
5054 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005055 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5056 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005057
5058 /* prepend an H2 DATA frame header just before the DATA block */
5059 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5060 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5061 h2_set_frame_size(outbuf.area, fsize);
5062
5063 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005064 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005065 h2c->mws -= fsize;
5066
5067 /* and exchange with our old area */
5068 buf->area = old_area;
5069 buf->data = buf->head = 0;
5070 total += fsize;
Willy Tarreau7838a792019-08-12 18:42:03 +02005071
5072 TRACE_PROTO("sent H2 DATA frame (zero-copy)", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005073 goto end;
5074 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005075
Willy Tarreau98de12a2018-12-12 07:03:00 +01005076 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005077 /* for DATA and EOM we'll have to emit a frame, even if empty */
5078
5079 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005080 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5081 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005082 break;
5083 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005084 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005085 }
5086
5087 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005088 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5089 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005090 h2c->flags |= H2_CF_MUX_MFULL;
5091 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005092 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005093 goto end;
5094 }
5095
5096 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5097 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5098 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5099 outbuf.data = 9;
5100
5101 /* we have in <fsize> the exact number of bytes we need to copy from
5102 * the HTX buffer. We need to check this against the connection's and
5103 * the stream's send windows, and to ensure that this fits in the max
5104 * frame size and in the buffer's available space minus 9 bytes (for
5105 * the frame header). The connection's flow control is applied last so
5106 * that we can use a separate list of streams which are immediately
5107 * unblocked on window opening. Note: we don't implement padding.
5108 */
5109
5110 /* EOM is presented with bsize==1 but would lead to the emission of an
5111 * empty frame, thus we force it to zero here.
5112 */
5113 if (type == HTX_BLK_EOM)
5114 bsize = fsize = 0;
5115
5116 if (!fsize)
5117 goto send_empty;
5118
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005119 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005120 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02005121 if (LIST_ADDED(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005122 LIST_DEL_INIT(&h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005123 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 +01005124 goto end;
5125 }
5126
Willy Tarreauee573762018-12-04 15:25:57 +01005127 if (fsize > count)
5128 fsize = count;
5129
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005130 if (fsize > h2s_mws(h2s))
5131 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005132
5133 if (h2c->mfs && fsize > h2c->mfs)
5134 fsize = h2c->mfs; // >0
5135
5136 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005137 /* It doesn't fit at once. If it at least fits once split and
5138 * the amount of data to move is low, let's defragment the
5139 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005140 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005141 if (b_space_wraps(mbuf) &&
5142 (fsize + 9 <= b_room(mbuf)) &&
5143 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005144 goto realign_again;
5145 fsize = outbuf.size - 9;
5146
5147 if (fsize <= 0) {
5148 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005149 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5150 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005151 h2c->flags |= H2_CF_MUX_MFULL;
5152 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005153 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005154 goto end;
5155 }
5156 }
5157
5158 if (h2c->mws <= 0) {
5159 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005160 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 +01005161 goto end;
5162 }
5163
5164 if (fsize > h2c->mws)
5165 fsize = h2c->mws;
5166
5167 /* now let's copy this this into the output buffer */
5168 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005169 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005170 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005171 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005172
5173 send_empty:
5174 /* update the frame's size */
5175 h2_set_frame_size(outbuf.area, fsize);
5176
5177 /* FIXME: for now we only set the ES flag on empty DATA frames, once
5178 * meeting EOM. We should optimize this later.
5179 */
5180 if (type == HTX_BLK_EOM) {
Willy Tarreauee573762018-12-04 15:25:57 +01005181 total++; // EOM counts as one byte
5182 count--;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005183 es_now = 1;
5184 }
5185
5186 if (es_now)
5187 outbuf.area[4] |= H2_F_DATA_END_STREAM;
5188
5189 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005190 b_add(mbuf, fsize + 9);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005191
5192 /* consume incoming HTX block, including EOM */
5193 total += fsize;
5194 if (fsize == bsize) {
5195 htx_remove_blk(htx, blk);
Willy Tarreau7838a792019-08-12 18:42:03 +02005196 if (fsize) {
5197 TRACE_DEVEL("more data available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005198 goto new_frame;
Willy Tarreau7838a792019-08-12 18:42:03 +02005199 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005200 } else {
5201 /* we've truncated this block */
5202 htx_cut_data_blk(htx, blk, fsize);
5203 }
5204
5205 if (es_now) {
5206 if (h2s->st == H2_SS_OPEN)
5207 h2s->st = H2_SS_HLOC;
5208 else
5209 h2s_close(h2s);
5210
5211 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005212 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 +01005213 }
5214
5215 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005216 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005217 return total;
5218}
5219
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005220/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
5221 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
5222 * processed. The caller must check the stream's status to detect any error
5223 * which might have happened subsequently to a successful send. The htx blocks
5224 * are automatically removed from the message. The htx message is assumed to be
5225 * valid since produced from the internal code. Processing stops when meeting
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005226 * the EOM, which is *not* removed. All trailers are processed at once and sent
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005227 * as a single frame. The ES flag is always set.
5228 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005229static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005230{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005231 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005232 struct h2c *h2c = h2s->h2c;
5233 struct htx_blk *blk;
5234 struct htx_blk *blk_end;
5235 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005236 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005237 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005238 int ret = 0;
5239 int hdr;
5240 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005241
Willy Tarreau7838a792019-08-12 18:42:03 +02005242 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5243
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005244 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005245 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005246 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005247 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005248 goto end;
5249 }
5250
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005251 /* determine the first block which must not be deleted, blk_end may
5252 * be NULL if all blocks have to be deleted. also get trailers.
5253 */
5254 idx = htx_get_head(htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005255 blk_end = NULL;
5256
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005257 hdr = 0;
5258 while (idx != -1) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005259 blk = htx_get_blk(htx, idx);
5260 type = htx_get_blk_type(blk);
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005261 idx = htx_get_next(htx, idx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005262 if (type == HTX_BLK_UNUSED)
5263 continue;
5264
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005265 if (type == HTX_BLK_EOT) {
5266 if (idx != -1)
5267 blk_end = blk;
5268 break;
5269 }
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005270 if (type != HTX_BLK_TLR)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005271 break;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005272
Willy Tarreau7838a792019-08-12 18:42:03 +02005273 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5274 TRACE_PROTO("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005275 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005276 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005277
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005278 list[hdr].n = htx_get_blk_name(htx, blk);
5279 list[hdr].v = htx_get_blk_value(htx, blk);
5280 hdr++;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005281 }
5282
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005283 /* marker for end of trailers */
5284 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005285
Willy Tarreau9c218e72019-05-26 10:08:28 +02005286 mbuf = br_tail(h2c->mbuf);
5287 retry:
5288 if (!h2_get_buf(h2c, mbuf)) {
5289 h2c->flags |= H2_CF_MUX_MALLOC;
5290 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005291 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 +02005292 goto end;
5293 }
5294
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005295 chunk_reset(&outbuf);
5296
5297 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005298 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5299 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005300 break;
5301 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005302 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005303 }
5304
5305 if (outbuf.size < 9)
5306 goto full;
5307
5308 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
5309 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
5310 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5311 outbuf.data = 9;
5312
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005313 /* encode all headers */
5314 for (idx = 0; idx < hdr; idx++) {
5315 /* these ones do not exist in H2 or must not appear in
5316 * trailers and must be dropped.
5317 */
5318 if (isteq(list[idx].n, ist("host")) ||
5319 isteq(list[idx].n, ist("content-length")) ||
5320 isteq(list[idx].n, ist("connection")) ||
5321 isteq(list[idx].n, ist("proxy-connection")) ||
5322 isteq(list[idx].n, ist("keep-alive")) ||
5323 isteq(list[idx].n, ist("upgrade")) ||
5324 isteq(list[idx].n, ist("te")) ||
5325 isteq(list[idx].n, ist("transfer-encoding")))
5326 continue;
5327
Christopher Faulet86d144c2019-08-14 16:32:25 +02005328 /* Skip all pseudo-headers */
5329 if (*(list[idx].n.ptr) == ':')
5330 continue;
5331
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005332 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
5333 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005334 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005335 goto realign_again;
5336 goto full;
5337 }
5338 }
5339
Willy Tarreau5121e5d2019-05-06 15:13:41 +02005340 if (outbuf.data == 9) {
5341 /* here we have a problem, we have nothing to emit (either we
5342 * received an empty trailers block followed or we removed its
5343 * contents above). Because of this we can't send a HEADERS
5344 * frame, so we have to cheat and instead send an empty DATA
5345 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01005346 */
5347 outbuf.area[3] = H2_FT_DATA;
5348 outbuf.area[4] = H2_F_DATA_END_STREAM;
5349 }
5350
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005351 /* update the frame's size */
5352 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5353
5354 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02005355 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 +02005356 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005357 h2s->flags |= H2_SF_ES_SENT;
5358
5359 if (h2s->st == H2_SS_OPEN)
5360 h2s->st = H2_SS_HLOC;
5361 else
5362 h2s_close(h2s);
5363
5364 /* OK we could properly deliver the response */
5365 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005366 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005367 ret = 0;
5368 idx = htx_get_head(htx);
5369 blk = htx_get_blk(htx, idx);
5370 while (blk != blk_end) {
5371 ret += htx_get_blksz(blk);
5372 blk = htx_remove_blk(htx, blk);
5373 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005374
5375 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5376 ret += htx_get_blksz(blk_end);
5377 htx_remove_blk(htx, blk_end);
5378 }
5379
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005380 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005381 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005382 return ret;
5383 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005384 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5385 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005386 h2c->flags |= H2_CF_MUX_MFULL;
5387 h2s->flags |= H2_SF_BLK_MROOM;
5388 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005389 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 +01005390 goto end;
5391 fail:
5392 /* unparsable HTX messages, too large ones to be produced in the local
5393 * list etc go here (unrecoverable errors).
5394 */
5395 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5396 ret = 0;
5397 goto end;
5398}
5399
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005400/* Called from the upper layer, to subscribe to events, such as being able to send.
5401 * The <param> argument here is supposed to be a pointer to a wait_event struct
5402 * which will be passed to h2s->recv_wait or h2s->send_wait depending on the
5403 * event_type. The event_type must only be a combination of SUB_RETRY_RECV and
5404 * SUB_RETRY_SEND, other values will lead to -1 being returned. It always
5405 * returns 0 except for the error above.
5406 */
Olivier Houchard6ff20392018-07-17 18:46:31 +02005407static int h2_subscribe(struct conn_stream *cs, int event_type, void *param)
5408{
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005409 struct wait_event *sw;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005410 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02005411 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005412
Willy Tarreau7838a792019-08-12 18:42:03 +02005413 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005414 if (event_type & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005415 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02005416 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005417 BUG_ON(h2s->recv_wait != NULL || (sw->events & SUB_RETRY_RECV));
5418 sw->events |= SUB_RETRY_RECV;
5419 h2s->recv_wait = sw;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005420 event_type &= ~SUB_RETRY_RECV;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005421 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005422 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005423 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchard6ff20392018-07-17 18:46:31 +02005424 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005425 BUG_ON(h2s->send_wait != NULL || (sw->events & SUB_RETRY_SEND));
5426 sw->events |= SUB_RETRY_SEND;
5427 h2s->send_wait = sw;
5428 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
5429 !LIST_ADDED(&h2s->list)) {
5430 if (h2s->flags & H2_SF_BLK_MFCTL)
5431 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
5432 else
5433 LIST_ADDQ(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02005434 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005435 event_type &= ~SUB_RETRY_SEND;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005436 }
Willy Tarreau7838a792019-08-12 18:42:03 +02005437 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005438 if (event_type != 0)
5439 return -1;
5440 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005441}
5442
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005443/* Called from the upper layer, to unsubscribe some events (undo h2_subscribe).
5444 * The <param> argument here is supposed to be a pointer to the same wait_event
5445 * struct that was passed to h2_subscribe() otherwise nothing will be changed.
5446 * It always returns zero.
5447 */
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005448static int h2_unsubscribe(struct conn_stream *cs, int event_type, void *param)
5449{
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005450 struct wait_event *sw;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005451 struct h2s *h2s = cs->ctx;
5452
Willy Tarreau7838a792019-08-12 18:42:03 +02005453 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005454 if (event_type & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005455 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005456 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005457 BUG_ON(h2s->recv_wait != sw);
5458 sw->events &= ~SUB_RETRY_RECV;
5459 h2s->recv_wait = NULL;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005460 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005461 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005462 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005463 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005464 BUG_ON(h2s->send_wait != sw);
5465 LIST_DEL(&h2s->list);
5466 LIST_INIT(&h2s->list);
5467 sw->events &= ~SUB_RETRY_SEND;
5468 /* We were about to send, make sure it does not happen */
5469 if (LIST_ADDED(&h2s->sending_list) &&
5470 h2s->send_wait != &h2s->wait_event) {
Willy Tarreau86eded62019-06-14 14:47:49 +02005471 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchardf8338152019-05-14 17:50:32 +02005472 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd846c262018-10-19 17:24:29 +02005473 }
Olivier Houchardf8338152019-05-14 17:50:32 +02005474 h2s->send_wait = NULL;
Olivier Houchardd846c262018-10-19 17:24:29 +02005475 }
Willy Tarreau7838a792019-08-12 18:42:03 +02005476 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005477 return 0;
5478}
5479
5480
Olivier Houchard511efea2018-08-16 15:30:32 +02005481/* Called from the upper layer, to receive data */
5482static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
5483{
Olivier Houchard638b7992018-08-16 15:41:52 +02005484 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01005485 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01005486 struct htx *h2s_htx = NULL;
5487 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02005488 size_t ret = 0;
5489
Willy Tarreau7838a792019-08-12 18:42:03 +02005490 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
5491
Olivier Houchard511efea2018-08-16 15:30:32 +02005492 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005493 h2s_htx = htx_from_buf(&h2s->rxbuf);
5494 if (htx_is_empty(h2s_htx)) {
5495 /* Here htx_to_buf() will set buffer data to 0 because
5496 * the HTX is empty.
5497 */
5498 htx_to_buf(h2s_htx, &h2s->rxbuf);
5499 goto end;
5500 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01005501
Christopher Faulet9b79a102019-07-15 11:22:56 +02005502 ret = h2s_htx->data;
5503 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01005504
Christopher Faulet9b79a102019-07-15 11:22:56 +02005505 /* <buf> is empty and the message is small enough, swap the
5506 * buffers. */
5507 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005508 htx_to_buf(buf_htx, buf);
5509 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02005510 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
5511 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01005512 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005513
5514 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_EOM);
5515
5516 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
5517 buf_htx->flags |= HTX_FL_PARSING_ERROR;
5518 if (htx_is_empty(buf_htx))
5519 cs->flags |= CS_FL_EOI;
Willy Tarreau86724e22018-12-01 23:19:43 +01005520 }
Olivier Houchard511efea2018-08-16 15:30:32 +02005521
Christopher Faulet9b79a102019-07-15 11:22:56 +02005522 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
5523 htx_to_buf(buf_htx, buf);
5524 htx_to_buf(h2s_htx, &h2s->rxbuf);
5525 ret -= h2s_htx->data;
5526
Christopher Faulet37070b22019-02-14 15:12:14 +01005527 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02005528 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01005529 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02005530 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01005531 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletfa922f02019-05-07 10:55:17 +02005532 if (h2s->flags & H2_SF_ES_RCVD)
5533 cs->flags |= CS_FL_EOI;
Willy Tarreau76c83822019-06-15 09:55:50 +02005534 if (conn_xprt_read0_pending(h2c->conn) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02005535 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01005536 if (cs->flags & CS_FL_ERR_PENDING)
5537 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02005538 if (b_size(&h2s->rxbuf)) {
5539 b_free(&h2s->rxbuf);
5540 offer_buffers(NULL, tasks_run_queue);
5541 }
Olivier Houchard511efea2018-08-16 15:30:32 +02005542 }
5543
Willy Tarreau082f5592018-11-25 08:03:32 +01005544 if (ret && h2c->dsi == h2s->id) {
5545 /* demux is blocking on this stream's buffer */
5546 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02005547 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01005548 }
Christopher Faulet37070b22019-02-14 15:12:14 +01005549
Willy Tarreau7838a792019-08-12 18:42:03 +02005550 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02005551 return ret;
5552}
5553
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005554/* stops all senders of this connection for example when the mux buffer is full.
5555 * They are moved from the sending_list to either fctl_list or send_list.
5556 */
Olivier Houchardd846c262018-10-19 17:24:29 +02005557static void h2_stop_senders(struct h2c *h2c)
5558{
5559 struct h2s *h2s, *h2s_back;
5560
Olivier Houchardd360ac62019-03-22 17:37:16 +01005561 list_for_each_entry_safe(h2s, h2s_back, &h2c->sending_list, sending_list) {
5562 LIST_DEL_INIT(&h2s->sending_list);
Willy Tarreau86eded62019-06-14 14:47:49 +02005563 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005564 h2s->send_wait->events |= SUB_RETRY_SEND;
Olivier Houchardd846c262018-10-19 17:24:29 +02005565 }
5566}
5567
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005568/* Called from the upper layer, to send data from buffer <buf> for no more than
5569 * <count> bytes. Returns the number of bytes effectively sent. Some status
5570 * flags may be updated on the conn_stream.
5571 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02005572static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02005573{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005574 struct h2s *h2s = cs->ctx;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02005575 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02005576 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005577 struct htx *htx;
5578 struct htx_blk *blk;
5579 enum htx_blk_type btype;
5580 uint32_t bsize;
5581 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005582
Willy Tarreau7838a792019-08-12 18:42:03 +02005583 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
5584
Olivier Houchardd360ac62019-03-22 17:37:16 +01005585 /* If we were not just woken because we wanted to send but couldn't,
5586 * and there's somebody else that is waiting to send, do nothing,
5587 * we will subscribe later and be put at the end of the list
5588 */
Willy Tarreauc234ae32019-05-13 17:56:11 +02005589 if (!LIST_ADDED(&h2s->sending_list) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02005590 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
5591 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 +01005592 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005593 }
Olivier Houchard998410a2019-04-15 19:23:37 +02005594 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01005595
Olivier Houchard998410a2019-04-15 19:23:37 +02005596 /* We couldn't set it to NULL before, because we needed it in case
5597 * we had to cancel the tasklet
5598 */
5599 h2s->send_wait = NULL;
5600
Willy Tarreau7838a792019-08-12 18:42:03 +02005601 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
5602 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 +02005603 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005604 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02005605
Christopher Faulet9b79a102019-07-15 11:22:56 +02005606 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005607
Willy Tarreau0bad0432018-06-14 16:54:01 +02005608 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01005609 h2s->flags |= H2_SF_OUTGOING_DATA;
5610
Willy Tarreau751f2d02018-10-05 09:35:00 +02005611 if (h2s->id == 0) {
5612 int32_t id = h2c_get_next_sid(h2s->h2c);
5613
5614 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02005615 cs->flags |= CS_FL_ERROR;
Willy Tarreau7838a792019-08-12 18:42:03 +02005616 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 +02005617 return 0;
5618 }
5619
5620 eb32_delete(&h2s->by_id);
5621 h2s->by_id.key = h2s->id = id;
5622 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01005623 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02005624 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
5625 }
5626
Christopher Faulet9b79a102019-07-15 11:22:56 +02005627 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
5628 count && !htx_is_empty(htx)) {
5629 idx = htx_get_head(htx);
5630 blk = htx_get_blk(htx, idx);
5631 btype = htx_get_blk_type(blk);
5632 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005633
Christopher Faulet9b79a102019-07-15 11:22:56 +02005634 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02005635 case HTX_BLK_REQ_SL:
5636 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005637 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02005638 if (ret > 0) {
5639 total += ret;
5640 count -= ret;
5641 if (ret < bsize)
5642 goto done;
5643 }
5644 break;
5645
Willy Tarreau115e83b2018-12-01 19:17:53 +01005646 case HTX_BLK_RES_SL:
5647 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005648 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005649 if (ret > 0) {
5650 total += ret;
5651 count -= ret;
5652 if (ret < bsize)
5653 goto done;
5654 }
5655 break;
5656
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005657 case HTX_BLK_DATA:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005658 case HTX_BLK_EOM:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005659 /* all these cause the emission of a DATA frame (possibly empty).
5660 * This EOM necessarily is one before trailers, as the EOM following
5661 * trailers would have been consumed by the trailers parser.
5662 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005663 ret = h2s_frt_make_resp_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005664 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01005665 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005666 total += ret;
5667 count -= ret;
5668 if (ret < bsize)
5669 goto done;
5670 }
5671 break;
5672
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005673 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005674 case HTX_BLK_EOT:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005675 /* This is the first trailers block, all the subsequent ones AND
5676 * the EOM will be swallowed by the parser.
5677 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005678 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005679 if (ret > 0) {
5680 total += ret;
5681 count -= ret;
5682 if (ret < bsize)
5683 goto done;
5684 }
5685 break;
5686
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005687 default:
5688 htx_remove_blk(htx, blk);
5689 total += bsize;
5690 count -= bsize;
5691 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005692 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005693 }
5694
Christopher Faulet9b79a102019-07-15 11:22:56 +02005695 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02005696 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02005697 /* trim any possibly pending data after we close (extra CR-LF,
5698 * unprocessed trailers, abnormal extra data, ...)
5699 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02005700 total += count;
5701 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02005702 }
5703
Willy Tarreauc6795ca2017-11-07 09:43:06 +01005704 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01005705 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005706 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 +01005707 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01005708 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01005709 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01005710 }
5711
Christopher Faulet9b79a102019-07-15 11:22:56 +02005712 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02005713
5714 /* The mux is full, cancel the pending tasks */
5715 if ((h2s->h2c->flags & H2_CF_MUX_BLOCK_ANY) ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005716 (h2s->flags & H2_SF_BLK_MBUSY)) {
5717 TRACE_DEVEL("mux full, stopping senders", H2_EV_H2S_SEND|H2_EV_H2C_BLK|H2_EV_H2S_BLK, h2s->h2c->conn, h2s);
Olivier Houchardd846c262018-10-19 17:24:29 +02005718 h2_stop_senders(h2s->h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02005719 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005720
Olivier Houchard7505f942018-08-21 18:10:44 +02005721 if (total > 0) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005722 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau7838a792019-08-12 18:42:03 +02005723 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 +02005724 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Olivier Houchardd846c262018-10-19 17:24:29 +02005725
Olivier Houchard7505f942018-08-21 18:10:44 +02005726 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01005727 /* If we're waiting for flow control, and we got a shutr on the
5728 * connection, we will never be unlocked, so add an error on
5729 * the conn_stream.
5730 */
5731 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
5732 !b_data(&h2s->h2c->dbuf) &&
5733 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005734 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 +01005735 if (cs->flags & CS_FL_EOS)
5736 cs->flags |= CS_FL_ERROR;
5737 else
5738 cs->flags |= CS_FL_ERR_PENDING;
5739 }
Olivier Houchard998410a2019-04-15 19:23:37 +02005740 if (total > 0) {
Olivier Houchardd360ac62019-03-22 17:37:16 +01005741 /* Ok we managed to send something, leave the send_list */
Olivier Houchardd360ac62019-03-22 17:37:16 +01005742 LIST_DEL_INIT(&h2s->list);
5743 }
Willy Tarreau7838a792019-08-12 18:42:03 +02005744 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005745 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02005746}
5747
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005748/* for debugging with CLI's "show fd" command */
Willy Tarreau83061a82018-07-13 11:56:34 +02005749static void h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005750{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01005751 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01005752 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005753 struct eb32_node *node;
5754 int fctl_cnt = 0;
5755 int send_cnt = 0;
5756 int tree_cnt = 0;
5757 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02005758 struct buffer *hmbuf, *tmbuf;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005759
5760 if (!h2c)
5761 return;
5762
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005763 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005764 fctl_cnt++;
5765
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005766 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005767 send_cnt++;
5768
Willy Tarreau3af37712018-12-18 14:34:41 +01005769 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005770 node = eb32_first(&h2c->streams_by_id);
5771 while (node) {
5772 h2s = container_of(node, struct h2s, by_id);
5773 tree_cnt++;
5774 if (!h2s->cs)
5775 orph_cnt++;
5776 node = eb32_next(node);
5777 }
5778
Willy Tarreau60f62682019-05-26 11:32:27 +02005779 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02005780 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02005781 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau987c0632018-12-18 10:32:05 +01005782 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02005783 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
5784 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreauab2ec452019-08-30 07:07:08 +02005785 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau616ac812018-07-24 14:12:42 +02005786 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005787 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01005788 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
5789 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
5790 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02005791 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
5792 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
5793 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02005794 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
5795 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01005796
5797 if (h2s) {
Willy Tarreauab2ec452019-08-30 07:07:08 +02005798 chunk_appendf(msg, " last_h2s=%p .id=%d .st=%s.flg=0x%04x .rxbuf=%u@%p+%u/%u .cs=%p",
5799 h2s, h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
Willy Tarreau987c0632018-12-18 10:32:05 +01005800 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
5801 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
5802 h2s->cs);
5803 if (h2s->cs)
5804 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
5805 h2s->cs->flags, h2s->cs->data);
5806 }
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005807}
Willy Tarreau62f52692017-10-08 23:01:42 +02005808
5809/*******************************************************/
5810/* functions below are dedicated to the config parsers */
5811/*******************************************************/
5812
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02005813/* config parser for global "tune.h2.header-table-size" */
5814static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
5815 struct proxy *defpx, const char *file, int line,
5816 char **err)
5817{
5818 if (too_many_args(1, args, err, NULL))
5819 return -1;
5820
5821 h2_settings_header_table_size = atoi(args[1]);
5822 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
5823 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
5824 return -1;
5825 }
5826 return 0;
5827}
Willy Tarreau62f52692017-10-08 23:01:42 +02005828
Willy Tarreaue6baec02017-07-27 11:45:11 +02005829/* config parser for global "tune.h2.initial-window-size" */
5830static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
5831 struct proxy *defpx, const char *file, int line,
5832 char **err)
5833{
5834 if (too_many_args(1, args, err, NULL))
5835 return -1;
5836
5837 h2_settings_initial_window_size = atoi(args[1]);
5838 if (h2_settings_initial_window_size < 0) {
5839 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
5840 return -1;
5841 }
5842 return 0;
5843}
5844
Willy Tarreau5242ef82017-07-27 11:47:28 +02005845/* config parser for global "tune.h2.max-concurrent-streams" */
5846static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
5847 struct proxy *defpx, const char *file, int line,
5848 char **err)
5849{
5850 if (too_many_args(1, args, err, NULL))
5851 return -1;
5852
5853 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01005854 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02005855 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
5856 return -1;
5857 }
5858 return 0;
5859}
5860
Willy Tarreaua24b35c2019-02-21 13:24:36 +01005861/* config parser for global "tune.h2.max-frame-size" */
5862static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
5863 struct proxy *defpx, const char *file, int line,
5864 char **err)
5865{
5866 if (too_many_args(1, args, err, NULL))
5867 return -1;
5868
5869 h2_settings_max_frame_size = atoi(args[1]);
5870 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
5871 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
5872 return -1;
5873 }
5874 return 0;
5875}
5876
Willy Tarreau62f52692017-10-08 23:01:42 +02005877
5878/****************************************/
5879/* MUX initialization and instanciation */
5880/***************************************/
5881
5882/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01005883static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02005884 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02005885 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02005886 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02005887 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02005888 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005889 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02005890 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01005891 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02005892 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01005893 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01005894 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01005895 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02005896 .shutr = h2_shutr,
5897 .shutw = h2_shutw,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005898 .show_fd = h2_show_fd,
Christopher Faulet9b79a102019-07-15 11:22:56 +02005899 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX,
Willy Tarreau62f52692017-10-08 23:01:42 +02005900 .name = "H2",
5901};
5902
Christopher Faulet32f61c02018-04-10 14:33:41 +02005903static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02005904 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02005905
Willy Tarreau0108d902018-11-25 19:14:37 +01005906INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
5907
Willy Tarreau62f52692017-10-08 23:01:42 +02005908/* config keyword parsers */
5909static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02005910 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02005911 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02005912 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01005913 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02005914 { 0, NULL, NULL }
5915}};
5916
Willy Tarreau0108d902018-11-25 19:14:37 +01005917INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);